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

📄 ogr_mem.h

📁 GIS系统支持库Geospatial Data Abstraction Library代码.GDAL is a translator library for raster geospatial dat
💻 H
字号:
/****************************************************************************** * $Id: ogr_mem.h,v 1.5 2005/02/22 12:54:34 fwarmerdam Exp $ * * Project:  OpenGIS Simple Features Reference Implementation * Purpose:  Private definitions within the OGR Memory driver. * Author:   Frank Warmerdam, warmerdam@pobox.com * ****************************************************************************** * Copyright (c) 2003, Frank Warmerdam <warmerdam@pobox.com> * * 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_mem.h,v $ * Revision 1.5  2005/02/22 12:54:34  fwarmerdam * use OGRLayer base spatial filter support * * Revision 1.4  2005/02/02 20:12:41  fwarmerdam * added SetNextByIndex support * * Revision 1.3  2003/10/10 15:11:07  warmerda * added DeleteFeature() * * Revision 1.2  2003/05/21 05:09:54  warmerda * expand tabs * * Revision 1.1  2003/04/08 19:32:47  warmerda * New * */#ifndef _OGRMEM_H_INCLUDED#define _OGRMEM_H_INCLUDED#include "ogrsf_frmts.h"/************************************************************************//*                             OGRMemLayer                              *//************************************************************************/class OGRMemLayer : public OGRLayer{    OGRSpatialReference *poSRS;    OGRFeatureDefn     *poFeatureDefn;        int                 nFeatureCount;    int                 nMaxFeatureCount;    OGRFeature        **papoFeatures;    int                 iNextReadFID;    int                 iNextCreateFID;    OGRwkbGeometryType  eWkbType;  public:                        OGRMemLayer( const char * pszName,                                     OGRSpatialReference *poSRS,                                     OGRwkbGeometryType eGeomType );                        ~OGRMemLayer();    void                ResetReading();    OGRFeature *        GetNextFeature();    virtual OGRErr      SetNextByIndex( long nIndex );    OGRFeature         *GetFeature( long nFeatureId );    OGRErr              SetFeature( OGRFeature *poFeature );    OGRErr              CreateFeature( OGRFeature *poFeature );    virtual OGRErr      DeleteFeature( long nFID );        OGRFeatureDefn *    GetLayerDefn() { return poFeatureDefn; }    int                 GetFeatureCount( int );    OGRErr              GetExtent(OGREnvelope *psExtent, int bForce);    virtual OGRErr      CreateField( OGRFieldDefn *poField,                                     int bApproxOK = TRUE );    virtual OGRSpatialReference *GetSpatialRef();        int                 TestCapability( const char * );};/************************************************************************//*                           OGRMemDataSource                           *//************************************************************************/class OGRMemDataSource : public OGRDataSource{    OGRMemLayer     **papoLayers;    int                 nLayers;        char                *pszName;  public:                        OGRMemDataSource( const char *, char ** );                        ~OGRMemDataSource();    const char          *GetName() { return pszName; }    int                 GetLayerCount() { return nLayers; }    OGRLayer            *GetLayer( int );    virtual OGRLayer    *CreateLayer( const char *,                                       OGRSpatialReference * = NULL,                                      OGRwkbGeometryType = wkbUnknown,                                      char ** = NULL );    int                 TestCapability( const char * );};/************************************************************************//*                             OGRMemDriver                             *//************************************************************************/class OGRMemDriver : public OGRSFDriver{  public:                ~OGRMemDriver();                    const char *GetName();    OGRDataSource *Open( const char *, int );    virtual OGRDataSource *CreateDataSource( const char *pszName,                                             char ** = NULL );        int                 TestCapability( const char * );};#endif /* ndef _OGRMEM_H_INCLUDED */

⌨️ 快捷键说明

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