Changeset 2734


Ignore:
Timestamp:
01/04/10 12:22:29 (15 years ago)
Author:
seroussi
Message:

Minor, improved headers for latlong/xy conversions

Location:
issm/trunk/src/m/utils/LatLong
Files:
2 edited

Legend:

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

    r2592 r2734  
    44%   latitude and longitude are in degrees.
    55%   Hemisphere must be 'n' for north and 's' for south
     6%   One can specify the standard parallel and centre meridians.
     7%   Default values are (70,45) for northern hemisphere and (71,0) for southerm hemisphere.
    68%
    79%   Usage:
    810%      [x,y]=mapll(latitude,longitude,hemisphere)
     11%      [x,y]=mapll(latitude,longitude,hemisphere,parallel,meridien)
     12%
     13%   Example:
     14%      [x,y]=mapll(lat,lon,'s')
     15%      [x,y]=mapll(lat,lon,'n',71,39)
    916%
    1017%   See also MAPXY, LL2XY
  • issm/trunk/src/m/utils/LatLong/mapxy.m

    r2275 r2734  
    22%MAPXY - compute latitude and longitude from x and y
    33%
    4 %   hemisphere must be 1 for north and 0 for south
     4%   hemisphere must be 'n' for north and 's' for south
     5%   One can specify the standard parallel and center meridien.
     6%   Default values are (70,45) for northern hemisphere and (71,0) for southerm hemisphere.
    57%
    68%   Usage:
    79%      [latitude,longitude]=mapxy(x,y,hemisphere)
     10%      [latitude,longitude]=mapxy(x,y,hemisphere,parallel,meridien)
     11%
     12%   Example:
     13%      [lat,long]=mapxy(x,y,'s')
     14%      [lat,long]=mapxy(x,y,'n',71,39)
    815%
    916%   See also MAPLL, LL2XY
Note: See TracChangeset for help on using the changeset viewer.