2016-04-17 69 views
0

我剛開始嘗試使用來自USDA的一些開放數據(我是前端開發人員,所以我不太熟悉如何處理尚未公平的數據直接格式),但我不確定這些座標是在幾何 - >環(它們不是緯度/經度)。我想知道如果有人能告訴我他們使用的是什麼樣的座標系,所以我可以弄清楚如何轉換它們。所有點應該在科羅拉多州內。謝謝!GeoJSON數據中的不同座標系

http://gis.ers.usda.gov/arcgis/rest/services/foodaccess/MapServer/2/query?where=&text=Colorado&objectIds=&time=&geometry=&geometryType=esriGeometryEnvelope&inSR=&spatialRel=esriSpatialRelIntersects&relationParam=&outFields=&returnGeometry=true&maxAllowableOffset=&geometryPrecision=&outSR=&returnIdsOnly=false&returnCountOnly=false&orderByFields=&groupByFieldsForStatistics=&outStatistics=&returnZ=false&returnM=false&gdbVersion=&returnDistinctValues=false&f=pjson

回答

0

我想我發現了一個可能的回答你的問題在這裏:
https://gis.stackexchange.com/questions/9442/arcgis-coordinate-system

所以,你在一個格式接收像

... 
"geometry": { 
"rings": [ 
    [ 
    [ 
    -11804245.4265,  // easting 
    4495129.5014000013 // northing 
    ], 
    [ 
    -11804198.783199999, 
    4488979.7647999972 
    ], ... 

座標似乎是「東進「和」Norhings「,座標給定在,基於墨卡託投影(在這種情況下:wkid 387,一些時間以舊名稱引用:wkid 102100)。世界上任何一點的座標都落在以下範圍內:

Xmin: -20037700 XMax: 20037700 // easting 
Ymin: -30241100 YMax: 30241100 // northing