Some flexibility to GeoJSON Input Connector(s)

246
0
10-28-2016 06:49 AM
Status: Open
Rolandvan_Zoest
New Contributor III

Trying to connect to an external GeoJSON source I ended up with an "Unexpected error occurred".

The Web-App "Validate your GeoJSON" clarified that all coordinates should be numbers, so not texts.

And of course all coordinates in my target GeoJSONs do have (double) quotes.

My suggestion is that the GeoEvent GeoJSON Input Connectors might be less strict and should try to convert a string-coordinate to a number.

So { "type": "Point", "coordinates": ["-105.01621","39.57422"] } accepted

as being { "type": "Point", "coordinates": [ -105.01621 , 39.57422 ] }