123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- from grass.gunittest.case import TestCase
- from grass.gunittest.main import test
- class TestRImportRegion(TestCase):
- imported = 'test_r_import_imported'
- @classmethod
- def setUpClass(cls):
- cls.runModule('g.region', raster='elevation')
- def tearDown(cls):
- """Remove imported map after each test method"""
- cls.runModule('g.remove', flags='f', type='raster',
- name=cls.imported)
- def test_import_estimate(self):
- """Test e flag"""
- self.assertModule('r.import', input='data/data2.asc', output=self.imported,
- resample='nearest', flags='e')
- self.assertRasterDoesNotExist(name=self.imported)
- def test_import_same_proj_tif(self):
- """Import tif in same proj, default params"""
- self.assertModule('r.import', input='data/data1.tif', output=self.imported,
- resample='bilinear')
- reference = dict(north=223490, south=223390, east=636820, west=636710,
- nsres=10, ewres=10, datatype='FCELL')
- self.assertRasterFitsInfo(raster=self.imported, reference=reference)
- def test_import_asc_custom_res(self):
- """Import ASC in different projection, with specified resolution"""
- self.assertModule('r.import', input='data/data2.asc', output=self.imported,
- resample='nearest', resolution='value', resolution_value=30)
- reference = dict(rows=3, cols=4,
- nsres=30, ewres=30, datatype='CELL')
- self.assertRasterFitsInfo(raster=self.imported, reference=reference, precision=1.1)
- def test_import_asc_region_extent(self):
- """Import ASC in different projection in specified region"""
- self.runModule('g.region', raster='elevation', n=223655, s=223600)
- self.assertModule('r.import', input='data/data2.asc', output=self.imported,
- resample='nearest', extent='region', resolution='region')
- reference = dict(north=223655, south=223600)
- self.assertRasterFitsInfo(raster=self.imported, reference=reference, precision=1e-6)
- if __name__ == '__main__':
- test()
|