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

NAME

Alien::gdal - Compile GDAL, the Geographic Data Abstraction Library

BUILD STATUS

Requires Perl 5.10+

SYNOPSIS

    use Alien::gdal;

    use Env qw(@PATH);
    unshift @PATH, Alien::gdal->bin_dir;

    print Alien::gdal->dist_dir;

    #  assuming you have populated @args already
    my ($stdout, $stderr, $exit_code)
      = Alien::gdal->run_utility ('gdalwarp', @args);
    #  Note that this is currently experimental.
    #  Please report issues and solutions.  
    
    #  Access the GDAL data directory
    #  (note that not all system installs include it)
    my $path = Alien::gdal->data_dir;
    

DESCRIPTION

GDAL is the Geographic Data Abstraction Library. See http://www.gdal.org.

REPORTING BUGS

Please send any bugs, suggestions, or feature requests to https://github.com/shawnlaffan/perl-alien-gdal/issues.

SEE ALSO

Geo::GDAL

Geo::GDAL::FFI

Alien::geos::af

AUTHORS

Shawn Laffan, <shawnlaffan@gmail.com>

Jason Mumbulla (did all the initial work - see git log for details)

Ari Jolma

COPYRIGHT AND LICENSE

Copyright 2017- by Shawn Laffan and Jason Mumbulla

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