Fire Core
8.0.0.alpha
GIS framework per tutti gli usi
|
#include <LineString.hpp>
Membri pubblici | |
LineString () | |
costruttore di default della classe il LineString e' creato con PrecisionModel = FLOATING-Scale 0.0 e SRID = UnknownSrid, senza Point | |
LineString (PrecisionModel *precisionModel, int srid) | |
costruttore con PrecisionModel e SRID il LineString e' creato senza Point Continua... | |
LineString (CoordinateSequence *coordinateSequence, PrecisionModel *precisionModel, int srid) | |
costruttore con CoordinateSequence, PrecisionModel e SRID il LineString e' creato con le coordinate 2D (x, y, DoubleNotANumber) /3D (x, y, z) inizializzate con in valori delle CoordinateSequence in ingresso Continua... | |
LineString (CoordinateSequence *coordinateSequence) | |
costruttore con CoordinateSequence il LineString e' creato con PrecisionModel = FLOATING-Scale 0.0 e SRID = UnknownSrid, con le coordinate 2D (x, y, DoubleNotANumber) /3D (x, y, z) inizializzate con in valori delle CoordinateSequence in ingresso Continua... | |
LineString (const LineString &lineString) | |
Costruttore di copia. Continua... | |
LineString & | operator= (const LineString &lineString) |
Operatore di assegnamento. Continua... | |
virtual | ~LineString () |
distruttore della classe | |
const CoordinateSequence & | getCoordinates () const |
void | setCoordinates (CoordinateSequence *coordinates) |
bool | isClosed () const |
bool | isRing () const |
const Coordinate & | getCoordinateAt (std::size_t index) const |
const Coordinate & | getFirstCoordinate () const |
const Coordinate & | getLastCoordinate () const |
void | addCoordinate (Coordinate *coordinate) |
void | setCoordinateAt (Coordinate *coordinate, std::size_t index) |
void | insertCoordinateAt (Coordinate *coordinate, std::size_t index) |
void | removeCoordinateAt (std::size_t index) |
double | getLength () const |
double | getArea () const |
void | reverse () |
bool | normalize () |
std::size_t | getCoordinatesCount () const |
GeometryType::GeometryType | getGeometryType () const |
bool | isEmpty () const |
DimensionType::DimensionType | getDimensionType () const |
Geometry * | clone () const |
Membri pubblici ereditati da fire::gear::geom::Geometry | |
Geometry () | |
Geometry (PrecisionModel *precisionModel, int srid) | |
Geometry (const PrecisionModel &precisionModel, int srid) | |
Geometry (const Geometry &geometry) | |
Costruttore di copia. Continua... | |
virtual Geometry & | operator= (const Geometry &geometry) |
Operatore di assegnamento. Continua... | |
virtual | ~Geometry () |
PrecisionModel * | getPrecisionModel () const |
void | setPrecisionModel (PrecisionModel *precisionModel) |
int | getSrid () const |
void | setSrid (const int &value) |
bool | isSimple () const |
bool | isValid () const |
Envelope * | getEnvelope () |
Metodo che restituisce l' envelope della geoemtria. Continua... | |
double | getMaxY () const |
Metodo che restituisce il max y dell' envelope della geoemtria, se min y > max y significa che l' envelope e' nullo. Continua... | |
double | getMaxX () const |
Metodo che restituisce il max x dell' envelope della geoemtria, se min x > max x significa che l' envelope e' nullo. Continua... | |
double | getMinY () const |
Metodo che restituisce il max x dell' envelope della geoemtria, se min x > max x significa che l' envelope e' nullo. Continua... | |
double | getMinX () const |
Metodo che restituisce il min x dell' envelope della geoemtria, se min x > max x significa che l' envelope e' nullo. Continua... | |
Point * | getCentroid () const |
Point * | getInteriorPoint () const |
virtual std::string | toString () const |
virtual std::string | toWkt (bool oldStyle=false, int dimension=3, int decimalPrecision=-1) const |
virtual std::string | toJson (bool onlyGeom=true, bool pretty=false) const |
virtual void | toWkb (std::ostream &outputStream, const int dimension=3, const int newByteOrder=Geometry::getByteOrderOnMachine(), const bool includeSRID=false) const |
virtual bool | isUpdated () const |
metodo per sapere se i dati della geometria in cache sono aggiornati Continua... | |
void | invalidateUpdated () |
metodo per impostare a NON AGGORNATI i dati della geometria in cache | |
fire::gear::geom::event::GeometryEvent & | getEvent () |
void | beforeUpdateOperations () |
metodo per eseguire tutte le operazino necessarie prima della modifica della geometria Al momento e' un metodo public da richiamare esplicitamente. In particolare lancia l' evento BeforeUpdate per le operazioni di aggiornamento degli indici spaziali dei gruppi su cui e' inserita la geoemtria Qualora si volesse rendere l' operazione automatica il metodo deve essere reso private e si deve richiamare ovunque e' presente il metodo invalidateUpdated() | |
void | afterUpdateOperations () |
metodo per eseguire tutte le operazino necessarie dopo della modifica della geometria Al momento e' un metodo public da richiamare esplicitamente. In particolare lancia l' evento AfterUpdate per le operazioni di aggiornamento degli indici spaziali dei gruppi su cui e' inserita la geoemtria Qualora si volesse rendere l' operazione automatica il metodo deve essere reso private e si deve sostituire al metodo invalidateUpdated() ovunque e' presente In tal caso all' interno di afterUpdateOperations deve essere aggiunto invalidateUpdated() | |
virtual Geometry * | intersection (const Geometry &other) const |
Geometry * | Union (const Geometry &other) const |
virtual bool | disjoint (const Geometry &other) const |
virtual bool | touches (const Geometry &other) const |
virtual bool | intersects (const Geometry &other) const |
virtual bool | crosses (const Geometry &other) const |
virtual bool | within (const Geometry &other) const |
virtual bool | contains (const Geometry &other) const |
virtual bool | overlaps (const Geometry &other) const |
virtual bool | relate (const Geometry &other, const std::string &intersectionPattern) const |
virtual bool | equals (const Geometry &other) const |
bool | covers (const Geometry &other) const |
bool | coveredBy (const Geometry &other) const |
void | beforeDestroy () |
Membri pubblici ereditati da fire::gear::Entity | |
Entity () | |
Entity (const Entity &entity) | |
Entity & | operator= (const Entity &entity) |
virtual | ~Entity () |
virtual vectorGeomType | getGeometries () |
virtual iterator | begin () |
virtual const_iterator | begin () const |
virtual iterator | end () |
virtual const_iterator | end () const |
virtual reverse_iterator | rbegin () |
virtual const_reverse_iterator | rbegin () const |
virtual reverse_iterator | rend () |
virtual const_reverse_iterator | rend () const |
virtual geom::Envelope * | getEnvelope (int srid) |
gear::event::EntityEvent & | getEvent () |
Membri pubblici ereditati da fire::Object | |
Object () | |
Costruttore. | |
Object (const Object &object) | |
Costruttore di copia. Continua... | |
fire::Object & | operator= (const fire::Object &object) |
Operatore di assegnamento. Continua... | |
virtual | ~Object () |
Distruttore. | |
virtual fire::Class < fire::Object > * | getClass () const |
Restituisce la classe dell'oggetto. Continua... | |
virtual bool | equals (const Object &object) const |
Restituisce l'indicazione se l'oggetto è uguale ad un altro oggetto. Continua... | |
virtual bool | operator== (const Object &object) const |
Operatore di uguaglianza. Continua... | |
std::size_t | hashCode () const |
Restituisce il codice dell'oggetto. Continua... | |
void | notify () const |
Notifica. | |
void | notifyAll () const |
Notifica tutti. | |
void | wait () const |
Aspetta. | |
void | waitFor (std::size_t timeout) const |
Aspetta per un determinato tempo (in millisecondi) Continua... | |
void | waitFor (std::size_t timeout, int nanos) const |
Aspetta per un determinato tempo (in millisecondi) Continua... | |
virtual bool | operator< (const Object &object) const |
Operatore di minoranza. Continua... | |
Membri protetti | |
void | loadJsonValueGeometry (Json::Value &value) const |
void | loadJsonValueCoordinates (Json::Value &value) const |
virtual void | setCoordinatesFromJsonValue (Json::Value &value) |
bool | isZ_DoubleNotANumber () const |
metodo per sapere se la geometria e' a 2D o 3D Continua... | |
Membri protetti ereditati da fire::gear::Entity | |
void | addGeometry (geom::Geometry *geometry) |
void | removeGeometry (geom::Geometry *geometry) |
Membri protetti ereditati da fire::Object | |
Object * | clone () const |
Duplica l'oggetto. Continua... | |
void | finalize () |
Finalizza l'oggetto. | |
Attributi protetti | |
std::auto_ptr< CoordinateSequence > | coordinates |
bool | allowedRepeated |
Attributi protetti ereditati da fire::gear::geom::Geometry | |
fire::gear::geom::event::GeometryEvent | geometryEvent |
Attributi protetti ereditati da fire::Object | |
boost::mutex | mutex |
Variabile per la sincronizzazione dell'oggetto. | |
Friend | |
class | Polygon |
class | MultiLineString |
Altri membri ereditati | |
Tipi pubblici ereditati da fire::gear::Entity | |
typedef std::vector < geom::Geometry * > | vectorGeomType |
typedef std::vector < geom::Geometry * >::iterator | iterator |
typedef std::vector < geom::Geometry * > ::const_iterator | const_iterator |
typedef std::vector < geom::Geometry * > ::reverse_iterator | reverse_iterator |
typedef std::vector < geom::Geometry * > ::const_reverse_iterator | const_reverse_iterator |
Tipi pubblici ereditati da fire::Object | |
typedef boost::unique_lock < boost::mutex > | LockGuard |
Guardia per la sincronizzazione dell'oggetto. | |
NOT YET DOCUMENTED
fire::gear::geom::LineString::LineString | ( | PrecisionModel * | precisionModel, |
int | srid | ||
) |
costruttore con PrecisionModel e SRID il LineString e' creato senza Point
precisionModel | |
srid |
InvalidArgumentException | se la precisionModel e' NULL |
fire::gear::geom::LineString::LineString | ( | CoordinateSequence * | coordinateSequence, |
PrecisionModel * | precisionModel, | ||
int | srid | ||
) |
costruttore con CoordinateSequence, PrecisionModel e SRID il LineString e' creato con le coordinate 2D (x, y, DoubleNotANumber) /3D (x, y, z) inizializzate con in valori delle CoordinateSequence in ingresso
coordinateSequence | |
precisionModel | |
srid |
InvalidArgumentException | se la precisionModel e' NULL oppure se coordinateSequence e' NULL |
|
explicit |
costruttore con CoordinateSequence il LineString e' creato con PrecisionModel = FLOATING-Scale 0.0 e SRID = UnknownSrid, con le coordinate 2D (x, y, DoubleNotANumber) /3D (x, y, z) inizializzate con in valori delle CoordinateSequence in ingresso
coordinateSequence |
InvalidArgumentException | se coordinateSequence e' NULL |
fire::gear::geom::LineString::LineString | ( | const LineString & | lineString | ) |
Costruttore di copia.
lineString |
void fire::gear::geom::LineString::addCoordinate | ( | Coordinate * | coordinate | ) |
NOT YET DOCUMENTED
coordinate |
NOT YET DOCUMENTED
|
virtual |
NOT YET DOCUMENTED
NOT YET DOCUMENTED
Implementa fire::gear::geom::Geometry.
|
virtual |
NOT YET DOCUMENTED
NOT YET DOCUMENTED
Implementa fire::gear::geom::Geometry.
const Coordinate& fire::gear::geom::LineString::getCoordinateAt | ( | std::size_t | index | ) | const |
NOT YET DOCUMENTED
index |
NOT YET DOCUMENTED
NOT YET DOCUMENTED
const CoordinateSequence& fire::gear::geom::LineString::getCoordinates | ( | ) | const |
NOT YET DOCUMENTED
NOT YET DOCUMENTED
|
virtual |
NOT YET DOCUMENTED
NOT YET DOCUMENTED
Implementa fire::gear::geom::Geometry.
|
virtual |
NOT YET DOCUMENTED
NOT YET DOCUMENTED
Implementa fire::gear::geom::Geometry.
const Coordinate& fire::gear::geom::LineString::getFirstCoordinate | ( | ) | const |
NOT YET DOCUMENTED
NOT YET DOCUMENTED
|
virtual |
NOT YET DOCUMENTED
NOT YET DOCUMENTED
Implementa fire::gear::geom::Geometry.
const Coordinate& fire::gear::geom::LineString::getLastCoordinate | ( | ) | const |
NOT YET DOCUMENTED
NOT YET DOCUMENTED
|
virtual |
NOT YET DOCUMENTED
NOT YET DOCUMENTED
Implementa fire::gear::geom::Geometry.
void fire::gear::geom::LineString::insertCoordinateAt | ( | Coordinate * | coordinate, |
std::size_t | index | ||
) |
NOT YET DOCUMENTED
coordinate |
NOT YET DOCUMENTED
index |
NOT YET DOCUMENTED
bool fire::gear::geom::LineString::isClosed | ( | ) | const |
NOT YET DOCUMENTED
NOT YET DOCUMENTED
|
virtual |
NOT YET DOCUMENTED
NOT YET DOCUMENTED
Implementa fire::gear::geom::Geometry.
bool fire::gear::geom::LineString::isRing | ( | ) | const |
NOT YET DOCUMENTED
NOT YET DOCUMENTED
|
protectedvirtual |
metodo per sapere se la geometria e' a 2D o 3D
Implementa fire::gear::geom::Geometry.
|
protected |
NOT YET DOCUMENTED
value |
NOT YET DOCUMENTED
|
protectedvirtual |
NOT YET DOCUMENTED
value |
NOT YET DOCUMENTED
Implementa fire::gear::geom::Geometry.
|
virtual |
LineString& fire::gear::geom::LineString::operator= | ( | const LineString & | lineString | ) |
Operatore di assegnamento.
lineString |
void fire::gear::geom::LineString::removeCoordinateAt | ( | std::size_t | index | ) |
NOT YET DOCUMENTED
index |
NOT YET DOCUMENTED
NOT YET DOCUMENTED
void fire::gear::geom::LineString::reverse | ( | ) |
NOT YET DOCUMENTED
void fire::gear::geom::LineString::setCoordinateAt | ( | Coordinate * | coordinate, |
std::size_t | index | ||
) |
NOT YET DOCUMENTED
coordinate |
NOT YET DOCUMENTED
index |
NOT YET DOCUMENTED
void fire::gear::geom::LineString::setCoordinates | ( | CoordinateSequence * | coordinates | ) |
NOT YET DOCUMENTED
coordinates |
NOT YET DOCUMENTED
|
protectedvirtual |
NOT YET DOCUMENTED
value |
NOT YET DOCUMENTED
Implementa fire::gear::geom::Geometry.
|
protected |
NOT YET DOCUMENTED
|
protected |
NOT YET DOCUMENTED