From 48b5014e08264b14dda7f1573ba7340d6644c546 Mon Sep 17 00:00:00 2001 From: Randy LeVeque Date: Sun, 24 Apr 2016 17:01:05 -0700 Subject: [PATCH] give etopo file_name extension asc rather than tt3 since header is in asc form. --- src/python/geoclaw/etopotools.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/python/geoclaw/etopotools.py b/src/python/geoclaw/etopotools.py index 16d4e2817..a3111a170 100644 --- a/src/python/geoclaw/etopotools.py +++ b/src/python/geoclaw/etopotools.py @@ -59,7 +59,7 @@ def etopo1_download(xlimits, ylimits, dx=0.0166666666667, dy=None, \ y1,y2 = ylimits if file_name is None: - file_name = 'etopo1_%i_%i_%i_%i_%imin.tt3' \ + file_name = 'etopo1_%i_%i_%i_%i_%imin.asc' \ % (int(round(x1)),int(round(x2)),int(round(y1)),int(round(y2)),\ int(round(60*dx)))