Folders and files Name Name Last commit message
Last commit date
parent directory
View all files
Metacity Studio Coordinates Converter Utility
pip install -r requirements.txt
to install dependencies
fastapi dev main.py
to run on localhost
example curl - shapefile with projection:
curl -F "[email protected] " -X POST http://localhost:8000/convert_shapefile?crsTarget=EPSG:4326
example curl - shapefile without projection:
curl -F "file=@shapefile_noproj.zip" -X POST 'http://localhost:8000/convert_shapefile?crsTarget=EPSG:4326&crsSource=EPSG:5514' --output result.zip
file
- zipped shapefile
crsTarget
- EPSG code of coordinate system to convert to
crsSource
- EPSG code of initial coordinate system (if shapefile doesn't contain projection info)
example curl - GeoJSON with projection:
curl -F "[email protected] " -X POST http://localhost:8000/convert_geojson?crsTarget=EPSG:4326
example curl - GeoJSON without projection:
curl -F "file=@data_noproj.geojson" -X POST 'http://localhost:8000/convert_geojson?crsTarget=EPSG:4326&crsSource=EPSG:5514' --output result.geojson
file
- input geojson
crsTarget
- EPSG code of coordinate system to convert to
crsSource
- EPSG code of initial coordinate system (if geojson doesn't contain projection info)
example curl - GLTF:
curl -F "[email protected] " -X POST 'http://localhost:8000/convert_gltf?crsTarget=EPSG:5514&crsSource=EPSG:4326' --output result.gltf'
file
- input gltf
crsTarget
- EPSG code of coordinate system to convert to
crsSource
- EPSG code of initial coordinate system
You can’t perform that action at this time.