在哪里可以获得加利福尼亚州的 x、y、z 坐标以使用等高线图?
我想通过等高线图制作加利福尼亚州的地图。 但是,我不知道如何获得必要的 x、y 和 z 坐标。
I would like to make California's map by the contour plot. However, I do not know how to get the necessary x, y and z -coordinates.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您是否咨询过加州地理空间信息办公室? 还有 geodata.gov,它链接到一堆高程数据集,包括 USGS 国家高程数据集。
Have you consulted the California's Geospatial Information Office? There's also geodata.gov, which links to a bunch of elevation datasets, including the USGS National Elevation Dataset.
GDAL 库 (www.gdal.org) 有许多有用的命令来处理这些类型的数据。 大多数高程数据格式,例如通过国家地图服务器提供的格式:
http://nationalmap.gov/viewer.html
可由 GDAL 读取。 命令 gdal2xyz.py 可以读取这些光栅化文件并写入 X、Y、Z 三元组。 或者您可以直接跳到使用 gdal_contour 渲染轮廓线。 优秀的跨平台 GIS 软件 Quantum GIS (www.qgis.org) 对于处理地理空间数据也非常有用,并且包括对 GDAL 大部分功能的菜单驱动访问。
The GDAL library (www.gdal.org) has many useful commands for processing these types of data. Most elevation data formats, such as those available through the national map server:
http://nationalmap.gov/viewer.html
are readable by GDAL. The command gdal2xyz.py can read these rasterized files and write X,Y,Z triplets. Or you can skip straight to rendering contour lines with gdal_contour. The excellent cross-platform GIS software Quantum GIS (www.qgis.org) is also very useful for processing geospatial data, and includes menu-driven access to most of the functionality of GDAL.