Skip to content

Commit

Permalink
PROJ6: add alternative result for wcs_20_getcov_bands_name_new_reproj…
Browse files Browse the repository at this point in the history
…ect.dat. The envelope in the GDAL TIFF file defers to micrometer depending on the exact PROJ transformation path
  • Loading branch information
rouault committed Oct 1, 2019
1 parent c61abcb commit 51e6e6b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions msautotest/pymod/testlib.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,11 @@ def compare_result( filename ):
if filecmp.cmp(expected_file,result_file,0):
return 'match'

expected_file_alternative = expected_file + ".alternative"
if os.path.exists( expected_file_alternative ):
if filecmp.cmp(expected_file_alternative,result_file,0):
return 'match'

if expected_file[-4:] == '.xml':
return 'nomatch'

Expand Down
Binary file not shown.

0 comments on commit 51e6e6b

Please sign in to comment.