Search code examples
javascriptjsongeojson

geoJson not validated


I have the following geoJson polygons:

{"type": "Feature","geometry":{"type":"MultiPolygon", "coordinates":[[[[103.76772700000001,1.47063],[103.76772700000001,1.4795775862068967],[103.758794,1.4795775862068967],[103.758794,1.47063],[103.76772700000001,1.47063]]]]},"properties": {"number":"01"}},

{"type": "Feature","geometry":{"type":"MultiPolygon", "coordinates":[[[[104.00891800000001,1.47063],[104.00891800000001,1.4795775862068967],[103.99998500000001,1.4795775862068967],[103.99998500000001,1.47063],[104.00891800000001,1.47063]]]]},"properties": {"number":"03"}}

But when I validate this in geojson validator it throws an EOF error. But when I try each separately it validates as a eligible geoJSON. So I tried with this too.

"type":"FeatureCollection","features":[

 {"type": "Feature","geometry":{"type":"MultiPolygon", "coordinates":[[[[103.76772700000001,1.47063],[103.76772700000001,1.4795775862068967],[103.758794,1.4795775862068967],[103.758794,1.47063],[103.76772700000001,1.47063]]]]},"properties": {"number":"01"}},

 {"type": "Feature","geometry":{"type":"MultiPolygon", "coordinates":[[[[104.00891800000001,1.47063],[104.00891800000001,1.4795775862068967],[103.99998500000001,1.4795775862068967],[103.99998500000001,1.47063],[104.00891800000001,1.47063]]]]},"properties": {"number":"03"}}

]

But still throwing an EOF error. Any help is appreciated.


Solution

  • It should be an JSON object. You are missing the { and }.

    {
        "type": "FeatureCollection",
        "features": [
    
            {
                "type": "Feature",
                "geometry": {
                    "type": "MultiPolygon",
                    "coordinates": [
                        [
                            [
                                [103.76772700000001, 1.47063],
                                [103.76772700000001, 1.4795775862068967],
                                [103.758794, 1.4795775862068967],
                                [103.758794, 1.47063],
                                [103.76772700000001, 1.47063]
                            ]
                        ]
                    ]
                },
                "properties": {
                    "number": "01"
                }
            },
    
            {
                "type": "Feature",
                "geometry": {
                    "type": "MultiPolygon",
                    "coordinates": [
                        [
                            [
                                [104.00891800000001, 1.47063],
                                [104.00891800000001, 1.4795775862068967],
                                [103.99998500000001, 1.4795775862068967],
                                [103.99998500000001, 1.47063],
                                [104.00891800000001, 1.47063]
                            ]
                        ]
                    ]
                },
                "properties": {
                    "number": "03"
                }
            }
    
        ]
    }