Ignore:
Timestamp:
02/12/19 06:10:51 (6 years ago)
Author:
bdef
Message:

CHG: shifting to py3 version of python interface (py2 compatible)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/m/plot/plot_overlay.py

    r23563 r23716  
    99        from mpl_toolkits.basemap import Basemap
    1010except ImportError:
    11         print 'Basemap toolkit not installed'
     11        print('Basemap toolkit not installed')
    1212try:
    1313        from osgeo import gdal
    1414except 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')
    1616
    1717
     
    3232
    3333        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')
    3535
    3636        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')
    3838        image=options.getfieldvalue('overlay_image')
    3939
     
    111111                        lon_0=0
    112112                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)))
    114114
    115115                lat,lon=xy2ll(xlim,ylim,hemisphere,lon_0,st_lat)
Note: See TracChangeset for help on using the changeset viewer.