VFR Sectional Aeronautical Charts with matplotlib (python)

北慕城南 提交于 2020-01-25 21:05:08

问题


I'm looking for a means to add VFR Sectional Aeronautical Charts (a.k.a. sectionals) to preexisting matplotlib code I have.

In short, can there be a quick and easy means to realize sectional charts with python and matplotlib? If not, what are the other paths to consider?

Reference: http://robertjliguori.blogspot.com/2016/10/acquiring-vfr-sectional-aeronautical.html

Thanks, Robert


回答1:


I actually figured it out...

map = Basemap(...)
map.arcgisimage(server='http://maps7.arcgisonline.com/ArcGIS', xpixels=1500,  service='FAA_Sectional_Charts', layer=0)


来源:https://stackoverflow.com/questions/39976479/vfr-sectional-aeronautical-charts-with-matplotlib-python

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!