2

我想使用模块提升(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,但我不确定它是否正确。我在目录中有模块 gdal_translate 和 gdalbuildvrt:C:\OSGeo4W64\bin。我应该把它们搬到别的地方吗?GNU make、unzip、gunzip、gdal_translate、gdalbuildvrt 模块还是 .exe?

4

1 回答 1

0

我使用提升模块(主版本)作为外部库,如下:

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()

“你的系统准备好了。”

于 2018-06-28T07:33:15.583 回答