NAME
    Geo::JSON - Perl OO interface for geojson

VERSION
    version 0.001

SYNOPSIS
        use Geo::JSON;
    
        my $obj = Geo::JSON->from_json( $json );

DESCRIPTION
    Convert to and from geojson using Perl objects. See the individual
    object classes for more details.

    Currently in development - feedback welcome.

    Currently supports 2 or 3 dimensions (longitude, latitude, altitude). If
    there is a case for increasing this to support a higher or arbitrary
    number please let me know.

GEOJSON SPECIFICATION
    See: <http://www.geojson.org/geojson-spec.html>

OBJECTS
    *   Geo::JSON::Point

    *   Geo::JSON::MultiPoint

    *   Geo::JSON::LineString

    *   Geo::JSON::MultiLineString

    *   Geo::JSON::Polygon

    *   Geo::JSON::MultiPolygon

    *   Geo::JSON::GeometryCollection

    *   Geo::JSON::Feature

    *   Geo::JSON::FeatureCollection

METHODS
  from_json
        my $obj = Geo::JSON->from_json( $json );

    Takes a geojson string, returns the object it represents.

SUPPORT
  Bugs / Feature Requests
    Please report any bugs or feature requests through the issue tracker at
    <https://github.com/mjemmeson/geo-json/issues>. You will be notified
    automatically of any progress on your issue.

  Source Code
    This is open source software. The code repository is available for
    public review and contribution under the terms of the license.

    <https://github.com/mjemmeson/geo-json>

      git clone git://github.com/mjemmeson/geo-json.git

AUTHOR
    Michael Jemmeson <mjemmeson@cpan.org>

COPYRIGHT AND LICENSE
    This software is copyright (c) 2013 by Michael Jemmeson
    <mjemmeson@cpan.org>.

    This is free software; you can redistribute it and/or modify it under
    the same terms as the Perl 5 programming language system itself.

