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

    . gml_version => VERSION

    . version => DEFAULT

Accessors

$obj->gmlVersion

$obj->version

SEE ALSO

This module is part of Geo-ISO19139 distribution version 0.10, built on June 12, 2008. Website: http://perl.overmeer.net/geo/

LICENSE

Copyrights 2008 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://www.perl.com/perl/misc/Artistic.html