Changeset 8548 for trunk/anuga_core/source
- Timestamp:
- Sep 1, 2012, 1:58:45 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/anuga_core/source/anuga/shallow_water/okada_tsunami.py
r8467 r8548 23 23 """ 24 24 import numpy 25 import okada_tsunami_fortran 25 26 try: 27 import okada_tsunami_fortran 28 except: 29 raise Exception,\ 30 'okada_tsunami_fortran does not appear to be compiled.\n \ 31 You can compile it by running the command:\n \ 32 "f2py -c okada_tsunami_fortran.f -m okada_tsunami_fortran"\n \ 33 in the shallow_water directory' 34 26 35 from pyproj import Proj 27 36 import copy
Note: See TracChangeset
for help on using the changeset viewer.