The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
=head1 NAME

Geo::WKT - Well Known Text representation of geometry information

=head1 INHERITANCE

 Geo::WKT
   is a Exporter

=head1 SYNOPSIS

=head1 DESCRIPTION

GIS application often communicate geographical structures in WKT
format, defined by the OpenGIS consortium.  This module translates
Geo::Point objects from and to this WKT.

=head1 FUNCTIONS

=head2 Parsing Well Known Text format (WKT)

$obj-E<gt>B<parse_wkt>(STRING, [PROJECTION])

=over 4

Parse any STRING into the applicable Geo::Shape structure.

=back

$obj-E<gt>B<parse_wkt_geomcol>(STRING, [PROJECTION])

=over 4

Convert a WKT string into Geo::Space objects, containing
the exterior and optionally some interior polygons.

=back

B<parse_wkt_linestring>(STRING, [PROJECTION])

=over 4

Convert a WKT string into one Geo::Point object.

=back

B<parse_wkt_point>(STRING, [PROJECTION])

=over 4

Convert a WKT string into one Geo::Point object.

=back

B<parse_wkt_polygon>(STRING, [PROJECTION])

=over 4

Convert a WKT string into one Geo::Surface objects, containing
the exterior and optionally some interior polygons.

=back

=head2 Constructing Well Known Text (WKT)

B<wkt_geomcollection>(OBJECTS)

=over 4

Whole bunch of unsorted geometries. You may specify one Geo::Space
or multiple things.

=back

B<wkt_linestring>(OBJECT|POINTS)

=over 4

A line string is a non-closed list ('string') of points.

=back

B<wkt_multilinestring>(OBJECTS|ARRAY-of-LINES|ARRAYS-of-ARRAY-OF-POINTS)

=over 4

Format a list of lines into WKT.  A LINE contains Geo::Point
objects or ARRAY-REFs to pairs. You may also provide a Geo::Line
or a Math::Polygon.

=back

B<wkt_multipoint>(OBJECT|POINTS)

=over 4

A set of points, which must be specified as list.  They can be stored in
a Geo::Space.

=back

B<wkt_multipolygon>(OBJECTS|ARRAY-OF-LINES|ARRAYS-OF-ARRAY-OF-POINTS)

=over 4

Format a list of closed lines into WKT.  A LINE contains Geo::Point
objects or ARRAY-REFs to pairs. You may also provide a Geo::Line
or a Math::Polygon.

=back

B<wkt_optimal>(OBJECT)

=over 4

Pass any Geo::Shape object, and the easiest representation is
returned.

=back

B<wkt_point>((X,Y)|ARRAY|GEOPOINT)

=over 4

Format one point into WKT format.

=back

B<wkt_polygon>((LIST of POINTS|Geo::Line|ARRAY-of-POINTS) |Geo::Surface)

=over 4

Format one polygon (exterior with optional interiors) into WKT format.
An ARRAY contains Geo::Point objects or ARRAY-REFs to pairs. You
may also provide a Geo::Line or Geo::Surface OBJECTS.

example: 

 wkt_polygon [2,3],[4,5];   #list of points for outer
 wkt_polygon $gp1, $gp2;    #list of Geo::Points for outer
 wkt_polygon [[2,3],[4,5]]; #array of points for outer
 wkt_polygon [$gp1, $gp2];  #array with Geo::Points for outer

 my $outer = Geo::Line->new;
 wkt_polygon $outer;
 wkt_polygon $outer, $inner1, $inner2;
 wkt_polygon [$gp1,$gp2],[$gp3,$gp4,...];

=back

=head1 SEE ALSO

This module is part of Geo-WKT distribution version 0.03,
built on May 25, 2009. Website: F<http://perl.overmeer.net/geo>
All modules in this suite:
L</Geo::Point>,
L</Geo::Proj4>,
L</Geo::WKT>,
L</Math::Polygon>,
L</Geo::GML>,
L</Geo::ISO19139>,
L</Geo::EOP>,
L</Geo::Format::Envisat>, and
L</Geo::Format::Landsat>.

Please post questions or ideas to the mailinglist at
F<http://geo-perl@list.hut.fi>

=head1 LICENSE

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