-
Notifications
You must be signed in to change notification settings - Fork 159
Feature Files
Bryan Housel edited this page Apr 27, 2021
·
2 revisions
Feature files are optional .geojson
files found under the features/
folder.
Each feature file defines a custom region (aka geofence) where a community is considered valid.
-
features/*
north-america/new_jersey.geojson
north-america/quebec.geojson
- and so on…
Each file should contain a single GeoJSON Feature
. (Note: A FeatureCollection
containing a single Feature
is ok too - the build script can handle this.)
Only Polygon
and MultiPolygon
geometries are supported.
The build script will automatically generate an id
property to match the filename.
Feature files look like this:
{
"type": "Feature",
"id": "new_jersey.geojson",
"properties": {},
"geometry": {
"type": "Polygon",
"coordinates": [ … ]
}
}
- There are many online tools to create or modify
.geojson
files. - You can draw and edit GeoJSON polygons with geojson.io - (Editing MultiPolygons does not work in drawing mode, but you can edit the code directly).
- You can simplify GeoJSON files with mapshaper.org
- More than you ever wanted to know about GeoJSON