/usr/include/terralib/kernel/TeTin.h is in libterralib-dev 4.0.0-5ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 | /************************************************************************************
TerraLib - a library for developing GIS applications.
Copyright © 2001-2007 INPE and Tecgraf/PUC-Rio.
This code is part of the TerraLib library.
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
You should have received a copy of the GNU Lesser General Public
License along with this library.
The authors reassure the license terms regarding the warranties.
They specifically disclaim any warranties, including, but not limited to,
the implied warranties of merchantability and fitness for a particular purpose.
The library provided hereunder is on an "as is" basis, and the authors have no
obligation to provide maintenance, support, updates, enhancements, or modifications.
In no event shall INPE and Tecgraf / PUC-Rio be held liable to any party for direct,
indirect, special, incidental, or consequential damages arising out of the use
of this library and its documentation.
*************************************************************************************/
/*! \file TeTin.h
\brief This file provides support for a TIN structure
*/
#ifndef __TERRALIB_INTERNAL_TIN_H
#define __TERRALIB_INTERNAL_TIN_H
#include "TeGeometry.h"
#include "TeLayer.h"
#include "TeQuerier.h"
#include "TeDatabase.h"
#include <list>
#include <set>
/** @} */
/** @defgroup MathConst Mathematical constants and macro definitions for use in Tin
@{
*/
const double TeTinBIGFLOAT = TeMAXFLOAT / 10.; //!< Near Maximum float value - TeMAXFLOAT / 10.
//! Tin Vertex types
//enum TeTinVertexType
//{ NORMALVERTEX = 0, ONCONTOURVERTEX = 1, ONBREAKLINEVERTEX = 0x10 };
enum TeTinVertexType
{ NORMALVERTEX = 0, ONCONTOURVERTEX = 1, ONBOXVERTEX = 2, ONBREAKLINEVERTEX = 0x10 };
//! A basic class for handling vertex of TIN
/*!
\sa TeGeometry TeMeasure
*/
class TL_DLL TeTinVertex : public TeGeomSingle<TeCoord2D>, public TeMeasure
{
public:
//! Empty constructor
TeTinVertex() : TeMeasure ( TeMAXFLOAT ), oneEdge_ (-1) {}
//! Constructor with parameters
TeTinVertex( TeCoord2D xy, double value, TeTinVertexType type,
long edge ) :
TeGeomSingle<TeCoord2D> (xy), TeMeasure ( value ),
type_ (type), oneEdge_ ( edge )
{ if ( ! xy.tooBig() ) TeGeometry::setBox(TeBox(xy,xy)); }
// -- Methods
//
//! Returns TRUE if a TeTinVertex is equal to other
bool operator== (const TeTinVertex& other) const
{
if((value_ == other.value_) && (type_ == other.type_) )
{
TeCoord2D p1 = location();
TeCoord2D p2 = other.location();
return p1==p2;
}
return false;
}
long oneEdge ()
{ return oneEdge_; }
void setOneEdge (long oneEdge)
{ oneEdge_ = oneEdge; }
TeTinVertexType type ()
{ return type_; }
void setType (TeTinVertexType type)
{ type_ = type; }
void value (double value)
{ value_ = value; }
double value ()
{ return value_; }
TeGeomRep elemType() { return TeSAMPLES; }
private:
TeTinVertexType type_;
long oneEdge_;
};
//! A basic class for handling a std::set of TeTinVertex
class TL_DLL TeTinVertexSet : public TeGeomComposite <TeTinVertex>
{
public:
// -- Constructors
TeTinVertexSet() {}
// -- Methods
bool loadFromFile (std::string &fileName);
TeGeomRep elemType() { return TeSAMPLES; }
};
//! Tin Edges type
enum TeTinEdgeType
{ NORMALEDGE, ONCONTOUREDGE, ONBREAKLINEEDGE };
//! A basic class for handling edges of a TIN
/*!
\sa TeGeometry
*/
class TL_DLL TeTinEdge : public TeGeometry
{
public:
// -- Constructors
TeTinEdge() {}
TeTinEdge(long from, long to, long left, long right,
TeTinEdgeType type) :
from_ (from), to_ (to), left_ (left), right_ (right), type_ (type)
{}
// -- Methods
//! Returns TRUE if a TeTinEdge is equal to other
bool operator== (const TeTinEdge& other) const
{
if( (to_ == other.to_) && (from_ == other.from_) &&
(left_ == other.left_) && (right_ == other.right_) &&
(type_ == other.type_) )
return true;
return false;
}
long from ()
{ return from_; }
long to ()
{ return to_; }
void setVertices (long from, long to)
{
from_ = from;
to_ = to;
}
void swapVertices ()
{
long aux = from_;
from_ = to_;
to_ = aux;
}
long left ()
{ return left_; }
long right ()
{ return right_; }
void setTriangles (long left, long right)
{
left_ = left;
right_ = right;
}
void swapTriangles ()
{
long aux = left_;
left_ = right_;
right_ = aux;
}
void exchangeTriangle ( long t1, long t2 )
{
if (left_ == t1 )
left_ = t2;
else
right_ = t2;
}
void exchangeVertex ( long v1, long v2 )
{
if (from_ == v1 )
from_ = v2;
else
to_ = v2;
}
TeTinEdgeType type ()
{ return type_; }
void setType (TeTinEdgeType type)
{ type_ = type; }
TeGeomRep elemType() { return TeSAMPLES; }
private:
long from_, to_;
long left_, right_;
TeTinEdgeType type_;
};
//! A basic class for handling a std::set of TeTinEdge
class TL_DLL TeTinEdgeSet : public TeGeomComposite<TeTinEdge>
{
public:
// -- Constructors
TeTinEdgeSet() {}
// -- Methods
bool loadFromFile (std::string &fileName);
TeGeomRep elemType() { return TeSAMPLES; }
};
//! TeTinTriangle: A class for handling a TIN triangle
class TL_DLL TeTinTriangle : public TeGeometry
{
public:
// -- Constructors
TeTinTriangle()
{
triEdges_[0] = -1;
triEdges_[1] = -1;
triEdges_[2] = -1;
}
TeTinTriangle(long first, long second, long third)
{
triEdges_[0] = first;
triEdges_[1] = second;
triEdges_[2] = third;
}
// -- Methods
//! Returns TRUE if a TeTinTriangle is equal to other
bool operator== (const TeTinTriangle& other) const
{
if( (triEdges_[0] == other.triEdges_[0]) &&
(triEdges_[1] == other.triEdges_[1]) &&
(triEdges_[2] == other.triEdges_[2]) )
return true;
return false;
}
void setEdges (long first, long second, long third)
{
triEdges_[0] = first;
triEdges_[1] = second;
triEdges_[2] = third;
}
//! Return triangle edges ids
/*!
\param first first edge
\param second second edge
\param third third edge
*/
void edges (long& first, long& second, long& third)
{
first = triEdges_[0];
second = triEdges_[1];
third = triEdges_[2];
}
long edgeAt (short num)
{
if ((num > -1) && (num < 3))
return triEdges_[num];
else
return -1;
}
TeGeomRep elemType() { return TeSAMPLES; }
private:
long triEdges_[3];
};
//! TeTinTriangle: A class for handling a std::set of TIN triangles
class TL_DLL TeTinTriangleSet : public TeGeomComposite<TeTinTriangle>
{
public:
// -- Constructors
TeTinTriangleSet() {}
// -- Methods
bool loadFromFile (std::string &fileName);
TeGeomRep elemType() { return TeSAMPLES; }
};
//! A class to handle a TIN
class TL_DLL TeTin
{
public:
// -- Constructors
TeTin() {}
TeTin(TeBox & /* box */) {}
// -- Methods
void clear()
{ vertexSet_.clear(); triangleSet_.clear(); edgeSet_.clear();}
TeBox box()
{ return vertexSet_.box(); }
bool createInitialTriangles(TeBox &box);
bool insertLineSamples ( TeContourLine& line );
bool loadFromFile(std::string &fileName);
bool getLines(TeLineSet &lineSet);
bool isEmpty ()
{ return ( vertexSet_.empty() && triangleSet_.empty() &&
edgeSet_.empty() ); }
TeTinEdge& edge (long i)
{ return edgeSet_[i]; }
TeTinVertex& vertex (long i)
{ return vertexSet_[i]; }
TeTinTriangle& triangle (long i)
{ return triangleSet_[i]; }
typedef TeTinVertexSet::iterator TeTinVertexIterator;
TeTinVertexIterator vertexBegin()
{ return vertexSet_.begin(); }
TeTinVertexIterator vertexEnd()
{ return vertexSet_.end(); }
typedef TeTinEdgeSet::iterator TeTinEdgeIterator;
TeTinEdgeIterator edgeBegin()
{ return edgeSet_.begin(); }
TeTinEdgeIterator edgeEnd()
{ return edgeSet_.end(); }
typedef TeTinTriangleSet::iterator TeTinTriangleIterator;
TeTinTriangleIterator triangleBegin()
{ return triangleSet_.begin(); }
TeTinTriangleIterator triangleEnd()
{ return triangleSet_.end(); }
bool triangleContainsPoint(TeTinTriangle& t, TeCoord2D& pt);
bool triangleContainsPoint(long t, TeCoord2D& pt)
{ return triangleContainsPoint(triangleSet_[t], pt); }
long edgeWithVertexDiffFromEdge(long t, long v, long e);
long oneTriangleWithVertex(long vertex);
long oneEdgeWithVertex(long vertex);
long edgeOppVertex(TeTinTriangle& triangle, long vertex);
long edgeOppVertex(long triangle, long vertex)
{ return edgeOppVertex(triangleSet_[triangle], vertex); }
long vertexOppEdge(long triangle, long edge);
bool vertexEdges(long vertex, std::list<long> &edges);
bool vertexOppEdges(long vertex, std::list<long> &edges);
bool vertexOppEdges(long v, std::list<long> &triset, std::list<long> &edges);
bool vertexOppVertices(long vertex, std::list<long> &vertices);
bool vertexSecondNeighVertices(long v, list<long> &vertices);
bool vertexTriangles(long vertex, std::list<long> &triangles);
bool triangle3Neighbors(long t, long& neighbor0, long& neighbor1, long& neighbor2);
long triangleAt (TeCoord2D& pt);
bool triangleVertices(TeTinTriangle& t, long& vertex0, long& vertex1, long& vertex2);
bool triangleVertices(long t, long& vertex0, long& vertex1, long& vertex2)
{ return this->triangleVertices(triangleSet_[t], vertex0, vertex1, vertex2); }
long triangleVertexAt(long t, long vertex);
bool triangle3DPoints(TeTinTriangle& t, TeCoord2D& pt0, TeCoord2D& pt1,
TeCoord2D& pt2, double& val0, double& val1, double& val2);
bool triangle3DPoints(long t, TeCoord2D& pt0, TeCoord2D& pt1, TeCoord2D& pt2,
double& val0, double& val1, double& val2)
{ return triangle3DPoints( triangleSet_[t], pt0, pt1, pt2, val0, val1, val2); }
bool trianglePoints(TeTinTriangle& t, TeCoord2D& pt0, TeCoord2D& pt1, TeCoord2D& pt2);
bool trianglePoints(long t, TeCoord2D& pt0, TeCoord2D& pt1, TeCoord2D& pt2)
{ return trianglePoints( triangleSet_[t], pt0, pt1, pt2); }
bool twoNewTriangles(long t, long v, std::set<long>& triangles);
long duplicateTriangle(long t, long n, long v, std::set<long>& triangles);
bool dupNeighTriangle (long t, long e, long v, std::set<long>& triangles);
void testDelaunayForVertex(long v, std::set<long>& triangles);
bool testDelaunayAt(long t, long v, std::set<long>& triangles);
bool swapEdges( long t, long tv, long ai );
bool insertPoint(TeSample& xyz)
{ return insertPoint ( xyz.location().x(),xyz.location().y(),xyz.value() ); }
bool insertPoint(double x, double y, double value);
bool edgesInterBySegment( TeCoord2D& pf, TeCoord2D& pn, std::list<long> &aiset, std::list<long> &viset );
bool insertSegment( TeCoord2D& pf, TeCoord2D& pn );
void convexize ();
bool isEdgeTriangle (long t);
int sizeTriangles()
{return triangleSet_.size();}
int sizeVertex()
{return vertexSet_.size();}
TeGeomRep elemType() { return TeSAMPLES; }
//! Creates TIN
/*!
\param sampleSet SampleSet
\param contourSet ContourLineSet
*/
bool createTIN(TeSampleSet& sampleSet, TeContourLineSet& contourSet);
//! Creates TIN
/*!
\param inputLayer_ptr layer
\param ps PolygonSet
*/
bool createTIN(TeLayer* inputLayer_ptr, TePolygonSet& ps);
//! Creates TIN from point's layer
/*!
\param inputLayer_ptr layer
*/
bool createTIN(TeLayer* inputLayer_ptr);
//! Creates a attributes table
/*!
\param attTable attributes table
\param db current database
\param layer layer
*/
bool createAttrTable(TeTable& attTable, TeDatabase* db, TeLayer* layer);
//! Creates polygons with points of triangles
/*!
\param ps PolygonSet
\param attTable attributes table
\param t triangle's number
\param pt0 triangle's point 0
\param pt1 triangle's point 1
\param pt2 triangle's point 2
\param val0 point's 0 value
\param val1 point's 1 value
\param val2 point's 2 value
*/
bool createPolygon(TePolygonSet ps, TeTable& attTable, int t, TeCoord2D& pt0,
TeCoord2D& pt1, TeCoord2D& pt2, double& val0, double& val1,
double& val2);
//! Creates polygons with points of triangles
/*!
\param ps PolygonSet
\param attTable attributes table
\param t triangle's number
\param pt0 triangle's point 0
\param pt1 triangle's point 1
\param pt2 triangle's point 2
\param val0 point's 0 value
\param val1 point's 1 value
\param val2 point's 2 value
\param slope slope's value of triangle
*/
bool createPolygon(TePolygonSet ps, TeTable& attTable, int t, TeCoord2D& pt0,
TeCoord2D& pt1, TeCoord2D& pt2, double& val0, double& val1,
double& val2, double& slope, double& aspect);
//! Add polygons in the layer and save attributes table in the database
/*!
\param db current database
\param layer layer
\param ps PolygonSet
\param attTable attributes table
*/
bool saveTIN(TeDatabase* db, TeLayer* layer, TePolygonSet& ps,
TeTable& attTable);
//! Add points in the layer and save attributes table in the database
/*!
\param db current database
\param layer layer
\param ps PointSet
\param attTable attributes table
*/
bool saveVertexTIN(TeDatabase* db, TeLayer* layer, TePointSet& ps,
TeTable& attTable);
//! Saves TIN in the database
/*!
\param db current database
\param outLayerName layer name that will be created
\param tablename attributes table name that will be created
*/
bool saveTINdb(TeDatabase* db, string& outLayerName, string& tablename);
//! Saves vertex of TIN in the database
/*!
\param db current database
\param outLayerName layer name that will be created
\param tablename attributes table name that will be created
*/
bool saveVertexTINdb(TeDatabase* db, string& outLayerName, string& tablename);
//! Deletes vertex ONBOXVERTEX and re-triangular TIN
void borderUp();
//! Saves TIN in SPRING file format
/*!
\param name File's name
*/
void writeTriangleEdgesSPRFile (std::string& name, TeRaster* raster);
//! Calculates the area of triangle
/*!
\param t TeTinTriangle object
\param area area of triangle
*/
void areaTriangle (TeTinTriangle& t, float& area); //necessita testar o metodo de calculo de area do TeGeometryAlgorithms
//! Calculates the slope of triangle
/*!
\param t TeTinTriangle object
\param slope slope of triangle
\param slopetype type of slope (g = degres or r = radian)
*/
void slopeTriangle (TeTinTriangle& t, double& slope, char slopetype);
//! Calculates the aspect of triangle
/*!
\param t TeTinTriangle object
\param aspect aspect of triangle
*/
void aspectTriangle (TeTinTriangle& t, double& aspect);
//! Creates a PointSet object with vertex of TIN
/*!
\param ps PointSet object
\param atttable attributes table
\param layer layer
\param db current database
*/
bool createPointSet(TePointSet& ps, TeTable& atttable, TeLayer* layer, TeDatabase* db);
//! Creates a sample object with vertex of TIN
/*!
\param sample SampleSet object
*/
bool createSampleSet(TeSampleSet& sample);
//! Calculates the gradient of triangle
/*!
\param t TeTinTriangle object
\param gradtype type of gradient (s = slope or a = aspect)
\param slopetype type of slope (g = degres or r = radian)
*/
double triangleGradient(TeTinTriangle& t, char gradtype, char slopetype);
//! Calculates the normal
/*!
\param t TeTinTriangle object
\param nvector normal vector
*/
bool normalTriangle(TeTinTriangle& t, std::vector<double>& nvector); // calculo da normal (adaptado do SPRING)
//! Calculates the lines and the columns intercepted by a triangle
/*!
\param raster pointer to a raster
\param t current triangle
\param fline first line of the raster
\param lline last line of the raster
\param fcol first column of the raster
\param lcol last column of the raster
*/
//Testado apenas para imagem. Necessita testar com grade.
bool defineInterLinesColumns(TeRaster* raster, TeTinTriangle t, int& fline, int& lline, int& fcol, int& lcol);
//! Fills the grid locations, inside a triangle, with a zvalue linearly evaluated
/*!
\param raster pointer to a raster
\param band current band
\param t current triangle
\param fline first line of the raster
\param lline last line of the raster
\param fcol first column of the raster
\param lcol last column of the raster
*/
//Testado apenas para imagem. Necessita testar com grade.
void linearInterpolation(TeRaster* raster, int band, TeTinTriangle t, int fline, int lline, int fcol, int lcol);
//! This function interpolates the average weighted by the inverse of the distance
/*!
\param pt point coordinates
\param z point's value
*/
bool interpolationPoint(TeCoord2D& pt, double& z);
//! Calculates the slope and orientation on the point
/*!
\param pt point coordinates
\param s slope on the point
\param a orientation on the point
*/
bool slopeaspectPoint(TeCoord2D& pt,double& s,double& a);//Calculo de declividade e orientacao no ponto
bool vertexOncontour(long& v);
private:
TeTinVertexSet vertexSet_;
TeTinTriangleSet triangleSet_;
TeTinEdgeSet edgeSet_;
};
#endif
|