Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add test for compressed MTW files (RMF driver) #153

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added autotest/gdrivers/data/t100.mtw
Binary file not shown.
12 changes: 11 additions & 1 deletion autotest/gdrivers/rmf.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,15 @@ def rmf_9():

return tst.testCreateCopy( check_srs = 1, check_gt = 1, vsimem = 1 )

###############################################################################
# Compressed DEM

def rmf_10():

tst = gdaltest.GDALTest( 'rmf', 't100.mtw', 1, 6388 )

return tst.testOpen()

###############################################################################

gdaltest_list = [
Expand All @@ -110,7 +119,8 @@ def rmf_9():
rmf_6,
rmf_7,
rmf_8,
rmf_9
rmf_9,
rmf_10
]

if __name__ == '__main__':
Expand Down