| | 434 | |
|---|
| | 435 | |
|---|
| | 436 | ############################################################################### |
|---|
| | 437 | # Write/Read test of simple int32 reference data. |
|---|
| | 438 | |
|---|
| | 439 | def nitf_22(): |
|---|
| | 440 | |
|---|
| | 441 | tst = gdaltest.GDALTest( 'NITF', '../../gcore/data/int32.tif', 1, 4672 ) |
|---|
| | 442 | return tst.testCreateCopy() |
|---|
| | 443 | |
|---|
| | 444 | ############################################################################### |
|---|
| | 445 | # Write/Read test of simple float32 reference data. |
|---|
| | 446 | |
|---|
| | 447 | def nitf_23(): |
|---|
| | 448 | |
|---|
| | 449 | tst = gdaltest.GDALTest( 'NITF', '../../gcore/data/float32.tif', 1, 4672 ) |
|---|
| | 450 | return tst.testCreateCopy() |
|---|
| | 451 | |
|---|
| | 452 | ############################################################################### |
|---|
| | 453 | # Write/Read test of simple float64 reference data. |
|---|
| | 454 | |
|---|
| | 455 | def nitf_24(): |
|---|
| | 456 | |
|---|
| | 457 | tst = gdaltest.GDALTest( 'NITF', '../../gcore/data/float64.tif', 1, 4672 ) |
|---|
| | 458 | return tst.testCreateCopy() |
|---|
| | 459 | |
|---|
| | 460 | ############################################################################### |
|---|
| | 461 | # Write/Read test of simple uint16 reference data. |
|---|
| | 462 | |
|---|
| | 463 | def nitf_25(): |
|---|
| | 464 | |
|---|
| | 465 | tst = gdaltest.GDALTest( 'NITF', '../../gcore/data/uint16.tif', 1, 4672 ) |
|---|
| | 466 | return tst.testCreateCopy() |
|---|
| | 467 | |
|---|
| | 468 | ############################################################################### |
|---|
| | 469 | # Write/Read test of simple uint32 reference data. |
|---|
| | 470 | |
|---|
| | 471 | def nitf_26(): |
|---|
| | 472 | |
|---|
| | 473 | tst = gdaltest.GDALTest( 'NITF', '../../gcore/data/uint32.tif', 1, 4672 ) |
|---|
| | 474 | return tst.testCreateCopy() |
|---|