|
NAMEGeo::GDAL::FFI::Object - A GDAL major objectSYNOPSISDESCRIPTIONThe base class for classes Driver, Dataset, Band, and Layer.METHODSGetDescriptionmy $desc = $object->GetDescription; HasCapabilitymy $has_cap = $object->HasCapability($capability); GetMetadataDomainListmy @domains = $object->GetMetadataDomainList; GetMetadatamy %metadata = $object->GetMetadata($domain); Returns the object metadata of a given domain. my $metadata = $object->GetMetadata($domain); Returns the object metadata of a given domain in an anonymous hash. my %metadata = $object->GetMetadata; Returns the object metadata. my $metadata = $object->GetMetadata; Returns the object metadata in an anonymous hash. SetMetadata$object->SetMetadata($metadata, $domain); Sets the object metadata in a given domain. The metadata is in an anonymous hash. $object->SetMetadata($metadata); Sets the object metadata in the domains that are the keys of the hash $metadata references. The values of the hash are the metadata in anonymous hashes. GetMetadataItemmy $value = $object->GetMetadataItem($item, $domain) Gets the value of the metadata item in a domain (by default an empty string). SetMetadataItem$object->GetMetadataItem($item, $value, $domain) Sets the value of the metadata item in a domain (by default an empty string). LICENSEThis software is released under the Artistic License. See perlartistic.AUTHORAri Jolma - Ari.Jolma at gmail.comSEE ALSOGeo::GDAL::FFIAlien::gdal, FFI::Platypus, <http://www.gdal.org>
Visit the GSP FreeBSD Man Page Interface. |