|
NAMEGeo::GDAL::FFI::Layer - A collection of vector features in GDALSYNOPSISDESCRIPTIONA set of (vector) features having a same schema (the same Defn object). Obtain a layer object by the CreateLayer or GetLayer method of a vector dataset object.METHODSGetDefnmy $defn = $layer->GetDefn; Returns the FeatureDefn object for this layer. ResetReading$layer->ResetReading; GetNextFeaturemy $feature = $layer->GetNextFeature; GetFeaturemy $feature = $layer->GetFeature($fid); SetFeature$layer->SetFeature($feature); CreateFeature$layer->CreateFeature($feature); DeleteFeature$layer->DeleteFeature($fid); GetExtent $layer->GetExtent(); $layer->GetExtent(1);Returns an array ref with [minx, miny, maxx, maxy]. Argument is a boolean to force calculation even if it is expensive.Intersection, Union, SymDifference, Identity, Update, Clip, Erase$result = $layer-><Method>($method, $args); Runs the <method> algorithm between layer and method layer. Named arguments are the following.
LICENSEThis software is released under the Artistic License. See perlartistic.AUTHORAri Jolma - Ari.Jolma at gmail.comSEE ALSOGeo::GDAL::FFIAlien::gdal, FFI::Platypus, <http://www.gdal.org>
Visit the GSP FreeBSD Man Page Interface. |