{"id":24692885,"url":"https://github.com/asaintsever/tinyworld-utils","last_synced_at":"2026-05-17T19:34:14.093Z","repository":{"id":75289642,"uuid":"453762422","full_name":"asaintsever/tinyworld-utils","owner":"asaintsever","description":"Utils for TinyWorld: NASA WorldWind Cache, ImageMagick, JRE ...","archived":false,"fork":false,"pushed_at":"2024-11-28T21:02:41.000Z","size":9,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-28T15:40:47.574Z","etag":null,"topics":["tinyworld","worldwind","worldwindjava"],"latest_commit_sha":null,"homepage":"","language":null,"has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/asaintsever.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2022-01-30T18:16:12.000Z","updated_at":"2024-11-28T21:02:45.000Z","dependencies_parsed_at":"2023-10-01T21:16:21.590Z","dependency_job_id":null,"html_url":"https://github.com/asaintsever/tinyworld-utils","commit_stats":null,"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/asaintsever/tinyworld-utils","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/asaintsever%2Ftinyworld-utils","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/asaintsever%2Ftinyworld-utils/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/asaintsever%2Ftinyworld-utils/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/asaintsever%2Ftinyworld-utils/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/asaintsever","download_url":"https://codeload.github.com/asaintsever/tinyworld-utils/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/asaintsever%2Ftinyworld-utils/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33151797,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-17T09:28:26.183Z","status":"ssl_error","status_checked_at":"2026-05-17T09:27:52.702Z","response_time":107,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["tinyworld","worldwind","worldwindjava"],"created_at":"2025-01-26T20:17:29.675Z","updated_at":"2026-05-17T19:34:14.058Z","avatar_url":"https://github.com/asaintsever.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# Utils for TinyWorld\n\n## JRE distros\n\nSupported JRE distributions are available [here](https://github.com/asaintsever/tinyworld-utils/releases/tag/jre-distro). They are included in the portable and AppImage packages of TinyWorld.\n\n## ImageMagick with HEIF/HEIC support\n\nLinux x64/arm64 and Windows x64 static binaries of ImageMagick 7.1.0 with HEIF/HEIC support can be found [here](https://github.com/asaintsever/tinyworld-utils/releases/tag/imagemagick-heic).\n\nCurrently, TinyWorld only relies on ImageMagick for thumbnails generation from HEIF photos.\n\nOn macOS, install ImageMagick with Homebrew (HEIF/HEIC support is enabled by default):\n\n```sh\nbrew install imagemagick\n```\n\n### Linux build\n\nLinux binary has been compiled from source as existing packages do not come with HEIC support.\n\nInstructions to build static binary:\n\n```sh\n# Install libs for HEIF (HEIC) support\n$ sudo apt install libjpeg-dev libheif-dev libheif1\n\n# Clone latest tag\n$ git clone --depth 1 --branch 7.1.0-46 https://github.com/ImageMagick/ImageMagick.git\n$ cd ImageMagick\n\n# Configure build to generate static binaries. Enable HEIC support\n$ ./configure --enable-static=yes --enable-shared=no --prefix=/usr --with-jpeg=yes --with-heic=yes --without-magick-plus-plus --without-perl --with-quantum-depth=16\n\n# Compile\n$ make\n\n# Install in a temporary folder\n$ mkdir -p /tmp/MyIM\n$ make install DESTDIR=/tmp/MyIM\n\n# Check HEIC support is enabled\n# Make sure both 'jpeg' and 'heic' are listed in 'Delegates (built-in)'\n$ cd /tmp/MyIM/usr/bin\n$ ./magick -version\nVersion: ImageMagick 7.1.0-46 Q16-HDRI x86_64 5ef3d4d66:20220816 https://imagemagick.org\nCopyright: (C) 1999 ImageMagick Studio LLC\nLicense: https://imagemagick.org/script/license.php\nFeatures: Cipher DPC HDRI OpenMP(4.5)\nDelegates (built-in): bzlib djvu fontconfig freetype gvc heic jbig jng jpeg lcms lqr lzma openexr pangocairo png raqm raw tiff webp x zip zlib\nCompiler: gcc (11.2)\n```\n\n### Generate thumbnail from HEIF photo\n\n```sh\n# Generate a 160x160 thumbnail\nmagick \u003cyour HEIF file\u003e -thumbnail 160x160 jpg:\u003cyour thumbnail name\u003e.jpg\n```\n\n## WorlWind Cache for TinyWorld\n\nThis repo hosts a [NASA WorldWind](https://worldwind.arc.nasa.gov/java/) cache to use as a starter on any WorldWind-based application, e.g. **[TinyWorld](https://github.com/asaintsever/tinyworld)**. It helps to get first tiles, all the most if you don't have a good Internet connection.\n\n\u003e The cache is available for several tiles format:\n\u003e - DDS\n\u003e - JPEG and PNG (depends on the layer)\n\u003e \n\u003e For each layer, tiles format is defined via the `ImageFormat` tag in the corresponding layer's config file (e.g. of layers' config files: `Earth/BMNGWMSLayer2.xml`, `Earth/LandsatI3WMSLayer2.xml`).\n\nWorlWind Cache starter can be downloaded [here](https://github.com/asaintsever/tinyworld-utils/releases/tag/ww-cache).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fasaintsever%2Ftinyworld-utils","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fasaintsever%2Ftinyworld-utils","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fasaintsever%2Ftinyworld-utils/lists"}