#!/usr/bin/env python ############################################################################### # $Id: hdf4_write.py,v 1.1 2003/04/01 09:55:23 dron Exp $ # # Project: GDAL/OGR Test Suite # Purpose: Test read/write functionality for HDF4 driver. # Author: Andrey Kiselev, dron@remotesensing.org # ############################################################################### # Copyright (c) 2003, Andrey Kiselev # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Library General Public # License as published by the Free Software Foundation; either # version 2 of the License, or (at your option) any later version. # # This library is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # Library General Public License for more details. # # You should have received a copy of the GNU Library General Public # License along with this library; if not, write to the # Free Software Foundation, Inc., 59 Temple Place - Suite 330, # Boston, MA 02111-1307, USA. ############################################################################### # # $Log: hdf4_write.py,v $ # Revision 1.1 2003/04/01 09:55:23 dron # New. # # import os import sys import gdal sys.path.append( '../pymod' ) import gdaltest init_list = [ \ ('byte.tif', 1, 4672, None), ('int16.tif', 1, 4672, None), ('uint16.tif', 1, 4672, None), ('int32.tif', 1, 4672, None), ('uint32.tif', 1, 4672, None), ('float32.tif', 1, 4672, None), ('float64.tif', 1, 4672, None), ('utmsmall.tif', 1, 50054, None) ] gdaltest_list = [] for item in init_list: ut = gdaltest.GDALTest( 'HDF4Image', item[0], item[1], item[2], options = [ 'RANK=3' ] ) if ut is None: print( 'HDF4 tests skipped' ) gdaltest_list.append( (ut.testCreateCopy, item[0] + " rank=3") ) gdaltest_list.append( (ut.testCreate, item[0] + " rank=3") ) gdaltest_list.append( (ut.testSetGeoTransform, item[0] + " rank=3") ) gdaltest_list.append( (ut.testSetProjection, item[0] + " rank=3") ) gdaltest_list.append( (ut.testSetMetadata, item[0] + " rank=3") ) gdaltest_list.append( (ut.testSetNoDataValue, item[0] + " rank=3") ) gdaltest_list.append( (ut.testSetDescription, item[0] + " rank=3") ) ut = gdaltest.GDALTest( 'HDF4Image', item[0], item[1], item[2], options = [ 'RANK=2' ] ) if ut is None: print( 'HDF4 tests skipped' ) gdaltest_list.append( (ut.testCreateCopy, item[0] + " rank=2") ) gdaltest_list.append( (ut.testSetGeoTransform, item[0] + " rank=2") ) gdaltest_list.append( (ut.testSetProjection, item[0] + " rank=2") ) gdaltest_list.append( (ut.testSetMetadata, item[0] + " rank=2") ) gdaltest_list.append( (ut.testSetNoDataValue, item[0] + " rank=2") ) gdaltest_list.append( (ut.testSetDescription, item[0] + " rank=2") ) if __name__ == '__main__': gdaltest.setup_run( 'hdf_write' ) gdaltest.run_tests( gdaltest_list ) gdaltest.summarize()