我有一些MODIS hdf文件并尝试使用Python中的GDAL模块将投影从Sinusoidal更改为Lambert Conformal Conic。这是我的python代码,它返回错误消息:
import os,sys
import gdal
import numpy
os.sys('gdalwarp test.hdf outfile.hdf -t_srs "+proj=lcc"')
File "projection_cmd.py", line 5, in ?
os.sys('gdalwarp test.hdf outfile.hdf -t_srs "+proj=lcc"')
TypeError: 'module' object is not callable
当我使用命令行运行时:
gdalwarp test.hdf outfile.hdf -t_srs "+proj=lcc"
ERROR 1: Unable to compute a transformation between pixel/line
and georeferenced coordinates for test.hdf.
There is no affine transformation and no GCPs.
我该如何解决?谢谢!
答案 0 :(得分:1)
os.sys是一个模块名称。如果需要运行系统命令行,则需要使用os.system('command')