Changeset 21784


Ignore:
Timestamp:
07/13/17 14:18:30 (8 years ago)
Author:
Mathieu Morlighem
Message:

CHG: special case if lat long proj provided

File:
1 edited

Legend:

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

    r21724 r21784  
    141141        elseif md.mesh.epsg==3031,
    142142                [X Y]=ll2xy(LAT,LON,-1,0,71);
     143        elseif md.mesh.epsg==4326,
     144                X=LON;
     145                Y=LAT;
    143146        else
    144147                error('EPSG code not supported yet');
     
    165168        elseif md.mesh.epsg==3031,
    166169                [X Y]=ll2xy(LAT,LON,-1,0,71);
     170        elseif md.mesh.epsg==4326,
     171                X=LON;
     172                Y=LAT;
    167173        else
    168174                error('EPSG code not supported yet');
Note: See TracChangeset for help on using the changeset viewer.