https://github.com/oliverroick/rosi
Converts GeoJSON to ESRI ArcGIS Geometries
https://github.com/oliverroick/rosi
arcgis geojson
Last synced: about 1 month ago
JSON representation
Converts GeoJSON to ESRI ArcGIS Geometries
- Host: GitHub
- URL: https://github.com/oliverroick/rosi
- Owner: oliverroick
- License: mit
- Created: 2018-10-02T11:36:13.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-10-06T11:20:09.000Z (over 6 years ago)
- Last Synced: 2025-02-08T06:12:23.436Z (3 months ago)
- Topics: arcgis, geojson
- Language: Python
- Size: 13.7 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# rosi
[](https://travis-ci.com/oliverroick/rosi) [](https://requires.io/github/oliverroick/rosi/requirements/?branch=master)
ESRI's [ArcGIS API for Python](https://developers.arcgis.com/python/) does not support converting GeoJSON geometries into [ArcGIS geometries](https://esri.github.io/arcgis-python-api/apidoc/html/arcgis.geometry.html). That's what this library does: GeoJSON in – ArcGIS geometries out.
## Usage
```python
import rosigeojson = {
'type': 'Point',
'coordinates': [12.374811, 51.340652]
}
esri_geom = rosi.convert(geojson)
type(esri_geom) #
```## Why the name _rosi_?
It's my grandmother's name and a pun on [Fiona](https://github.com/Toblerity/Fiona). I think it's funny.