Rand Stats

GEOS

zef:bduggan

Actions Status Actions Status

NAME

GEOS - Raku bindings and wrappers for libgeos

SYNOPSIS

use GEOS::Reader;
use GEOS::Calculator 'c';

my $r = GEOS::Reader.new;
my $x = $r.read-wkt('POINT(1 1)');
my $y = $r.read-wkt('POINT(1 2)');
my $d = c.distance($x,$y);

say $d; # 1

DESCRIPTION

There are a few modules in this distribution: native bindings to libgeos, and high-level wrappers to various functions.

For documentation, please see the individual modules.

AUTHOR

Brian Duggan