获取地图相扑的大小
getting the size of the map Sumo
我使用 OpenstreetMap 导出了我城市的一部分,所以我有一个 .osm 文件,文件开头包含:
<bounds minlat="34.8743000" minlon="-1.3494000" maxlat="34.9035000" maxlon="-1.2926000"/>
文件 .node.xml 包含:
<location netOffset="-650593.12,-3860745.37" convBoundary="0.00,0.00,4960.80,3134.19" origBoundary="-1.384393,34.847744,-1.297697,34.916012" projParameter="+proj=utm +zone=30 +ellps=WGS84 +datum=WGS84 +units=m +no_defs"/>
我想知道我的地图的大小(以公里为单位)。我该怎么做?
大致的转换为:
纬度:1 度 = 110.574 公里
经度:1 度 = 111.320*cos(纬度) 公里。
有关详细信息,请查看问题下方的评论
边界坐标以米为单位,所以它是 4960.80m x 3134.19m
我使用 OpenstreetMap 导出了我城市的一部分,所以我有一个 .osm 文件,文件开头包含:
<bounds minlat="34.8743000" minlon="-1.3494000" maxlat="34.9035000" maxlon="-1.2926000"/>
文件 .node.xml 包含:
<location netOffset="-650593.12,-3860745.37" convBoundary="0.00,0.00,4960.80,3134.19" origBoundary="-1.384393,34.847744,-1.297697,34.916012" projParameter="+proj=utm +zone=30 +ellps=WGS84 +datum=WGS84 +units=m +no_defs"/>
我想知道我的地图的大小(以公里为单位)。我该怎么做?
大致的转换为:
纬度:1 度 = 110.574 公里
经度:1 度 = 111.320*cos(纬度) 公里。
有关详细信息,请查看问题下方的评论
边界坐标以米为单位,所以它是 4960.80m x 3134.19m