Created
June 26, 2019 09:43
-
-
Save evansd/3a1647ecf736220d3bc11caab2bb33cb to your computer and use it in GitHub Desktop.
Template for when you have a bunch of GeoJSON geometries that you need to wrap up as a valid GeoJSON document so you can plot it using e.g. https://geojson.io
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| {"type": "FeatureCollection", "features": [ | |
| {"type": "Feature", "properties": {}, "geometry": | |
| # PASTE GEOMETRY HERE | |
| }, | |
| ] | |
| # Remove trailing comma |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment