Changeset 23716 for issm/trunk-jpl/src/m/plot/plot_overlay.py
- Timestamp:
- 02/12/19 06:10:51 (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/m/plot/plot_overlay.py
r23563 r23716 9 9 from mpl_toolkits.basemap import Basemap 10 10 except ImportError: 11 print 'Basemap toolkit not installed'11 print('Basemap toolkit not installed') 12 12 try: 13 13 from osgeo import gdal 14 14 except ImportError: 15 print 'osgeo/gdal for python not installed, plot_overlay is disabled'15 print('osgeo/gdal for python not installed, plot_overlay is disabled') 16 16 17 17 … … 32 32 33 33 if not is2d: 34 raise StandardError('overlay plot not supported for 3D meshes, project on a 2D layer first')34 raise Exception('overlay plot not supported for 3D meshes, project on a 2D layer first') 35 35 36 36 if not options.exist('overlay_image'): 37 raise StandardError('overlay error: provide overlay_image with path to geotiff file')37 raise Exception('overlay error: provide overlay_image with path to geotiff file') 38 38 image=options.getfieldvalue('overlay_image') 39 39 … … 111 111 lon_0=0 112 112 else: 113 hemisphere= raw_input('epsg code {} is not supported chose your hemisphere (1 for North, -1 for south)'.format(mesh.epsg))113 hemisphere=eval(input('epsg code {} is not supported chose your hemisphere (1 for North, -1 for south)'.format(mesh.epsg))) 114 114 115 115 lat,lon=xy2ll(xlim,ylim,hemisphere,lon_0,st_lat)
Note:
See TracChangeset
for help on using the changeset viewer.