我正在尝试使用gdal_translate 2.1.2在MacOS X 10.12.2上将'cub'文件转换为JPEG,但是当我这样做时,我收到错误ERROR 6: Too many command options '–ot'
。
我使用的命令行是:
gdal_translate –of Jpeg –ot Byte -scale \
"Venus_Magellan_C3-MDIR_Colorized_Global_Mosaic_4641m.cub" "out.jpg"
ISIS 3 Cube文件可从以下网址下载:
输入的命令基于以下文档:
http://planetarygis.blogspot.ca/2014/12/what-is-isis-3-cube-format.html
提供以下示例:
gdal_translate –of GTiff input_32bit.cub output_32bit.tif
gdal_translate –of GTiff input_16bit.cub output_16bit.tif
gdal_translate –of GTiff input_8bit.cub output_8bit.tif
gdal_translate –of Jpeg –ot Byte –scale input.cub output_8bit.jpg
gdal_translate –of PNG –ot Byte –scale input.cub output_8bit.png
任何人都可以建议我做错了吗?
编辑:运行明显相同的代码,我现在得到:
ERROR 6: Too many command options 'Venus_Magellan_C3-MDIR_Colorized_Global_Mosaic_4641m.cub'
答案 0 :(得分:0)
基于此other answer,文档似乎已过时。这很有效:
gdal_translate -of JPEG "./Venus_Magellan_C3-MDIR_Colorized_Global_Mosaic_4641m.cub" "out.jpg"