NAME
Geo::ISO19139::2005 - access to the iso-19139 standard
INHERITANCE
Geo::ISO19139::2005
is a Geo::GML
SYNOPSIS
use Geo::ISO19139;
my $gml = Geo::ISO19139->new('READER', version => '2005');
# see XML::Compile::Cache on how to use readers and writers
my $data = $gml->reader("gml:GridCoverage")->($xmlmsg);
my $xml = $gml->writer($sometype)->($doc, $perldata);
# or without help of the cache, XML::Compile::Schema
my $r = $gml->compile(READER => $sometype);
my $data = $r->($xml);
# overview (huge) on all defined elements
$gml->printIndex;
DESCRIPTION
Implementation of the first ISO19139 release, initiated in 2005 but dated 2007-04-17. The base class implements GML 3.2.1, which belongs to the spec. More in Geo::ISO19139
METHODS
Constructors
- Geo::ISO19139::2005->new('READER'|'WRITER'|'RW', %options)
-
-Option --Default gml_version 3.2.1 version 2005
Accessors
SEE ALSO
This module is part of Geo-ISO19139 distribution version 0.11, built on January 19, 2018. Website: http://perl.overmeer.net/CPAN/
LICENSE
Copyrights 2008,2018 by [Mark Overmeer]. For other contributors see ChangeLog.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. See http://dev.perl.org/licenses/