将Google Earth高程数据提取到Excel?


13

我在Google地球中有一条折线。

沿折线移动时,我可以在Google Earth中看到高程剖面,但是是否可以将纬度,经度和高程数据提取到Excel中?


5
我首先想到的是,根据您的预期用途,这可能会违反Google服务条款,作为衍生作品。我的第二个想法是,与从GE中进行多步处理相比,将折线引入ArcGIS,从USGS加载“美国国家地图”中的数字高程模型(DEM)并直接提取高程会更简单。
2012年

Answers:


11

GEOCONTEXT廓将创造就像谷歌地球的海拔曲线,你可以导入KML和导出CSV。它应该给您与Google Earth相同的结果。

这是该工具链接到的许可证限制页面。


4

谷歌高程API可以给你的海拔在地球上任何一点,这样你就可以在你的折线迭代,并得到各点的高程:

https://maps.googleapis.com/maps/api/elevation/json?locations=39.7391536,-104.9847034|36.455556,-116.866667

{
   "results" : [
      {
         "elevation" : 1608.637939453125,
         "location" : {
            "lat" : 39.7391536,
            "lng" : -104.9847034
         },
         "resolution" : 4.771975994110107
      },
      {
         "elevation" : -50.78903579711914,
         "location" : {
            "lat" : 36.455556,
            "lng" : -116.866667
         },
         "resolution" : 19.08790397644043
      }
   ],
   "status" : "OK"
}

每天多达2500个免费请求。请注意,服务条款要求您在Google地图上显示任何获得的结果,并且从Excel或ArcGIS调用API可能会有些复杂。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.