-
-
Notifications
You must be signed in to change notification settings - Fork 45
Open
Labels
enhancementNew feature or requestNew feature or request
Description
Currently a geoJSON with a single Feature will fail to load, throwing the Read File Failed error. Wrapping the Feature in a FeatureCollection works.
Single Features are supported by kepler-gl - https://github.com/keplergl/kepler.gl/blob/master/docs/user-guides/b-kepler-gl-workflow/a-add-data-to-the-map.md#geojson
To recreate put the example code from the kepler supported file formats section into a .geojson file:
{
"type": "Feature",
"geometry": {
"type": "Polygon",
"coordinates": [
[
[-10.0, -10.0],
[10.0, -10.0],
[10.0, 10.0],
[-10.0, -10.0]
]
]
},
"properties": {
"name": "foo"
}
}
RandomFractals and bmcandr
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request