Generate metadata for various geospatial datasets
Project description
girder_geospatial
Installation
-
Install gdal version 2 or higher on to your system.
-
To install with a wheel, run:
pip install gdal -f https://manthey.github.io/large_image_wheels/
-
If not installing with a wheel:
- Install gdal to your system with the instructions above
- Check system gdal version by running
gdal-config --version
- Pip install the corresponding version of gdal
-
-
Test your gdal installation by running
python -c "import gdal"
- Install the geospatial plugin and desired types packages.
pip install girder-geospatial
pip install girder-geospatial-raster \
girder-geospatial-vector \
girder-geospatial-grid
- Enable Girder cache by adding following to your girder config file:
[cache]
enabled = True
cache.global.backend = "dogpile.cache.memory"
cache.request.backend = "cherrypy_request"
Usage
-
Uploading a geospatial file
After the plugin is enabled in Girder, simply upload a geospatial file that gdal or ogr can handle. To see lists of supported formats see the gdal and ogr format documentation. This plugin responds to the upload file event. File uploads will trigger a handler setting geospatial metadata on the uploaded file's item automatically.
-
Creating geospatial metadata on an already existing item
If you already have data in Girder, and you don't want to reupload your data. There is an endpoint which takes an item id and creates geospatial metadata on the item.
curl '{girderApiUrl}/item/{itemId}/geometa' -X PUT
This endpoint will inspect the file and attach 'geometa' key to the given item.
-
Creating arbitrary geospatial metadata on an existing item
Some users might want more control on what they are saving. The same endpoint in option 2 can be used to create arbitrary metadata following the base schema. In other words, as long as you have the required parameters that are defined in the base schema, you are free to add your own additional data for your own purposes.
curl '{girderApiUrl}/item/{itemId}/geometa?geometa={geospatialMetadata}' -X PUT
-
Querying mongo for geospatial datasets
To query mongo, use the following endpoint with required query parameters.
curl '{girderApiUrl}/item/geometa?{necessaryQueryStringParameters} -X GET
This endpoint accepts a number of geospatial queries, including:
- WKT geometry and relation
- Bounding box and relation
- Geojson geometry and relation
- Latitude, longitude and radius.
When providing latitude, longitude, and radius, the relation will be always "within" as opposed to "intersects". This might create unexpected results. We recommend using options 1, 2 or 3 above.
Also, please note these options are mutually exclusive so you cannot pass both geojson and bounding box options. The Opensearch Geo Schema validators will raise an exception if mutually exclusive parameters are passed.
-
Getting geometa from an item
To get geospatial metadata on an item, call the following endpoint:
curl '{girderApiUrl}/item/{itemId}/geometa' -X GET
Vagrant Examples
There are currently 2 vagrant examples to quickly get up and running. If you are having problems installing this plugin check ansible playbooks for ubuntu-16.04 and ubuntu-18.04.
Running tests
cd geometa
pip install -r requirements-dev.txt
pytest -n 4
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.