I've been playing around with turf.js
and I'd like to use turf.intersect
to intersect two datasets. My raw data are two polygon shape files so I converted them to geojson. I then tried to use turf.intersect on the two geojson files but it fails as the geojson contain FeatureCollections while turf.intersect
expects Polygons.
Is there a workaround to this?
Right now, I'm thinking of iterate over the polygons in the first geojson file one by one and then checking if it intersects with any of the polygons of the second geojson. I'd then just combine the results into another geojson file.
Is there a faster way?
No comments:
Post a Comment