Changeset 2734
- Timestamp:
- 01/04/10 12:22:29 (15 years ago)
- Location:
- issm/trunk/src/m/utils/LatLong
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk/src/m/utils/LatLong/mapll.m
r2592 r2734 4 4 % latitude and longitude are in degrees. 5 5 % 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. 6 8 % 7 9 % Usage: 8 10 % [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) 9 16 % 10 17 % See also MAPXY, LL2XY -
issm/trunk/src/m/utils/LatLong/mapxy.m
r2275 r2734 2 2 %MAPXY - compute latitude and longitude from x and y 3 3 % 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. 5 7 % 6 8 % Usage: 7 9 % [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) 8 15 % 9 16 % See also MAPLL, LL2XY
Note:
See TracChangeset
for help on using the changeset viewer.