Inheritance diagram for Geo::GDAL::Driver:

Public Class Methods | |
| list | Capabilities () |
Public Object Methods | |
| Rename (scalar NewName, scalar OldName) | |
| scalar | TestCapability (scalar cap) |
| scalar | Extension () |
| scalar | MIMEType () |
| list | CreationOptionList () |
| list | CreationDataTypes () |
| Geo::GDAL::Dataset | Create (scalar name, scalar xsize, scalar ysize, scalar bands=1, scalar type= 'Byte', hashref options=undef) |
| Geo::GDAL::Dataset | Copy (scalar name, scalar src, scalar strict=1, hashref options=undef) |
| Delete (scalar name) | |
Public Attributes | |
| ShortName | |
| LongName | |
| HelpTopic | |
| list Geo::GDAL::Driver::Capabilities | ( | ) |
@all_capabilities = Geo::GDAL::Driver::Capabilities; @capabilities_of_the_geotiff_driver = Geo::GDAL::Driver('GTiff')->Capabilities;
| Geo::GDAL::Dataset Geo::GDAL::Driver::Copy | ( | scalar | name, | |
| scalar | src, | |||
| scalar | strict = 1, |
|||
| hashref | options = undef | |||
| ) |
Create a new Geo::GDAL::Dataset as a copy of an existing dataset.
| name | ||
| src | A Geo::GDAL::Dataset object. | |
| strict | ||
| options | An anonymous hash of driver specific parameters. |
| Geo::GDAL::Dataset Geo::GDAL::Driver::Create | ( | scalar | name, | |
| scalar | xsize, | |||
| scalar | ysize, | |||
| scalar | bands = 1, |
|||
| scalar | type = 'Byte', |
|||
| hashref | options = undef | |||
| ) |
Create a GDAL dataset using this driver.
| name | ||
| xsize | ||
| ysize | ||
| bands | ||
| type | One of the data types this driver supports. | |
| options | An anonymous hash of driver specific parameters. |
$ds = Geo::GDAL::Dataset::Create(...arguments...);
| list Geo::GDAL::Driver::CreationDataTypes | ( | ) |
| list Geo::GDAL::Driver::CreationOptionList | ( | ) |
| Geo::GDAL::Driver::Delete | ( | scalar | name | ) |
| name |
| scalar Geo::GDAL::Driver::Extension | ( | ) |
| scalar Geo::GDAL::Driver::MIMEType | ( | ) |
| Geo::GDAL::Driver::Rename | ( | scalar | NewName, | |
| scalar | OldName | |||
| ) |
Rename (move) a GDAL dataset.
| NewName | String. | |
| OldName | String. |
| scalar Geo::GDAL::Driver::TestCapability | ( | scalar | cap | ) |
Test whether the driver has the specified capability.
| cap | A capability string (one of those returned by Capabilities). |
$driver->{HelpTopic}
$driver->{LongName}
$driver->{ShortName}
1.4.7