⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ogr_spatialref.h

📁 用于读取TAB、MIF、SHP文件的类
💻 H
📖 第 1 页 / 共 2 页
字号:
/****************************************************************************** * $Id: ogr_spatialref.h,v 1.73 2006/11/24 17:58:15 fwarmerdam Exp $ * * Project:  OpenGIS Simple Features Reference Implementation * Purpose:  Classes for manipulating spatial reference systems in a *           platform non-specific manner. * Author:   Frank Warmerdam, warmerdam@pobox.com * ****************************************************************************** * Copyright (c) 1999,  Les Technologies SoftMap Inc. * * 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: ogr_spatialref.h,v $ * Revision 1.73  2006/11/24 17:58:15  fwarmerdam * added extension management methods * * Revision 1.72  2006/11/07 18:55:07  fwarmerdam * added OGC importFromURN() * * Revision 1.71  2006/10/14 12:15:44  mloskot * Fixed missing declaration of OGRSpatialReference::SetMercator2SP(). * * Revision 1.70  2006/01/30 17:42:29  fwarmerdam * Reorganize data members to be less suseptable to packing oddities, * per suggestion from Ray Gardener. * * Revision 1.69  2005/12/01 04:59:45  fwarmerdam * added two point equidistant support * * Revision 1.68  2005/10/10 14:44:52  dron * Added exportToPanorama()/importFromPanorama() methods. * * Revision 1.67  2005/09/21 00:50:08  fwarmerdam * Added Release * * Revision 1.66  2005/03/03 04:55:42  fwarmerdam * make exportToWkt() const * * Revision 1.65  2005/02/11 14:21:28  fwarmerdam * added GEOS projection support * * Revision 1.64  2005/01/13 05:17:37  fwarmerdam * added SetLinearUnitsAndUpdateParameters * * Revision 1.63  2005/01/05 21:02:33  fwarmerdam * added Goode Homolosine * * Revision 1.62  2004/11/11 18:28:45  fwarmerdam * added Bonne projection support * * Revision 1.61  2004/05/10 17:05:14  warmerda * added AutoIdentifyEPSG() * * Revision 1.60  2004/03/04 18:04:45  warmerda * added importFromDict() support * * Revision 1.59  2004/02/07 17:31:21  dron * Added OSRExportToUSGS() method. * * Revision 1.58  2004/02/05 17:07:59  dron * Support for HOM projection, specified by two points on centerline. * * Revision 1.57  2004/02/01 14:24:09  dron * Added OGRSpatialReference::importFromUSGS(). * * Revision 1.56  2004/01/24 09:34:59  warmerda * added TransformEx support to capture per point reprojection failure * * Revision 1.55  2003/10/07 04:20:50  warmerda * added WMS AUTO: support * * Revision 1.54  2003/09/09 07:49:19  dron * Added exportToPCI() method. * * Revision 1.53  2003/08/31 14:51:30  dron * Added importFromPCI() method. * * Revision 1.52  2003/08/18 13:26:01  warmerda * added SetTMVariant() and related definitions * * Revision 1.51  2003/05/30 15:39:53  warmerda * Added override units capability for SetStatePlane() * * Revision 1.50  2003/05/28 19:16:42  warmerda * fixed up argument names and stuff for docs * * Revision 1.49  2003/03/12 14:25:01  warmerda * added NeedsQuoting() method * * Revision 1.48  2003/02/25 04:53:51  warmerda * added CopyGeogCSFrom() method * * Revision 1.47  2003/02/06 04:53:12  warmerda * added Fixup() method * * Revision 1.46  2003/01/08 18:14:28  warmerda * added FixupOrdering() */#ifndef _OGR_SPATIALREF_H_INCLUDED#define _OGR_SPATIALREF_H_INCLUDED#include "ogr_srs_api.h"/** * \file ogr_spatialref.h * * Coordinate systems services. *//************************************************************************//*                             OGR_SRSNode                              *//************************************************************************//** * Objects of this class are used to represent value nodes in the parsed * representation of the WKT SRS format.  For instance UNIT["METER",1] * would be rendered into three OGR_SRSNodes.  The root node would have a * value of UNIT, and two children, the first with a value of METER, and the * second with a value of 1. * * Normally application code just interacts with the OGRSpatialReference * object, which uses the OGR_SRSNode to implement it's data structure; * however, this class is user accessable for detailed access to components * of an SRS definition. */class CPL_DLL OGR_SRSNode{    char        *pszValue;    OGR_SRSNode **papoChildNodes;    OGR_SRSNode *poParent;    int         nChildren;    void        ClearChildren();    int         NeedsQuoting() const;      public:                OGR_SRSNode(const char * = NULL);                ~OGR_SRSNode();    int         IsLeafNode() const { return nChildren == 0; }        int         GetChildCount() const { return nChildren; }    OGR_SRSNode *GetChild( int );    const OGR_SRSNode *GetChild( int ) const;    OGR_SRSNode *GetNode( const char * );    const OGR_SRSNode *GetNode( const char * ) const;    void        InsertChild( OGR_SRSNode *, int );    void        AddChild( OGR_SRSNode * );    int         FindChild( const char * ) const;    void        DestroyChild( int );    void        StripNodes( const char * );    const char  *GetValue() const { return pszValue; }    void        SetValue( const char * );    void        MakeValueSafe();    OGRErr      FixupOrdering();    OGR_SRSNode *Clone() const;    OGRErr      importFromWkt( char ** );    OGRErr      exportToWkt( char ** ) const;    OGRErr      exportToPrettyWkt( char **, int = 1) const;        OGRErr      applyRemapper( const char *pszNode,                                char **papszSrcValues,                                char **papszDstValues,                                int nStepSize = 1,                               int bChildOfHit = FALSE );};/************************************************************************//*                         OGRSpatialReference                          *//************************************************************************//** * This class respresents a OpenGIS Spatial Reference System, and contains * methods for converting between this object organization and well known * text (WKT) format.  This object is reference counted as one instance of * the object is normally shared between many OGRGeometry objects. * * Normally application code can fetch needed parameter values for this * SRS using GetAttrValue(), but in special cases the underlying parse tree * (or OGR_SRSNode objects) can be accessed more directly. * * See <a href="osr_tutorial.html">the tutorial</a> for more information on * how to use this class. */class CPL_DLL OGRSpatialReference{    double      dfFromGreenwich;    double      dfToMeter;    double      dfToDegrees;    OGR_SRSNode *poRoot;    int         nRefCount;    int         bNormInfoSet;    OGRErr      ValidateProjection();    int         IsAliasFor( const char *, const char * );    void        GetNormInfo() const;  public:                OGRSpatialReference(const OGRSpatialReference&);                OGRSpatialReference(const char * = NULL);                    virtual    ~OGRSpatialReference();                    OGRSpatialReference &operator=(const OGRSpatialReference&);    int         Reference();    int         Dereference();    int         GetReferenceCount() const { return nRefCount; }    void        Release();    OGRSpatialReference *Clone() const;    OGRSpatialReference *CloneGeogCS() const;    OGRErr      exportToWkt( char ** ) const;    OGRErr      exportToPrettyWkt( char **, int = FALSE) const;    OGRErr      exportToProj4( char ** ) const;    OGRErr      exportToPCI( char **, char **, double ** ) const;    OGRErr      exportToUSGS( long *, long *, double **, long * ) const;    OGRErr      exportToPanorama( long *, long *, double **, long * ) const;    OGRErr      exportToXML( char **, const char * = NULL ) const;    OGRErr      exportToPanorama( long *, long *, long *, long *, double *,                                  double *, double *, double * ) const;    OGRErr      importFromWkt( char ** );    OGRErr      importFromProj4( const char * );    OGRErr      importFromEPSG( int );    OGRErr      importFromESRI( char ** );    OGRErr      importFromPCI( const char *, const char * = NULL,                               double * = NULL );    OGRErr      importFromUSGS( long, long, double *, long );    OGRErr      importFromPanorama( long, long, long, long,                                    double, double, double, double );    OGRErr      importFromWMSAUTO( const char *pszAutoDef );    OGRErr      importFromXML( const char * );    OGRErr      importFromDict( const char *pszDict, const char *pszCode );    OGRErr      importFromURN( const char * );    OGRErr      morphToESRI();    OGRErr      morphFromESRI();    OGRErr      Validate();    OGRErr      StripCTParms( OGR_SRSNode * = NULL );    OGRErr      FixupOrdering();    OGRErr      Fixup();    // Machinary for accessing parse nodes    OGR_SRSNode *GetRoot() { return poRoot; }    const OGR_SRSNode *GetRoot() const { return poRoot; }    void        SetRoot( OGR_SRSNode * );        OGR_SRSNode *GetAttrNode(const char *);    const OGR_SRSNode *GetAttrNode(const char *) const;    const char  *GetAttrValue(const char *, int = 0) const;    OGRErr      SetNode( const char *, const char * );    OGRErr      SetNode( const char *, double );        OGRErr      SetLinearUnitsAndUpdateParameters( const char *pszName,                                                    double dfInMeters );    OGRErr      SetLinearUnits( const char *pszName, double dfInMeters );    double      GetLinearUnits( char ** = NULL ) const;    OGRErr      SetAngularUnits( const char *pszName, double dfInRadians );    double      GetAngularUnits( char ** = NULL ) const;    double      GetPrimeMeridian( char ** = NULL ) const;    int         IsGeographic() const;    int         IsProjected() const;    int         IsLocal() const;    int         IsSameGeogCS( const OGRSpatialReference * ) const;    int         IsSame( const OGRSpatialReference * ) const;    void        Clear();    OGRErr      SetLocalCS( const char * );    OGRErr      SetProjCS( const char * );    OGRErr      SetProjection( const char * );

⌨️ 快捷键说明

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