/****************************************************************************** * $Id: gctp_wrap.c,v 1.3 2006/04/20 13:45:13 dron Exp $ * * Project: Hierarchical Data Format Release 4 (HDF4) * Purpose: This is the wrapper code to use OGR Coordinate Transformation * services instead of GCTP library * Author: Andrey Kiselev, dron@ak4719.spb.edu * ****************************************************************************** * Copyright (c) 2004, Andrey Kiselev * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), * to deal in the Software without restriction, including without limitation * the rights to use, copy, modify, merge, publish, distribute, sublicense, * and/or sell copies of the Software, and to permit persons to whom the * Software is furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. ****************************************************************************** * * $Log: gctp_wrap.c,v $ * Revision 1.3 2006/04/20 13:45:13 dron * Definitions for for_init() and inv_init() changed to be fully compatible * with HDF-EOS code. * * Revision 1.2 2006/04/06 14:22:02 dron * Added explicit copyright statement. * */ #include "ogr_srs_api.h" #include "mfhdf.h" static int iOutsys, iOutzone, iOutdatum, iInsys, iInzone, iIndatum; static double *pdfOutparm, *pdfInparm; int32 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; } void for_init( int32 outsys, /* output system code */ int32 outzone, /* output zone number */ float64 *outparm, /* output array of projection parameters */ int32 outdatum, /* output datum */ char *fn27, /* NAD 1927 parameter file */ char *fn83, /* NAD 1983 parameter file */ int32 *iflg, /* status flag */ int32 (*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; } int32 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; } void inv_init( int32 insys, /* input system code */ int32 inzone, /* input zone number */ float64 *inparm, /* input array of projection parameters */ int32 indatum, /* input datum code */ char *fn27, /* NAD 1927 parameter file */ char *fn83, /* NAD 1983 parameter file */ int32 *iflg, /* status flag */ int32 (*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; }