Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

geo::googleearth::pluggable::plugin::others(3pm) [debian man page]

Geo::GoogleEarth::Pluggable::Plugin::Others(3pm)	User Contributed Perl Documentation	  Geo::GoogleEarth::Pluggable::Plugin::Others(3pm)

NAME
Geo::GoogleEarth::Pluggable::Plugin::Others - Geo::GoogleEarth::Pluggable Others Plugin Methods SYNOPSIS
use Geo::GoogleEarth::Pluggable; my $document=Geo::GoogleEarth::Pluggable->new; my @point=$document->MultiPoint(%data); #() my $point=$document->MultiPoint(%data); #[] METHODS
Methods in this package are AUTOLOADed into the Geo::GoogleEarth::Pluggable::Folder namespace at runtime. MultiPoint my @point=$document->MultiPoint( name=>"Point", #SCALAR sprintf("%s (%s)", $name, $index) coordinates=>[{}, {}, ...], #CODE ($index, $point) #TODO#name=>["pt1", "pt2", ...], #ARRAY #TODO#name=>sub{sprintf("Point %s is a %s", shift, ref(shift))}, ); Note: Currently coordinates must be {lat=>$lat, lon=>$lon, alt=>$alt} TODO: Coordinates can be any format supported by Placemark->coordinates TODO
BUGS
Please log on RT and send to the geo-perl email list. SUPPORT
DavisNetworks.com supports all Perl applications including this package. AUTHOR
Michael R. Davis (mrdvt92) CPAN ID: MRDVT COPYRIGHT
This program is free software licensed under the... The BSD License The full text of the license can be found in the LICENSE file included with this module. SEE ALSO
Geo::GoogleEarth::Pluggable perl v5.14.2 2010-12-27 Geo::GoogleEarth::Pluggable::Plugin::Others(3pm)

Check Out this Related Man Page

Geo::GoogleEarth::Pluggable::Contrib::Point(3pm)	User Contributed Perl Documentation	  Geo::GoogleEarth::Pluggable::Contrib::Point(3pm)

NAME
Geo::GoogleEarth::Pluggable::Contrib::Point - Geo::GoogleEarth::Pluggable Point Object SYNOPSIS
use Geo::GoogleEarth::Pluggable; my $document=Geo::GoogleEarth::Pluggable->new(); $document->Point(); DESCRIPTION
Geo::GoogleEarth::Pluggable::Contrib::Point is a Geo::GoogleEarth::Pluggable::Placemark with a few other methods. USAGE
my $placemark=$document->Point(name=>"Point Name", lat=>$lat, lon=>$lon, alt=>$alt); CONSTRUCTOR
new my $placemark=$document->Point( name => "White House", lat => 38.89769, #signed decimal degrees WGS-84 lon => -77.036549, #signed decimal degrees WGS-84 alt => 30, #meters above ellipsoid WGS-84 ); METHODS
subnode lat Sets or returns latitude. The format is signed decimal degrees WGS-84. my $lat=$placemark->lat; lon Sets or returns longitude. The format is signed decimal degrees WGS-84. my $lon=$placemark->lon; alt Sets or returns altitude. The units are meters above the ellipsoid WGS-84. my $alt=$placemark->alt; Typically, Google Earth "snaps" Placemarks to the surface regardless of how the altitude is set. BUGS
Please log on RT and send to the geo-perl email list. SUPPORT
DavisNetworks.com supports all Perl applications including this package. AUTHOR
Michael R. Davis (mrdvt92) CPAN ID: MRDVT COPYRIGHT
This program is free software licensed under the... The BSD License The full text of the license can be found in the LICENSE file included with this module. SEE ALSO
Geo::GoogleEarth::Pluggable, XML::LibXML::LazyBuilder, Geo::GoogleEarth::Pluggable::Placemark perl v5.14.2 2010-12-27 Geo::GoogleEarth::Pluggable::Contrib::Point(3pm)
Man Page

We Also Found This Discussion For You

1. Shell Programming and Scripting

Perl - Emailing MULTIPLE files as attachment

Hi Guys, I would love an example as to how I can send multiple files in one email using perl. The file types are .csv I have read that mimencode is required? Is there any other way or is that it? Thanks :) (3 Replies)
Discussion started by: Tonka52
3 Replies