JuliaGeo / GeoJSON.jl

Utilities for working with GeoJSON data in Julia
https://juliageo.org/GeoJSON.jl/stable/
MIT License
67 stars 10 forks source link

Support extraction of a set of features #76

Closed ConnectedSystems closed 1 year ago

ConnectedSystems commented 1 year ago

Current implementation only works when extracting a single feature from a FeatureCollection.

This PR includes a small change to allow multiple features to be extracted.

fc[1]
fc[1:10]
fc[[1,20,30,40,50]]

Closes #75