私はいくつかの MODIS hdf ファイルを持っており、Python の GDAL モジュールを使用して正弦波からランベルト正角円錐図法に投影法を変更しようとしています。私の 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.
どうすれば修正できますか?ありがとう!