logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

Geo::GDAL::FFI::Object - A GDAL major object

Author

       Ari Jolma - Ari.Jolma at gmail.com

Description

       The base class for classes Driver, Dataset, Band, and Layer.

License

       This software is released under the Artistic License. See perlartistic.

Methods

GetDescription
        my $desc = $object->GetDescription;

   HasCapability
        my $has_cap = $object->HasCapability($capability);

   GetMetadataDomainList
        my @domains = $object->GetMetadataDomainList;

   GetMetadata
        my %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.

   GetMetadataItem
        my $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).

Name

       Geo::GDAL::FFI::Object - A GDAL major object

See Also

       Geo::GDAL::FFI

       Alien::gdal, FFI::Platypus, <http://www.gdal.org>

perl v5.40.0                                       2025-02-15                        Geo::GDAL::FFI::Object(3pm)

Synopsis

See Also