in reply to Re^2: Geo::Shapefile::Writer help
in thread Geo::Shapefile::Writer help
use List::Util qw(pairmap); my @coords = (86.925, 27.988, 86.5278, 27.744, 86.43, 27.365); my @pairs = pairmap { [ $a, $b ] } @coords; $shp_writer->add_shape( \@pairs, @attributes );
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: Geo::Shapefile::Writer help
by kjslover (Initiate) on Jan 29, 2016 at 14:58 UTC | |
by poj (Abbot) on Jan 29, 2016 at 16:13 UTC |