【问题标题】:Different Coordinate System in GeoJSON dataGeoJSON 数据中的不同坐标系
【发布时间】:2016-08-09 11:25:24
【问题描述】:

我刚开始尝试使用美国农业部的一些开放数据(我是一名前端开发人员,所以我不太熟悉如何处理尚未采用相当直接格式的数据),但我不确定这些坐标在几何->环下是什么(它们不是纬度/经度)。我想知道是否有人可以告诉我他们使用的是哪种坐标系,以便我可以弄清楚如何转换它们。所有点都应在科罗拉多范围内。谢谢!

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

【问题讨论】:

    标签: geojson


    【解决方案1】:

    我想我在这里找到了您问题的可能答案:
    https://gis.stackexchange.com/questions/9442/arcgis-coordinate-system

    所以,您收到的坐标格式类似于

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

    显示为“Eastings”和“Norhings”,坐标以为单位,基于类似墨卡托的投影(在本例中:wkid 387,有时以其旧名称:wkid 102100 )。世界上任何一点的坐标都在以下范围内:

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

    【讨论】:

      猜你喜欢
      • 2013-08-05
      • 1970-01-01
      • 2014-09-03
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多