GeoDesk gol CLI

Build and query Geo-Object Libraries (GOLs).

gol CLI
1.1.0
Multi-Platform
Requires Java 16+

Install:

  • Unzip in a location of your choice
  • Add gol to your path (optional)
  • Install Java (version 16 or above)

Use: (Documentation)

$ gol build france france-latest.osm.pbf
$ gol query france na[amenity=restaurant]

GeoDesk for Python

Analyze and visualize OpenStreetMap data.
DocumentationGitHub

$ pip install geodesk

GeoDesk for Java

Build sophisticated geospatial applications.
TutorialJavadocGitHub

<dependency>
    <groupId>com.geodesk</groupId>
    <artifactId>geodesk</artifactId>
    <version>1.1.0</version>
</dependency>

GeoDesk for C++

Our most powerful OpenStreetMap Toolkit.
TutorialAPI DocumentationGitHub

include(FetchContent)
FetchContent_Declare(geodesk GIT_REPOSITORY 
    https://github.com/clarisma/libgeodesk.git
    GIT_TAG main)
FetchContent_MakeAvailable(geodesk)