Changeset 2275


Ignore:
Timestamp:
09/23/09 09:52:52 (15 years ago)
Author:
seroussi
Message:

added wrapper for lat long coordinates

Location:
issm/trunk/src/m/utils/LatLong
Files:
1 added
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk/src/m/utils/LatLong/mapxy.m

    r2271 r2275  
    2020
    2121%check hem is either 'n' or 's':
    22 if ~(hem=='s' | hem=='n'),
     22if ~(strcmpi(hem,'n') | strcmpi(hem,'s')),
    2323        error('mapxy error message: hem should be ''s'' or ''n''');
    2424end
    2525
    2626%set sn:
    27 if hem=='s',
     27if strcmpi(hem,'s'),
    2828        slat=71;
    2929        sn=-1.0;
Note: See TracChangeset for help on using the changeset viewer.