|
NAMEGeo::ShapeFile::Point - Geo::ShapeFile utility class.SYNOPSISuse Geo::ShapeFile::Point; use Geo::ShapeFile; my $point = Geo::ShapeFile::Point->new(X => 12345, Y => 54321); ABSTRACTThis is a utility class, used by Geo::ShapeFile. DESCRIPTIONThis is a utility class, used by Geo::ShapeFile to represent point data, you should see the Geo::ShapeFile documentation for more information.EXPORTNothing.IMPORT NOTEThis module uses overloaded operators to allow you to use == or eq to compare two point objects. By default points are considered to be equal only if their X, Y, Z, and M attributes are equal. If you want to exclude the Z or M attributes when comparing, you should use comp_includes_z or comp_includes_m when importing the object. Note that you must do this before you load the Geo::ShapeFile module, or it will pass it's own arguments to import, and you will get the default behavior:DO: use Geo::ShapeFile::Point comp_includes_m => 0, comp_includes_z => 0; use Geo::ShapeFile; DONT: use Geo::ShapeFile; use Geo::ShapeFile::Point comp_includes_m => 0, comp_includes_z => 0; (Geo::ShapeFile already imported Point for you, so it has no effect here) METHODS
REPORTING BUGSPlease send any bugs, suggestions, or feature requests to <https://github.com/shawnlaffan/Geo-ShapeFile/issues>.SEE ALSOGeo::ShapeFileAUTHORJason Kohles, <email@jasonkohles.com>Shawn Laffan, <shawnlaffan@gmail.com> COPYRIGHT AND LICENSECopyright 2002-2013 by Jason KohlesCopyright 2014 by Shawn Laffan This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
Visit the GSP FreeBSD Man Page Interface. |