2017-04-17 7 views
0

I持っ以下にGeoJSONポリゴン検証されていない:にGeoJSONは

{"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"}} 

をしかし、私はgeojson validatorでこれを検証する際には、EOFエラーがスローされます。しかし、それぞれを個別に試してみると、適格なgeoJSONとして検証されます。だから私はこれも試しました。

"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"}} 

] 

ただし、まだEOFエラーが発生しています。どんな助けもありがとうございます。

+1

[http://jsonviewer.stack.hu/] –

+0

それはにGeoJSONとして検証したがJSON.Iは、[HTTPとJSONを作るために – RKR

+0

試して理解できなかったとしての資格をされていないでその作業:/ /geojsonlint.com/#sample-geojson-content] –

答えて

1

これはJSONオブジェクトである必要があります。 {}がありません。

{ 
    "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" 
      } 
     } 

    ] 
} 
+0

本当にありがとう – RKR