GDAL
gdalgeorefpamdataset.h
1/******************************************************************************
2 * $Id: gdalgeorefpamdataset.h 315b6d277cdfd763148999530b3741862819261a 2021-05-08 19:57:32 +0200 Even Rouault $
3 *
4 * Project: GDAL
5 * Purpose: GDALPamDataset with internal storage for georeferencing, with
6 * priority for PAM over internal georeferencing
7 * Author: Even Rouault <even dot rouault at spatialys.com>
8 *
9 ******************************************************************************
10 * Copyright (c) 2013, Even Rouault <even dot rouault at spatialys.com>
11 *
12 * Permission is hereby granted, free of charge, to any person obtaining a
13 * copy of this software and associated documentation files (the "Software"),
14 * to deal in the Software without restriction, including without limitation
15 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
16 * and/or sell copies of the Software, and to permit persons to whom the
17 * Software is furnished to do so, subject to the following conditions:
18 *
19 * The above copyright notice and this permission notice shall be included
20 * in all copies or substantial portions of the Software.
21 *
22 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
23 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
24 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
25 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
26 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
27 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
28 * DEALINGS IN THE SOFTWARE.
29 ****************************************************************************/
30
31#ifndef GDAL_GEOREF_PAM_DATASET_H_INCLUDED
32#define GDAL_GEOREF_PAM_DATASET_H_INCLUDED
33
34#ifndef DOXYGEN_SKIP
35
36#include "gdal_pam.h"
37
38class CPL_DLL GDALGeorefPamDataset : public GDALPamDataset
39{
40 protected:
41 bool bGeoTransformValid;
42 double adfGeoTransform[6];
43 OGRSpatialReference m_oSRS{};
44 int nGCPCount;
45 GDAL_GCP *pasGCPList;
46 char** m_papszRPC;
47 bool m_bPixelIsPoint;
48
49 int m_nGeoTransformGeorefSrcIndex;
50 int m_nGCPGeorefSrcIndex;
51 int m_nProjectionGeorefSrcIndex;
52 int m_nRPCGeorefSrcIndex;
53 int m_nPixelIsPointGeorefSrcIndex;
54
55 int GetPAMGeorefSrcIndex() const;
56 mutable bool m_bGotPAMGeorefSrcIndex;
57 mutable int m_nPAMGeorefSrcIndex;
58
59 bool m_bPAMLoaded;
60 char** m_papszMainMD;
61
62 CPL_DISALLOW_COPY_ASSIGN(GDALGeorefPamDataset)
63
64 public:
65 GDALGeorefPamDataset();
66 ~GDALGeorefPamDataset() override;
67
68 CPLErr TryLoadXML(char **papszSiblingFiles = nullptr) override;
69
70 CPLErr GetGeoTransform( double * ) override;
71
72 const OGRSpatialReference* GetSpatialRef() const override ;
73
74 int GetGCPCount() override;
75 const OGRSpatialReference* GetGCPSpatialRef() const override;
76 const GDAL_GCP *GetGCPs() override;
77
78 char **GetMetadata( const char * pszDomain = "" ) override;
79 const char *GetMetadataItem( const char * pszName,
80 const char * pszDomain = "" ) override;
81 CPLErr SetMetadata( char ** papszMetadata,
82 const char * pszDomain = "" ) override;
83 CPLErr SetMetadataItem( const char * pszName,
84 const char * pszValue,
85 const char * pszDomain = "" ) override;
86};
87
88#endif /* #ifndef DOXYGEN_SKIP */
89
90#endif /* GDAL_GEOREF_PAM_DATASET_H_INCLUDED */
PAM dataset.
Definition gdal_pam.h:120
int GetGCPCount() override
Get number of GCPs.
Definition gdalpamdataset.cpp:1347
CPLErr SetMetadata(char **papszMetadata, const char *pszDomain="") override
Set metadata.
Definition gdalpamdataset.cpp:1418
const char * GetMetadataItem(const char *pszName, const char *pszDomain="") override
Fetch single metadata item.
Definition gdalpamdataset.cpp:1457
const OGRSpatialReference * GetGCPSpatialRef() const override
Get output spatial reference system for GCPs.
Definition gdalpamdataset.cpp:1360
const GDAL_GCP * GetGCPs() override
Fetch GCPs.
Definition gdalpamdataset.cpp:1373
CPLErr GetGeoTransform(double *) override
Fetch the affine transformation coefficients.
Definition gdalpamdataset.cpp:1291
CPLErr SetMetadataItem(const char *pszName, const char *pszValue, const char *pszDomain="") override
Set single metadata item.
Definition gdalpamdataset.cpp:1437
char ** GetMetadata(const char *pszDomain="") override
Fetch metadata.
Definition gdalpamdataset.cpp:1521
const OGRSpatialReference * GetSpatialRef() const override
Fetch the spatial reference for this dataset.
Definition gdalpamdataset.cpp:1258
CPLErr
Error category.
Definition cpl_error.h:53
#define CPL_DISALLOW_COPY_ASSIGN(ClassName)
Helper to remove the copy and assignment constructors so that the compiler will not generate the defa...
Definition cpl_port.h:955