gctp_wrap.c

来自「GIS系统支持库Geospatial Data Abstraction Libr」· C语言 代码 · 共 109 行

C
109
字号
#include <ogr_srs_api.h>static int iOutsys, iOutzone, iOutdatum, iInsys, iInzone, iIndatum;static double *pdfOutparm, *pdfInparm;int osr_for(double lon,			/* (I) Longitude 		*/double lat,			/* (I) Latitude 		*/double *x,			/* (O) X projection coordinate 	*/double *y)			/* (O) Y projection coordinate 	*/{    OGRSpatialReferenceH hSourceSRS, hLatLong;    OGRCoordinateTransformationH hCT;    double dfX, dfY, dfZ = 0.0;    hSourceSRS = OSRNewSpatialReference( NULL );    OSRImportFromUSGS( hSourceSRS, iOutsys, iOutzone, pdfOutparm, iOutdatum );    hLatLong = OSRCloneGeogCS( hSourceSRS );    hCT = OCTNewCoordinateTransformation( hLatLong, hSourceSRS );    if( hCT == NULL )    {        ;    }    dfY = lon, dfX = lat;    if( !OCTTransform( hCT, 1, &dfX, &dfY, &dfZ ) )        ;    *x = dfX, *y = dfY;    OSRDestroySpatialReference( hSourceSRS );    OSRDestroySpatialReference( hLatLong );    return 0;}int for_init(int outsys,		/* output system code				*/int outzone,		/* output zone number				*/double *outparm,	/* output array of projection parameters	*/int outdatum,		/* output datum					*/char *fn27,		/* NAD 1927 parameter file			*/char *fn83,		/* NAD 1983 parameter file			*/int *iflg,		/* status flag					*/int (*for_trans[])(double, double, double *, double *))                        /* forward function pointer			*/{    iflg = 0;    iOutsys = outsys;    iOutzone = outzone;    pdfOutparm = outparm;    iOutdatum = outdatum;    for_trans[iOutsys] = osr_for;    return 0;}int osr_inv(double x,			/* (O) X projection coordinate 	*/double y,			/* (O) Y projection coordinate 	*/double *lon,			/* (I) Longitude 		*/double *lat)			/* (I) Latitude 		*/{    OGRSpatialReferenceH hSourceSRS, hLatLong;    OGRCoordinateTransformationH hCT;    double dfX, dfY, dfZ = 0.0;    hSourceSRS = OSRNewSpatialReference( NULL );    OSRImportFromUSGS( hSourceSRS, iInsys, iInzone, pdfInparm, iIndatum );    hLatLong = OSRCloneGeogCS( hSourceSRS );    hCT = OCTNewCoordinateTransformation( hSourceSRS, hLatLong );    if( hCT == NULL )    {        ;    }    //OSRDestroySpatialReference();    dfX = x, dfY = x;    if( !OCTTransform( hCT, 1, &dfX, &dfY, &dfZ ) )        ;    *lon = dfX, *lat = dfY;    return 0;}int inv_init(int insys,		/* input system code				*/int inzone,		/* input zone number				*/double *inparm,	        /* input array of projection parameters         */int indatum,	        /* input datum code			        */char *fn27,		/* NAD 1927 parameter file			*/char *fn83,		/* NAD 1983 parameter file			*/int *iflg,		/* status flag					*/int (*inv_trans[])(double, double, double*, double*))	                        /* inverse function pointer			*/{    iflg = 0;    iInsys = insys;    iInzone = inzone;    pdfInparm = inparm;     iIndatum = indatum;    inv_trans[insys] = osr_inv;    return 0;}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?