NAME
Geo::Geos::Noding::BasicSegmentString - Represents a list of contiguous line segments, and supports noding the segments.
SYNOPSIS
use Geo::Geos::Coordinate;
use Geo::Geos::Noding::BasicSegmentString;
my $c1 = Geo::Geos::Coordinate->new(1,2);
my $c2 = Geo::Geos::Coordinate->new(5,2);
my $c3 = Geo::Geos::Coordinate->new(7,1);
my $seq = [$c1, $c2, $c3];
my $ss = Geo::Geos::Noding::BasicSegmentString->new($seq); # => isa 'Geo::Geos::Noding::BasicSegmentString'
Geo::Geos::Noding::BasicSegmentString->new($seq); # => isa 'Geo::Geos::Noding::SegmentString'
$ss->isClosed; # => ''
$ss->size; # => 3
$ss->getCoordinate(0); # => Geo::Geos::Coordinate->new(1,2)
my $c = $ss->getCoordinates->[0]; # => Geo::Geos::Coordinate->new(1,2)
$ss->toString; # => like qr/\QLINESTRING(1 2, 5 2, 7 1)\E/
$ss->getSegmentOctant(0); # => 0
SEE ALSO (C++ classes docs)
geos::noding::BasicSegmentString
SEE ALSO
Geo::Geos::Noding::SegmentString
AUTHOR
Ivan Baidakou <i.baydakov@crazypanda.ru>, Crazy Panda, CP Decision LTD
LICENSE
You may distribute this code under the same terms as Perl itself.