GDAL
gdal_mdreader.h
1 /******************************************************************************
2  * $Id$
3  *
4  * Project: GDAL Core
5  * Purpose: Read metadata (mainly the remote sensing imagery) from files of
6  * different providers like DigitalGlobe, GeoEye etc.
7  * Author: Dmitry Baryshnikov, polimax@mail.ru
8  *
9  ******************************************************************************
10  * Copyright (c) 2014-2015, NextGIS info@nextgis.ru
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_MDREADER_H_INCLUDED
32 #define GDAL_MDREADER_H_INCLUDED
33 
34 #include "cpl_port.h"
35 #include "gdal_priv.h"
36 
37 #define MD_DOMAIN_IMD "IMD"
38 #define MD_DOMAIN_RPC "RPC"
39 #define MD_DOMAIN_IMAGERY "IMAGERY"
40 #define MD_DOMAIN_DEFAULT ""
42 #define MD_NAME_ACQDATETIME "ACQUISITIONDATETIME"
43 #define MD_NAME_SATELLITE "SATELLITEID"
44 #define MD_NAME_CLOUDCOVER "CLOUDCOVER"
45 #define MD_NAME_MDTYPE "METADATATYPE"
47 #define MD_DATETIMEFORMAT "%Y-%m-%d %H:%M:%S"
48 #define MD_CLOUDCOVER_NA "999"
54 #define RPC_ERR_BIAS "ERR_BIAS"
55 #define RPC_ERR_RAND "ERR_RAND"
56 #define RPC_LINE_OFF "LINE_OFF"
57 #define RPC_SAMP_OFF "SAMP_OFF"
58 #define RPC_LAT_OFF "LAT_OFF"
59 #define RPC_LONG_OFF "LONG_OFF"
60 #define RPC_HEIGHT_OFF "HEIGHT_OFF"
61 #define RPC_LINE_SCALE "LINE_SCALE"
62 #define RPC_SAMP_SCALE "SAMP_SCALE"
63 #define RPC_LAT_SCALE "LAT_SCALE"
64 #define RPC_LONG_SCALE "LONG_SCALE"
65 #define RPC_HEIGHT_SCALE "HEIGHT_SCALE"
66 #define RPC_LINE_NUM_COEFF "LINE_NUM_COEFF"
67 #define RPC_LINE_DEN_COEFF "LINE_DEN_COEFF"
68 #define RPC_SAMP_NUM_COEFF "SAMP_NUM_COEFF"
69 #define RPC_SAMP_DEN_COEFF "SAMP_DEN_COEFF"
70 
71 /* Optional */
72 #define RPC_MIN_LONG "MIN_LONG"
73 #define RPC_MIN_LAT "MIN_LAT"
74 #define RPC_MAX_LONG "MAX_LONG"
75 #define RPC_MAX_LAT "MAX_LAT"
76 
77 /* Pleiades Neo nomenclature */
78 #define RPC_LAT_NUM_COEFF "LAT_NUM_COEFF"
79 #define RPC_LAT_DEN_COEFF "LAT_DEN_COEFF"
80 #define RPC_LON_NUM_COEFF "LON_NUM_COEFF"
81 #define RPC_LON_DEN_COEFF "LON_DEN_COEFF"
82 
87 typedef enum {
88  MDR_None = 0x00000000,
89  MDR_DG = 0x00000001,
90  MDR_GE = 0x00000002,
91  MDR_OV = 0x00000004,
92  MDR_PLEIADES = 0x00000008,
93  MDR_SPOT = 0x00000010,
94  MDR_RDK1 = 0x00000020,
95  MDR_LS = 0x00000040,
96  MDR_RE = 0x00000080,
97  MDR_KOMPSAT = 0x00000100,
98  MDR_EROS = 0x00000200,
99  MDR_ALOS = 0x00000400,
100  MDR_ANY = MDR_DG | MDR_GE | MDR_OV | MDR_PLEIADES | MDR_SPOT | MDR_RDK1 |
101  MDR_LS | MDR_RE | MDR_KOMPSAT | MDR_EROS | MDR_ALOS
102 } MDReaders;
103 
107 class CPL_DLL GDALMDReaderBase{
108 
110 
111 public:
112  GDALMDReaderBase(const char *pszPath, char **papszSiblingFiles);
113  virtual ~GDALMDReaderBase();
114 
120  virtual char ** GetMetadataDomain(const char *pszDomain);
126  virtual bool FillMetadata(GDALMultiDomainMetadata* poMDMD);
132  virtual bool HasRequiredFiles() const = 0;
138  virtual char** GetMetadataFiles() const = 0;
139 protected:
144  virtual void LoadMetadata();
150  virtual GIntBig GetAcquisitionTimeFromString(const char* pszDateTime);
160  virtual char** ReadXMLToList(CPLXMLNode* psNode, char** papszList,
161  const char* pszName = "");
171  virtual char** AddXMLNameValueToList(char** papszList, const char *pszName,
172  const char *pszValue);
173 protected:
175  char **m_papszIMDMD = nullptr;
176  char **m_papszRPCMD = nullptr;
177  char **m_papszIMAGERYMD = nullptr;
178  char **m_papszDEFAULTMD = nullptr;
179  bool m_bIsMetadataLoad = false;
181 };
182 
188 class CPL_DLL GDALMDReaderManager{
189 
191 
192 public:
194  virtual ~GDALMDReaderManager();
195 
206  virtual GDALMDReaderBase* GetReader(const char *pszPath,
207  char **papszSiblingFiles,
208  GUInt32 nType = MDR_ANY);
209 protected:
211  GDALMDReaderBase *m_pReader = nullptr;
213 };
214 
215 // misc
216 CPLString CPLStrip(const CPLString& osString, const char cChar);
217 CPLString CPLStripQuotes(const CPLString& osString);
218 char** GDALLoadRPBFile( const CPLString& osFilePath );
219 char** GDALLoadRPCFile( const CPLString& osFilePath );
220 char** GDALLoadIMDFile( const CPLString& osFilePath );
221 bool GDALCheckFileHeader(const CPLString& soFilePath,
222  const char * pszTestString,
223  int nBufferSize = 256);
224 
225 CPLErr GDALWriteRPBFile( const char *pszFilename, char **papszMD );
226 CPLErr GDALWriteRPCTXTFile( const char *pszFilename, char **papszMD );
227 CPLErr GDALWriteIMDFile( const char *pszFilename, char **papszMD );
228 
229 #endif //GDAL_MDREADER_H_INCLUDED
Convenient string class based on std::string.
Definition: cpl_string.h:320
The base class for all metadata readers.
Definition: gdal_mdreader.h:107
virtual bool HasRequiredFiles() const =0
Determine whether the input parameter correspond to the particular provider of remote sensing data co...
virtual char ** GetMetadataFiles() const =0
Get metadata file names.
The metadata reader main class.
Definition: gdal_mdreader.h:188
GDALMDReaderManager()
GDALMDReaderManager()
CPLErr
Error category.
Definition: cpl_error.h:53
Core portability definitions for CPL.
unsigned int GUInt32
Unsigned int32 type.
Definition: cpl_port.h:195
#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:927
long long GIntBig
Large signed integer type (generally 64-bit integer type).
Definition: cpl_port.h:230
C++ GDAL entry points.
Document node structure.
Definition: cpl_minixml.h:70