28 #ifndef __TERRALIB_MAPTOOLS_INTERNAL_UTILS_H    29 #define __TERRALIB_MAPTOOLS_INTERNAL_UTILS_H    32 #include "../color/RGBAColor.h"    33 #include "../dataaccess/datasource/DataSource.h"    34 #include "../geometry/Enums.h"    35 #include "../geometry/Envelope.h"    36 #include "../raster/Raster.h"    67     class FeatureTypeStyle;
   146     TEMAPEXPORT void GetVisibleLayers(
const std::list<te::map::AbstractLayerPtr>& layers, std::list<te::map::AbstractLayerPtr>& visibleLayers);
   148     TEMAPEXPORT void GetVisibleLayers(
const std::list<te::map::AbstractLayer*>& layers, std::list<te::map::AbstractLayer*>& visibleLayers);
   237                                 const double& scale, 
bool* cancel);
   276 #endif // __TERRALIB_MAPTOOLS_INTERNAL_UTILS_H TEMAPEXPORT te::gm::Envelope GetSelectedExtent(const te::map::AbstractLayerPtr layer, int srid, bool onlyVisibles)
It calculates the extent of selected objects of the given layer in the given SRID. 
 
TEMAPEXPORT te::gm::GeomType GetGeomType(const te::map::AbstractLayerPtr &layer)
It gets the geometry type of the given layer. 
 
GeomType
Each enumerated type is compatible with a Well-known Binary (WKB) type code. 
 
boost::shared_ptr< DataSource > DataSourcePtr
 
TEMAPEXPORT te::gm::Envelope GetExtent(const te::map::AbstractLayerPtr &layer, int srid, bool onlyVisibles)
It calculates the extent of the given layer in the given SRID. 
 
A class that models the description of a dataset. 
 
The CoverageStyle defines the styling that is to be applied to a subset of Coverage data...
 
This is the base class for Layers. 
 
TEMAPEXPORT void DrawGeometries(te::da::DataSet *dataset, const std::size_t &gpos, Canvas *canvas, int fromSRID, int toSRID, te::common::TaskProgress *task=0)
It draws the data set geometries in the given canvas using the informed SRS. 
 
TEMAPEXPORT te::da::DataSet * DataSet2Memory(te::da::DataSet *dataset)
It creates a new In-Memory dataset with the items from the given dataset. 
 
This class can be used to inform the progress of a task. 
 
TEMAPEXPORT void GetDashStyle(const std::string &dasharray, std::vector< double > &style)
Converts a dasharray pattern coded by a string to a vector of double. 
 
TEMAPEXPORT te::rst::Raster * GetRaster(AbstractLayer *layer)
It gets the raster referenced by the given data set layer. 
 
TEMAPEXPORT void DrawRaster(te::rst::Raster *raster, Canvas *canvas, const te::gm::Envelope &bbox, int bboxSRID, const te::gm::Envelope &visibleArea, int srid, te::se::CoverageStyle *style, te::map::RasterContrast *rc, const double &scale, bool *cancel)
 
TEMAPEXPORT std::string GetUTMProj4FromZone(int zone)
Returns proj4 string with UTM projection in the specified zone (Only working for south). 
 
An Envelope defines a 2D rectangular region. 
 
The FeatureTypeStyle defines the styling that is to be applied to a dataset that can be viewed as a f...
 
An abstract class for raster data strucutures. 
 
TEMAPEXPORT te::gm::Envelope GetWorldBoxInPlanar(const te::gm::Envelope &worldBox, int srid)
It gets the requested envelope on a UTM planar projection. 
 
TEMAPEXPORT int CalculatePlanarZone(te::gm::Envelope latLongBox)
Calculates the UTM zone from a Geographic envelope. 
 
This class contains the parameters needed to apply dynamic contrast over a raster. 
 
A dataset is the unit of information manipulated by the data access module of TerraLib. 
 
TEMAPEXPORT void GetVisibleLayers(const te::map::AbstractLayerPtr &layer, std::list< te::map::AbstractLayerPtr > &visibleLayers)
It gets the visible layers of the given layer. 
 
TEMAPEXPORT te::rst::RasterProperty * GetRasterProperty(AbstractLayer *layer)
It gets the raster property referenced by the given data set layer. 
 
TEMAPEXPORT te::rst::Raster * GetExtentRaster(te::rst::Raster *raster, int w, int h, const te::gm::Envelope &bbox, int bboxSRID, const te::gm::Envelope &visibleArea, int srid)
 
boost::intrusive_ptr< AbstractLayer > AbstractLayerPtr