#include <gdal_pam.h>
Public Member Functions | |
virtual void | FlushCache (void) |
Flush all write cached data to disk. | |
virtual const char * | GetProjectionRef (void) |
Fetch the projection definition string for this dataset. | |
virtual CPLErr | SetProjection (const char *) |
Set the projection reference string for this dataset. | |
virtual CPLErr | GetGeoTransform (double *) |
Fetch the affine transformation coefficients. | |
virtual CPLErr | SetGeoTransform (double *) |
Set the affine transformation coefficients. | |
virtual int | GetGCPCount () |
Get number of GCPs. | |
virtual const char * | GetGCPProjection () |
Get output projection for GCPs. | |
virtual const GDAL_GCP * | GetGCPs () |
Fetch GCPs. | |
virtual CPLErr | SetGCPs (int nGCPCount, const GDAL_GCP *pasGCPList, const char *pszGCPProjection) |
Assign GCPs. | |
virtual CPLErr | SetMetadata (char **papszMetadata, const char *pszDomain="") |
Set metadata. | |
virtual CPLErr | SetMetadataItem (const char *pszName, const char *pszValue, const char *pszDomain="") |
Set single metadata item. | |
virtual char ** | GetMetadata (const char *pszDomain="") |
Fetch metadata. | |
virtual const char * | GetMetadataItem (const char *pszName, const char *pszDomain="") |
Fetch single metadata item. | |
virtual char ** | GetFileList (void) |
Fetch files forming dataset. | |
virtual CPLErr | CloneInfo (GDALDataset *poSrcDS, int nCloneInfoFlags) |
virtual CPLErr | IBuildOverviews (const char *pszResampling, int nOverviews, int *panOverviewList, int nListBands, int *panBandList, GDALProgressFunc pfnProgress, void *pProgressData) |
void | MarkPamDirty () |
GDALDatasetPamInfo * | GetPamInfo () |
int | GetPamFlags () |
void | SetPamFlags (int nValue) |
Protected Member Functions | |
virtual CPLXMLNode * | SerializeToXML (const char *) |
virtual CPLErr | XMLInit (CPLXMLNode *, const char *) |
virtual CPLErr | TryLoadXML () |
virtual CPLErr | TrySaveXML () |
CPLErr | TryLoadAux () |
CPLErr | TrySaveAux () |
virtual const char * | BuildPamFilename () |
void | PamInitialize () |
void | PamClear () |
void | SetPhysicalFilename (const char *) |
const char * | GetPhysicalFilename () |
void | SetSubdatasetName (const char *) |
const char * | GetSubdatasetName () |
Protected Attributes | |
int | nPamFlags |
GDALDatasetPamInfo * | psPam |
Friends | |
class | GDALPamRasterBand |
PAM support can be enabled in GDAL by setting the GDAL_PAM_ENABLED configuration option (via CPLSetConfigOption(), or the environment) to the value of YES.
In order to be able to record auxilary information about files on read-only media such as CDROMs or in directories where the user does not have write permissions, it is possible to enable the "PAM Proxy Database". When enabled the .aux.xml files are kept in a different directory, writable by the user.
To enable this, set the GDAL_PAM_PROXY_DIR configuration open to be the name of the directory where the proxies should be kept.
Drivers for physical file formats that wish to support persistent auxilary metadata in addition to that for the format itself should derive their dataset class from GDALPamDataset instead of directly from GDALDataset. The raster band classes should also be derived from GDALPamRasterBand.
They should also call something like this near the end of the Open() method:
poDS->SetDescription( poOpenInfo->pszFilename ); poDS->TryLoadXML();
The SetDescription() is necessary so that the dataset will have a valid filename set as the description before TryLoadXML() is called. TryLoadXML() will look for an .aux.xml file with the same basename as the dataset and in the same directory. If found the contents will be loaded and kept track of in the GDALPamDataset and GDALPamRasterBand objects. When a call like GetProjectionRef() is not implemented by the format specific class, it will fall through to the PAM implementation which will return information if it was in the .aux.xml file.
Drivers should also try to call the GDALPamDataset/GDALPamRasterBand methods as a fallback if their implementation does not find information. This allows using the .aux.xml for variations that can't be stored in the format. For instance, the GeoTIFF driver GetProjectionRef() looks like this:
if( EQUAL(pszProjection,"") ) return GDALPamDataset::GetProjectionRef(); else return( pszProjection );
So if the geotiff header is missing, the .aux.xml file will be consulted.
Similarly, if SetProjection() were called with a coordinate system not supported by GeoTIFF, the SetProjection() method should pass it on to the GDALPamDataset::SetProjection() method after issuing a warning that the information can't be represented within the file itself.
Drivers for subdataset based formats will also need to declare the name of the physical file they are related to, and the name of their subdataset before calling TryLoadXML().
poDS->SetDescription( poOpenInfo->pszFilename ); poDS->SetPhysicalFilename( poDS->pszFilename ); poDS->SetSubdatasetName( osSubdatasetName ); poDS->TryLoadXML();
void GDALPamDataset::FlushCache | ( | void | ) | [virtual] |
Flush all write cached data to disk.
Any raster (or other GDAL) data written via GDAL calls, but buffered internally will be written to disk.
Using this method does not prevent use from calling GDALClose() to properly close a dataset and ensure that important data not addressed by FlushCache() is written in the file.
This method is the same as the C function GDALFlushCache().
Reimplemented from GDALDataset.
char ** GDALPamDataset::GetFileList | ( | void | ) | [virtual] |
Fetch files forming dataset.
Returns a list of files believed to be part of this dataset. If it returns an empty list of files it means there is believed to be no local file system files associated with the dataset (for instance a virtual dataset). The returned file list is owned by the caller and should be deallocated with CSLDestroy().
The returned filenames will normally be relative or absolute paths depending on the path used to originally open the dataset.
This method is the same as the C GDALGetFileList() function.
Reimplemented from GDALDataset.
References VSIStatL().
int GDALPamDataset::GetGCPCount | ( | ) | [virtual] |
Get number of GCPs.
This method is the same as the C function GDALGetGCPCount().
Reimplemented from GDALDataset.
const char * GDALPamDataset::GetGCPProjection | ( | ) | [virtual] |
Get output projection for GCPs.
This method is the same as the C function GDALGetGCPProjection().
The projection string follows the normal rules from GetProjectionRef().
Reimplemented from GDALDataset.
const GDAL_GCP * GDALPamDataset::GetGCPs | ( | ) | [virtual] |
Fetch GCPs.
This method is the same as the C function GDALGetGCPs().
Reimplemented from GDALDataset.
CPLErr GDALPamDataset::GetGeoTransform | ( | double * | padfTransform | ) | [virtual] |
Fetch the affine transformation coefficients.
Fetches the coefficients for transforming between pixel/line (P,L) raster space, and projection coordinates (Xp,Yp) space.
Xp = padfTransform[0] + P*padfTransform[1] + L*padfTransform[2]; Yp = padfTransform[3] + P*padfTransform[4] + L*padfTransform[5];
In a north up image, padfTransform[1] is the pixel width, and padfTransform[5] is the pixel height. The upper left corner of the upper left pixel is at position (padfTransform[0],padfTransform[3]).
The default transform is (0,1,0,0,0,1) and should be returned even when a CE_Failure error is returned, such as for formats that don't support transformation to projection coordinates.
NOTE: GetGeoTransform() isn't expressive enough to handle the variety of OGC Grid Coverages pixel/line to projection transformation schemes. Eventually this method will be depreciated in favour of a more general scheme.
This method does the same thing as the C GDALGetGeoTransform() function.
padfTransform | an existing six double buffer into which the transformation will be placed. |
Reimplemented from GDALDataset.
char ** GDALPamDataset::GetMetadata | ( | const char * | pszDomain = "" |
) | [virtual] |
Fetch metadata.
The returned string list is owned by the object, and may change at any time. It is formated as a "Name=value" list with the last pointer value being NULL. Use the the CPL StringList functions such as CSLFetchNameValue() to manipulate it.
Note that relatively few formats return any metadata at this time.
This method does the same thing as the C function GDALGetMetadata().
pszDomain | the domain of interest. Use "" or NULL for the default domain. |
Reimplemented from GDALMajorObject.
const char * GDALPamDataset::GetMetadataItem | ( | const char * | pszName, | |
const char * | pszDomain = "" | |||
) | [virtual] |
Fetch single metadata item.
The C function GDALGetMetadataItem() does the same thing as this method.
pszName | the key for the metadata item to fetch. | |
pszDomain | the domain to fetch for, use NULL for the default domain. |
Reimplemented from GDALMajorObject.
References CPLFormFilename(), CPLGetPath(), GDALMajorObject::GetDescription(), and SetMetadataItem().
const char * GDALPamDataset::GetProjectionRef | ( | void | ) | [virtual] |
Fetch the projection definition string for this dataset.
Same as the C function GDALGetProjectionRef().
The returned string defines the projection coordinate system of the image in OpenGIS WKT format. It should be suitable for use with the OGRSpatialReference class.
When a projection definition is not available an empty (but not NULL) string is returned.
Reimplemented from GDALDataset.
CPLErr GDALPamDataset::SetGCPs | ( | int | nGCPCount, | |
const GDAL_GCP * | pasGCPList, | |||
const char * | pszGCPProjection | |||
) | [virtual] |
Assign GCPs.
This method is the same as the C function GDALSetGCPs().
This method assigns the passed set of GCPs to this dataset, as well as setting their coordinate system. Internally copies are made of the coordinate system and list of points, so the caller remains resposible for deallocating these arguments if appropriate.
Most formats do not support setting of GCPs, even foramts that can handle GCPs. These formats will return CE_Failure.
nGCPCount | number of GCPs being assigned. | |
pasGCPList | array of GCP structures being assign (nGCPCount in array). | |
pszGCPProjection | the new OGC WKT coordinate system to assign for the GCP output coordinates. This parameter should be "" if no output coordinate system is known. |
Reimplemented from GDALDataset.
CPLErr GDALPamDataset::SetGeoTransform | ( | double * | ) | [virtual] |
Set the affine transformation coefficients.
See GetGeoTransform() for details on the meaning of the padfTransform coefficients.
This method does the same thing as the C GDALSetGeoTransform() function.
padfTransform | a six double buffer containing the transformation coefficients to be written with the dataset. |
Reimplemented from GDALDataset.
CPLErr GDALPamDataset::SetMetadata | ( | char ** | papszMetadataIn, | |
const char * | pszDomain = "" | |||
) | [virtual] |
Set metadata.
The C function GDALSetMetadata() does the same thing as this method.
papszMetadata | the metadata in name=value string list format to apply. | |
pszDomain | the domain of interest. Use "" or NULL for the default domain. |
Reimplemented from GDALMajorObject.
CPLErr GDALPamDataset::SetMetadataItem | ( | const char * | pszName, | |
const char * | pszValue, | |||
const char * | pszDomain = "" | |||
) | [virtual] |
Set single metadata item.
The C function GDALSetMetadataItem() does the same thing as this method.
pszName | the key for the metadata item to fetch. | |
pszValue | the value to assign to the key. | |
pszDomain | the domain to set within, use NULL for the default domain. |
Reimplemented from GDALMajorObject.
Referenced by GetMetadataItem().
CPLErr GDALPamDataset::SetProjection | ( | const char * | ) | [virtual] |
Set the projection reference string for this dataset.
The string should be in OGC WKT or PROJ.4 format. An error may occur because of incorrectly specified projection strings, because the dataset is not writable, or because the dataset does not support the indicated projection. Many formats do not support writing projections.
This method is the same as the C GDALSetProjection() function.
pszProjection | projection reference string. |
Reimplemented from GDALDataset.