diff options
| author | Even Rouault <even.rouault@spatialys.com> | 2020-01-24 13:49:08 +0100 |
|---|---|---|
| committer | Even Rouault <even.rouault@spatialys.com> | 2020-01-24 13:49:16 +0100 |
| commit | 15ed5651019f5438a1dddab0c30f21733a0e1e97 (patch) | |
| tree | 630b1602c0b5cc64acadd3537015c66b6c7d91ba /scripts/grid_checks.py | |
| parent | 6507e962e04f074ea17478670f04ff6732bfc87d (diff) | |
| download | PROJ-15ed5651019f5438a1dddab0c30f21733a0e1e97.tar.gz PROJ-15ed5651019f5438a1dddab0c30f21733a0e1e97.zip | |
grid_checks.py: update with additional column in filelist.csv [ci skip]
Diffstat (limited to 'scripts/grid_checks.py')
| -rwxr-xr-x | scripts/grid_checks.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/grid_checks.py b/scripts/grid_checks.py index 5ed6c0ae..3b748d2c 100755 --- a/scripts/grid_checks.py +++ b/scripts/grid_checks.py @@ -136,10 +136,10 @@ elif args.check_filelist: first_line = True for row in reader: if first_line: - assert row == ['filename', 'type', 'unit', 'source_crs', 'target_crs', 'interpolation_crs', 'agency_name', 'source', 'licence'] + assert row == ['filename', 'type', 'area', 'unit', 'source_crs', 'target_crs', 'interpolation_crs', 'agency_name', 'source', 'licence'] first_line = False continue - filename, type, unit, source_crs, target_crs, interpolation_crs, _, _, _ = row + filename, type, _, unit, source_crs, target_crs, interpolation_crs, _, _, _ = row if type in ('DEFORMATION_MODEL', 'VELOCITY_MODEL'): continue assert type in ('HORIZONTAL_OFFSET', |
