{"id":16105085,"url":"https://github.com/intgr/histonia","last_synced_at":"2025-08-30T14:09:22.359Z","repository":{"id":43478647,"uuid":"377631710","full_name":"intgr/histonia","owner":"intgr","description":"High-resolution tiles of Estonian aerial photo maps","archived":false,"fork":false,"pushed_at":"2023-12-14T23:19:36.000Z","size":25,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-04-06T02:33:32.785Z","etag":null,"topics":["estonia","mapproxy","maps","openstreetmap"],"latest_commit_sha":null,"homepage":"","language":"Dockerfile","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/intgr.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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":"2021-06-16T21:26:16.000Z","updated_at":"2022-09-23T00:37:15.000Z","dependencies_parsed_at":"2025-02-12T08:38:44.757Z","dependency_job_id":"64f7139c-8154-4a6c-8019-6b4bd318c8df","html_url":"https://github.com/intgr/histonia","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/intgr/histonia","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/intgr%2Fhistonia","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/intgr%2Fhistonia/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/intgr%2Fhistonia/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/intgr%2Fhistonia/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/intgr","download_url":"https://codeload.github.com/intgr/histonia/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/intgr%2Fhistonia/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":272858542,"owners_count":25005092,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-30T02:00:09.474Z","response_time":77,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["estonia","mapproxy","maps","openstreetmap"],"created_at":"2024-10-09T19:08:22.163Z","updated_at":"2025-08-30T14:09:22.342Z","avatar_url":"https://github.com/intgr.png","language":"Dockerfile","funding_links":[],"categories":[],"sub_categories":[],"readme":"HiStonia\n========\n\nHiStonia is a [MapProxy](https://mapproxy.org/) configuration for serving up\n**high-resolution tiles** from Estonian Maa-amet (Land Board) aerophoto maps\nand LIDAR maps, which you can use as imagery in the **OpenStreetMap iD editor**.\n\nHigh-resolution tiles and LIDAR tiles are available from Maa-amet's WMS servers,\nbut the iD editor only supports the TMS (Tile Map Service) protocol, not WMS.\n\nThis MapProxy configuration provides a TMS service and converts back and forth\nbetween WMS.\n\n### Usage\n\nIt's easiest to get started with Docker. The following will work on Linux and macOS:\n\n```shell\nDOCKER_BUILDKIT=1 docker build -t histonia .\ndocker run -it --rm --name=histonia -p 127.0.0.1:8080:8080 histonia\n```\n\nOnce that is running, you can use the built-in demo:\nhttp://localhost:8080/demo/?tms_layer=xgis\u0026format=png\u0026srs=EPSG%3A3857\n\nYou should see a map of Estonia!\n\n[\u003cimg src=\"https://raw.githubusercontent.com/intgr/static/master/histonia/histonia-demo-thumb.jpg\"\u003e](https://raw.githubusercontent.com/intgr/static/master/histonia/histonia-demo.png)\n\n#### Configure iD editor\n\nTo use in the iD editor, open \"Background Settings\", choose \"Custom\".\nClick on the \"•••\" next to \"Custom\" and enter the following URL:\n```\nhttp://localhost:8080/tiles/xgis/hidpi/{zoom}/{x}/{y}.png\n```\n\n### LIDAR maps\n\nThere are two maps derived from LIDAR surveys.\n\n| Terrain (DTM) | Surface (DSM) |\n| ------------- | ------------- |\n| [\u003cimg src=\"https://raw.githubusercontent.com/intgr/static/master/histonia/histonia-terrain-01-thumb.jpg\"\u003e](https://raw.githubusercontent.com/intgr/static/master/histonia/histonia-terrain-01.png) | [\u003cimg src=\"https://raw.githubusercontent.com/intgr/static/master/histonia/histonia-terrain-surface-01-thumb.jpg\"\u003e](https://raw.githubusercontent.com/intgr/static/master/histonia/histonia-terrain-surface-01.png) |\n\nDigital Terrain Model (DTM) - represents the bare ground surface without any\nobjects like plants and buildings:\n\n* Demo: http://localhost:8080/demo/?tms_layer=xgis_terrain\u0026format=png\u0026srs=EPSG:3857\n* URL for iD editor: `http://localhost:8080/tiles/xgis_terrain/hidpi/{zoom}/{x}/{y}.png`\n\nDigital Surface Model (DSM), overlaid on top of DTM - represents the surface\nwith objects like buildings and trees. Note: The surface layer is only visible\nat higher zoom levels.\n\n* Demo: http://localhost:8080/demo/?tms_layer=xgis_surface\u0026format=png\u0026srs=EPSG:3857\n* URL for iD editor: `http://localhost:8080/tiles/xgis_surface/hidpi/{zoom}/{x}/{y}.png`\n\n### Is this allowed?\n\nYes, Maa-amet has issued an official permission to OpenStreetMap:\nhttps://svimik.com/Maa-amet_vastus_OSM.pdf\n\nFor non-OpenStreetMap-related uses, see the open data license:\nhttps://geoportaal.maaamet.ee/docs/Avaandmed/ETAK_ruumiandmete_litsentsileping.pdf\n\nMany public Maa-amet services are documented here:\nhttps://geoportaal.maaamet.ee/est/Teenused/WMSWFS-teenused-p65.html\n\n### Gallery\n\n[\u003cimg src=\"https://raw.githubusercontent.com/intgr/static/master/histonia/histonia-01-thumb.jpg\"\u003e](https://raw.githubusercontent.com/intgr/static/master/histonia/histonia-01.png)\n[\u003cimg src=\"https://raw.githubusercontent.com/intgr/static/master/histonia/histonia-02-thumb.jpg\"\u003e](https://raw.githubusercontent.com/intgr/static/master/histonia/histonia-02.png)\n[\u003cimg src=\"https://raw.githubusercontent.com/intgr/static/master/histonia/histonia-03-thumb.jpg\"\u003e](https://raw.githubusercontent.com/intgr/static/master/histonia/histonia-03.png)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fintgr%2Fhistonia","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fintgr%2Fhistonia","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fintgr%2Fhistonia/lists"}