source: issm/trunk/src/c/shared/LatLong/Ll2xyx.cpp@ 16560

Last change on this file since 16560 was 16560, checked in by Mathieu Morlighem, 11 years ago

merged trunk-jpl and trunk for revision 16554

File size: 3.8 KB
RevLine 
[8673]1/*!\file Ll2xyx.cpp
2 */
3
4#include "../../shared/shared.h"
[15069]5#include "./latlong.h"
[8698]6#include <math.h>
[8673]7
[8698]8int Ll2xyx(double* x, double* y, double* lat, double* lon, int ncoord, int sgn){
[8673]9/* This is a cpp conversion of the following:
10%LL2XY - converts lat long to polar stereographic
11%
12% Converts from geodetic latitude and longitude to Polar
13% Stereographic (X,Y) coordinates for the polar regions.
14% Author: Michael P. Schodlok, December 2003 (map2ll)
15%
16% Usage:
17% [x,y] = ll2xy(lat,lon,sgn)
18% [x,y] = ll2xy(lat,lon,sgn,central_meridian,standard_parallel)
19%
20% - sgn = Sign of latitude +1 : north latitude (default is mer=45 lat=70)
21% -1 : south latitude (default is mer=0 lat=71)
22*/
[8715]23 double central_meridian,standard_parallel;
[8673]24
[8715]25 Ll2xydef(&central_meridian,&standard_parallel,sgn);
[8673]26
[8715]27 return(Ll2xyx(x,y,lat,lon,ncoord,sgn,central_meridian,standard_parallel));
[8673]28}
29
[8698]30int Ll2xyx(double* x, double* y, double* lat, double* lon, int ncoord, int sgn, double central_meridian, double standard_parallel){
[8673]31/* This is a cpp conversion of the following:
32%LL2XY - converts lat long to polar stereographic
33%
34% Converts from geodetic latitude and longitude to Polar
35% Stereographic (X,Y) coordinates for the polar regions.
36% Author: Michael P. Schodlok, December 2003 (map2ll)
37%
38% Usage:
39% [x,y] = ll2xy(lat,lon,sgn)
40% [x,y] = ll2xy(lat,lon,sgn,central_meridian,standard_parallel)
41%
42% - sgn = Sign of latitude +1 : north latitude (default is mer=45 lat=70)
43% -1 : south latitude (default is mer=0 lat=71)
44*/
45
[8689]46 int i,iret=0;
[8673]47 double delta,slat;
[16560]48 double re,ex2,ex;
[8673]49 double latitude,longitude;
50 double T,rho,sl,tc,mc;
51
[13056]52 if((sgn!=1) && (sgn!=-1)) _error_("Sign should be either +1 or -1.\n");
[8673]53
54 delta = central_meridian;
55 slat = standard_parallel;
56
57 /* Radius of the earth in meters */
[16137]58 re = 6378.273*1.e3;
[8673]59 /* Eccentricity of the Hughes ellipsoid squared */
[8698]60 ex2 = 0.006693883;
[8673]61 /* Eccentricity of the Hughes ellipsoid */
[8698]62 ex = sqrt(ex2);
[8673]63
64 /* loop over all the coordinate pairs */
[8698]65 for(i=0; i<ncoord; i++){
66 latitude = fabs(lat[i]) * PI/180.;
67 longitude = (lon[i] + delta) * PI/180.;
[8673]68
69 /* compute X and Y in grid coordinates. */
[8698]70 T = tan(PI/4.-latitude/2.) / pow(((1.-ex*sin(latitude))/(1.+ex*sin(latitude))),(ex/2.));
[8673]71
[8698]72 if ((90. - slat) < 1.e-5)
[8673]73 rho = 2.*re*T/sqrt(pow((1.+ex),(1.+ex))*pow((1.-ex),(1.-ex)));
74 else {
[8698]75 sl = slat*PI/180.;
76 tc = tan(PI/4.-sl/2.)/pow(((1.-ex*sin(sl))/(1.+ex*sin(sl))),(ex/2.));
[16137]77 mc = cos(sl)/sqrt(1.0-ex2*(pow(sin(sl),2)));
[8673]78 rho = re*mc*T/tc;
79 }
80
[8698]81 y[i]= -rho*(double)sgn*cos(sgn*longitude);
82 x[i]= rho*(double)sgn*sin(sgn*longitude);
[8673]83
[8698]84 if (latitude>= PI/2.){
[8673]85 x[i] = 0.0;
86 y[i] = 0.0;
[8689]87 iret=1;
[8673]88 }
89 }
[8689]90 return(iret);
[8673]91}
[8715]92
93void Ll2xydef(double* pdelta, double* pslat, int sgn){
94/* This is a cpp conversion of the following:
95%LL2XY - converts lat long to polar stereographic
96%
97% Converts from geodetic latitude and longitude to Polar
98% Stereographic (X,Y) coordinates for the polar regions.
99% Author: Michael P. Schodlok, December 2003 (map2ll)
100%
101% Usage:
102% [x,y] = ll2xy(lat,lon,sgn)
103% [x,y] = ll2xy(lat,lon,sgn,central_meridian,standard_parallel)
104%
105% - sgn = Sign of latitude +1 : north latitude (default is mer=45 lat=70)
106% -1 : south latitude (default is mer=0 lat=71)
107*/
108 bool flag=true;
109
110 /* Get central_meridian and standard_parallel depending on hemisphere */
111 if (sgn == 1) {
112 *pdelta= 45;
113 *pslat = 70;
[15104]114 if(flag) _printf0_("Info: creating coordinates in polar stereographic (Std Latitude: 70N Meridian: 45).\n");
[8715]115 }
116 else if (sgn == -1) {
117 *pdelta= 0;
118 *pslat = 71;
[15104]119 if(flag) _printf0_("Info: creating coordinates in polar stereographic (Std Latitude: 71S Meridian: 0).\n");
[8715]120 }
[13056]121 else _error_("Sign should be either +1 or -1.\n");
[8715]122
123 return;
124}
Note: See TracBrowser for help on using the repository browser.