Utils.h
Go to the documentation of this file.
1 
2 /*!
3 \file terralib/mnt/core/Utils.h
4 
5 \brief Utility functions for MNT support.
6 */
7 
8 #ifndef __TERRALIB_MNT_INTERNAL_UTILS_H
9 #define __TERRALIB_MNT_INTERNAL_UTILS_H
10 
11 #include "Config.h"
12 #include "Enums.h"
13 
14 #include "../../common/UnitsOfMeasureManager.h"
15 
16 #include "../../dataaccess/dataset/DataSet.h"
17 #include "../../dataaccess/dataset/DataSetType.h"
18 #include "../../dataaccess/datasource/DataSource.h"
19 
20 #include "../../geometry/Coord2D.h"
21 #include "../../geometry/LineString.h"
22 #include "../../geometry/MultiLineString.h"
23 #include "../../geometry/MultiPoint.h"
24 #include "../../geometry/PointZ.h"
25 
26 
27 #ifndef MIN
28 #define MIN(x, y) ( ((x) < (y)) ? (x) : (y) )
29 #endif
30 
31 #ifndef MAX
32 #define MAX(x, y) ( ((x) > (y)) ? (x) : (y) )
33 #endif
34 
35 
36 namespace te
37 {
38  namespace mnt
39  {
40  size_t ReadPoints(std::string &inDsetName, te::da::DataSourcePtr &inDsrc, std::string &atrZ, double tol, te::gm::MultiPoint &mpt, std::string &geostype, te::gm::Envelope &env);
41 
42  size_t ReadSamples(std::string &inDsetName, te::da::DataSourcePtr &inDsrc, std::string &atrZ, double tol, double max, Simplify alg, te::gm::MultiPoint &mpt, te::gm::MultiLineString &isolines, std::string &geostype, te::gm::Envelope &env);
43 
44  double Distance(const te::gm::Coord2D &pt1, const te::gm::Coord2D &pt2);
45 
46  bool Equal(te::gm::PointZ &p1, te::gm::PointZ &p2, double &tol);
47 
48  //DouglasPeucker from TerraAmazon 4
49  te::gm::LineString* DouglasPeuckerTA(te::gm::LineString *lineIn, double simpFactor, double Zvalue);
50 
51  //DouglasPeucker from libgeos
52  te::gm::LineString* GEOS_DouglasPeucker(te::gm::LineString *ls, double snap, double Zvalue);
53 
54  TEMNTEXPORT te::gm::LineString* pointListSimplify(te::gm::LineString *ls, double snap, double maxdist, double Zvalue);
55 
57 
58  // Find center point of triangle using its vertices.
59  short findCenter(te::gm::PointZ* vert, double* pcx, double* pcy);
60 
63 
64  // Test Vertex values for valid and special cases, returns TRUE if normal, FALSE otherwise.
65  bool testVertexValues(double, te::gm::PointZ*);
66 
67  // Define intersections of contour with edges of triangle
68  bool defineInterTriangle(std::vector<te::gm::PointZ>&, te::gm::PointZ*, double );
69 
70  // Define intersection point of contour with edge between two points
71  bool defineInterEdge(std::vector<te::gm::PointZ>&, te::gm::PointZ&, te::gm::PointZ&, double);
72 
73  //Extract lines from pline and store connected ones in clinlist.
74  bool extractLines(std::vector<te::gm::PointZ> &pline, std::vector<te::gm::LineString> &clinlist, double scale);
75 
76  bool initLineVector(std::vector<te::gm::PointZ> &pline, std::vector<te::gm::PointZ> &vect);
77  bool assembLine(std::vector<te::gm::LineString> &linlout, std::vector<te::gm::PointZ> &vect);
78 
79  bool equalFptSpt(te::gm::PointZ & fpt, te::gm::PointZ &spt, double scale);
80 
83 
84  // Calculate Normal vector of Triangle
85  bool triangleNormalVector(te::gm::PointZ*, double*);
86 
87  bool normalizeVector(double*);
88 
89  bool onSegment(te::gm::PointZ& pt, te::gm::PointZ& fseg, te::gm::PointZ& lseg, double tol);
90 
92 
93  bool point3dListFilter(std::vector<te::gm::PointZ> &p3dl, std::vector<bool> &fixed, double tol);
94 
95  bool Least_square_fitting(double *vectx, double *vecty, short np, short deg, double *coef);
96 
97  bool Gauss_elimination(short m, short n, double mat[6][6]);
98 
99  bool SaveIso(std::string& outDsetName, te::da::DataSourcePtr &outDsrc, std::vector<te::gm::LineString> &isolist, std::vector<double> &guidevalues, int srid);
100 
101  void Save(te::da::DataSource* source, te::da::DataSet* result, te::da::DataSetType* outDsType);
102 
103  TEMNTEXPORT bool convertAngleToPlanar(double& val, te::common::UnitOfMeasurePtr planar, int type);
105 
106  TEMNTEXPORT void getMinMax(te::rst::Raster* inputRst, double &vmin, double &vmax);
107  }
108 }
109 
110 #endif
bool Least_square_fitting(double *vectx, double *vecty, short np, short deg, double *coef)
bool Equal(te::gm::PointZ &p1, te::gm::PointZ &p2, double &tol)
size_t ReadSamples(std::string &inDsetName, te::da::DataSourcePtr &inDsrc, std::string &atrZ, double tol, double max, Simplify alg, te::gm::MultiPoint &mpt, te::gm::MultiLineString &isolines, std::string &geostype, te::gm::Envelope &env)
boost::shared_ptr< DataSource > DataSourcePtr
Definition: DataSource.h:1435
Simplify
Definition: Enums.h:85
A class that models the description of a dataset.
Definition: DataSetType.h:72
bool normalizeVector(double *)
double Distance(const te::gm::Coord2D &pt1, const te::gm::Coord2D &pt2)
bool testVertexValues(double, te::gm::PointZ *)
bool extractLines(std::vector< te::gm::PointZ > &pline, std::vector< te::gm::LineString > &clinlist, double scale)
te::gm::Point Max(te::gm::Point &p1, te::gm::Point &p2)
bool Gauss_elimination(short m, short n, double mat[6][6])
#define TEMNTEXPORT
You can use this macro in order to export/import classes and functions from this module.
Definition: Config.h:41
An utility struct for representing 2D coordinates.
Definition: Coord2D.h:40
An abstract class for data providers like a DBMS, Web Services or a regular file. ...
Definition: DataSource.h:118
TEMNTEXPORT bool convertAngleToPlanar(double &val, te::common::UnitOfMeasurePtr planar, int type)
bool segInterPoint(te::gm::PointZ &pfr, te::gm::PointZ &pto, te::gm::PointZ &lfr, te::gm::PointZ &lto, te::gm::PointZ *pt)
short findCenter(te::gm::PointZ *vert, double *pcx, double *pcy)
bool point3dListFilter(std::vector< te::gm::PointZ > &p3dl, std::vector< bool > &fixed, double tol)
size_t ReadPoints(std::string &inDsetName, te::da::DataSourcePtr &inDsrc, std::string &atrZ, double tol, te::gm::MultiPoint &mpt, std::string &geostype, te::gm::Envelope &env)
TEMNTEXPORT bool convertPlanarToAngle(double &val, te::common::UnitOfMeasurePtr unit)
bool SaveIso(std::string &outDsetName, te::da::DataSourcePtr &outDsrc, std::vector< te::gm::LineString > &isolist, std::vector< double > &guidevalues, int srid)
MultiPoint is a GeometryCollection whose elements are restricted to points.
Definition: MultiPoint.h:50
A point with z-coordinate value.
Definition: PointZ.h:51
bool triangleNormalVector(te::gm::PointZ *, double *)
LineString is a curve with linear interpolation between points.
Definition: LineString.h:62
A point with x and y coordinate values.
Definition: Point.h:50
An Envelope defines a 2D rectangular region.
Definition: Envelope.h:51
TEMNTEXPORT void getMinMax(te::rst::Raster *inputRst, double &vmin, double &vmax)
An abstract class for raster data strucutures.
Definition: Raster.h:71
bool equalFptSpt(te::gm::PointZ &fpt, te::gm::PointZ &spt, double scale)
URI C++ Library.
void Save(te::da::DataSource *source, te::da::DataSet *result, te::da::DataSetType *outDsType)
MultiLineString is a MultiCurve whose elements are LineStrings.
bool onSegment(te::gm::PointZ &pt, te::gm::PointZ &fseg, te::gm::PointZ &lseg, double tol)
A dataset is the unit of information manipulated by the data access module of TerraLib.
Definition: DataSet.h:112
boost::shared_ptr< UnitOfMeasure > UnitOfMeasurePtr
bool assembLine(std::vector< te::gm::LineString > &linlout, std::vector< te::gm::PointZ > &vect)
int onSameSide(te::gm::Coord2D pt1, te::gm::Coord2D pt2, te::gm::Coord2D fseg, te::gm::Coord2D lseg)
bool initLineVector(std::vector< te::gm::PointZ > &pline, std::vector< te::gm::PointZ > &vect)
bool defineInterEdge(std::vector< te::gm::PointZ > &, te::gm::PointZ &, te::gm::PointZ &, double)
te::gm::Point Min(te::gm::Point &p1, te::gm::Point &p2)
short segIntersect(te::gm::PointZ &pfr, te::gm::PointZ &pto, te::gm::PointZ &lfr, te::gm::PointZ &lto)
double pointToSegmentDistance(te::gm::PointZ &fseg, te::gm::PointZ &lseg, te::gm::PointZ &pt, te::gm::PointZ *pti)
bool defineInterTriangle(std::vector< te::gm::PointZ > &, te::gm::PointZ *, double)
te::gm::LineString * GEOS_DouglasPeucker(te::gm::LineString *ls, double snap, double Zvalue)
TEMNTEXPORT te::gm::LineString * pointListSimplify(te::gm::LineString *ls, double snap, double maxdist, double Zvalue)
General enumerations.
te::gm::LineString * DouglasPeuckerTA(te::gm::LineString *lineIn, double simpFactor, double Zvalue)