我想使用elevation (Python)模块下载SRTM1图像。我安装了模块提升。但是现在,当我进入eio selfcheck时,我得到了这个
> u'GNU Make' not found or not usable.
> u'unzip' not found or not usable.
> u'gunzip' not found or not usable.
> u'gdal_translate' not found or not usable.
> u'gdalbuildvrt' not found or not usable我安装了GNU make,但我不确定它是否正确。我在目录C:\OSGeo4W64bin中有模块gdal_translate和gdalbuildvrt。我应该把它们移到别的地方吗?GNU make,unzip,gunzip,gdal_translate,gdalbuildvrt模块还是.exe?
发布于 2018-06-28 15:33:16
我使用elevation模块(主版)作为外部库,如下所示:
import sys
sys.path.append("/Users/larosa/dev/ext-libs")
import elevation
elevation.clip(bounds=(12.35, 41.8, 12.65, 42), output='/Users/larosa/Rome-
DEM.tif')然后运行selfcheck,我得到:
from elevation import cli
cli.selfcheck()“您的系统已准备就绪。”
https://stackoverflow.com/questions/51076943
复制相似问题