sequentialGeojson

A python generator object that provides sequential access to features inside a FeatureCollection of a GeoJson file.


Keywords
json, sequential, generator, geojson
License
MIT
Install
pip install sequentialGeojson==0.2

Documentation

Sequential GeoJson

Status

This module currentrly only works on GeoJson files that contain one single FeatureCollection. It returns features as a string.

Usage

Create a new reader object

reader = sequentialGeojson.reader( myPythonFileObject )

Then use this reader as you would use any generator. With each step it returns one single feature as a string.