{"id":13607296,"url":"https://github.com/osmcode/osm-gis-export","last_synced_at":"2025-10-15T14:09:44.407Z","repository":{"id":36890807,"uuid":"41197803","full_name":"osmcode/osm-gis-export","owner":"osmcode","description":"Export OSM data to GIS formats like Shapefiles, Spatialite or PostGIS.","archived":false,"fork":false,"pushed_at":"2024-12-16T18:29:59.000Z","size":89,"stargazers_count":23,"open_issues_count":0,"forks_count":5,"subscribers_count":9,"default_branch":"master","last_synced_at":"2025-04-22T23:36:59.816Z","etag":null,"topics":["openstreetmap"],"latest_commit_sha":null,"homepage":"https://osmcode.org/osm-gis-export/","language":"C++","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsl-1.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/osmcode.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.txt","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,"zenodo":null}},"created_at":"2015-08-22T08:17:51.000Z","updated_at":"2024-12-16T18:30:03.000Z","dependencies_parsed_at":"2025-04-17T04:28:01.999Z","dependency_job_id":"bb62c0ba-6cc4-4813-989a-7f567b0bd437","html_url":"https://github.com/osmcode/osm-gis-export","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/osmcode/osm-gis-export","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/osmcode%2Fosm-gis-export","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/osmcode%2Fosm-gis-export/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/osmcode%2Fosm-gis-export/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/osmcode%2Fosm-gis-export/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/osmcode","download_url":"https://codeload.github.com/osmcode/osm-gis-export/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/osmcode%2Fosm-gis-export/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279085160,"owners_count":26100015,"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-10-15T02:00:07.814Z","response_time":56,"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":["openstreetmap"],"created_at":"2024-08-01T19:01:17.400Z","updated_at":"2025-10-15T14:09:44.362Z","avatar_url":"https://github.com/osmcode.png","language":"C++","funding_links":[],"categories":["C++"],"sub_categories":[],"readme":"\n# OSM GIS Export\n\nThis is some older code, not really maintained, but could be useful, so we\nkeep it here.\n\nA bunch of programs to export OSM data into GIS formats such as Shapefiles,\nPostgreSQL or Spatialite.\n\n[![Build Status](https://github.com/osmcode/osm-gis-export/actions/workflows/ci.yml/badge.svg)](https://github.com/osmcode/osm-gis-export/actions)\n\nSorry, do docs yet. You have to look at the source code and change it according\nto your needs. This software can be used as basis for your own experiments, but\nyou need to understand C++ for that. There is no one-size-fits-all solution\nhere. Use `osmium_toogr` as a basis if you only need nodes or ways, no\n(multi)polygons. Use `osmium_toogr2` as basis if you also need multipolygon\nsupport.\n\n\n## Requires\n\nYou need a C++14 compliant compiler. You also need the following libraries:\n\n    Osmium Library\n        Need at least version 2.13.1\n        https://osmcode.org/libosmium\n        Debian/Ubuntu: libosmium2-dev\n\n    Protozero\n        Need at least version 1.5.1\n        https://github.com/mapbox/protozero\n        Debian/Ubuntu: libprotozero-dev\n\n    gdalcpp\n        https://github.com/joto/gdalcpp\n        Included in the libosmium repository.\n\n    bz2lib (for reading and writing bzipped files)\n        http://www.bzip.org/\n        Debian/Ubuntu: libbz2-dev\n\n    CMake (for building)\n        https://www.cmake.org/\n        Debian/Ubuntu: cmake\n\n    Expat (for parsing XML files)\n        https://libexpat.github.io\n        Debian/Ubuntu: libexpat1-dev\n        openSUSE: libexpat-devel\n\n    GDAL/OGR\n        https://gdal.org/\n        Debian/Ubuntu: libgdal-dev\n\n    zlib (for PBF support)\n        https://www.zlib.net/\n        Debian/Ubuntu: zlib1g-dev\n        openSUSE: zlib-devel\n\n## Installing dependencies\n\n### On Debian/Ubuntu\n\n    apt-get install cmake libosmium2-dev libgdal-dev libproj-dev\n\nIn addition you might want to look at https://github.com/osmcode/osmium-proj if\nyou are using PROJ 6 or above.\n\n## Building\n\n[CMake](https://www.cmake.org) is used for building.\n\nTo build run:\n\n    mkdir build\n    cd build\n    cmake ..\n    make\n\n\n## License\n\nOSM GIS Export is available under the Boost Software License. See LICENSE.txt.\n\n\n## Authors\n\nOSM GIS Export was mainly written and is maintained by Jochen Topf\n(jochen@topf.org). See the git commit log for other authors.\n\n\n## Contact\n\nBug reports, questions etc. should be directed to the\n[issue tracker](https://github.com/osmcode/osm-gis-export).\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fosmcode%2Fosm-gis-export","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fosmcode%2Fosm-gis-export","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fosmcode%2Fosm-gis-export/lists"}