libosmscout
0.1
|
#include <Way.h>
Public Member Functions | |
const Point & | GetBack () const |
Id | GetBackId () const |
GeoBox | GetBoundingBox () const |
bool | GetCenter (GeoCoord ¢er) const |
const GeoCoord & | GetCoord (size_t index) const |
const FeatureInstance & | GetFeature (size_t idx) const |
size_t | GetFeatureCount () const |
FeatureValue * | GetFeatureValue (size_t idx) const |
const FeatureValueBuffer & | GetFeatureValueBuffer () const |
FileOffset | GetFileOffset () const |
const Point & | GetFront () const |
Id | GetFrontId () const |
Id | GetId (size_t index) const |
FileOffset | GetNextFileOffset () const |
bool | GetNodeIndexByNodeId (Id id, size_t &index) const |
ObjectFileRef | GetObjectFileRef () const |
const Point & | GetPoint (size_t index) const |
Id | GetSerial (size_t index) const |
TypeInfoRef | GetType () const |
bool | HasFeature (size_t idx) const |
bool | Intersects (const GeoBox &boundingBox) const |
Returns true if the bounding box of the object intersects the given bounding box. More... | |
bool | IsCircular () const |
bool | IsValid () const |
void | Read (const TypeConfig &typeConfig, FileScanner &scanner) |
Read the data from the given FileScanner. More... | |
void | ReadOptimized (const TypeConfig &typeConfig, FileScanner &scanner) |
Read the data from the given FileScanner. More... | |
void | SetFeatures (const FeatureValueBuffer &buffer) |
void | SetType (const TypeInfoRef &type) |
void | UnsetFeature (size_t idx) |
Way ()=default | |
void | Write (const TypeConfig &typeConfig, FileWriter &writer) const |
Writes the data to the given FileWriter. More... | |
void | WriteOptimized (const TypeConfig &typeConfig, FileWriter &writer) const |
Writes the data to the given FileWriter. More... | |
Public Attributes | |
GeoBox | bbox |
Precomputed (cache) bounding box. More... | |
std::vector< Point > | nodes |
Note that way nodes, bbox and segments fields are public for simple manipulation. More... | |
std::vector< SegmentGeoBox > | segments |
Precomputed (cache) segment bounding boxes for optimisation. More... | |
|
default |
|
inline |
|
inline |
|
inline |
References osmscout::GetBoundingBox(), and osmscout::GeoBox::IsValid().
Referenced by osmscout::DescriptionService::GetDescription().
bool osmscout::Way::GetCenter | ( | GeoCoord & | center | ) | const |
References nodes, and osmscout::GeoCoord::Set().
|
inline |
|
inline |
References osmscout::FeatureValueBuffer::GetType().
|
inline |
References osmscout::FeatureValueBuffer::GetType().
|
inline |
References osmscout::FeatureValueBuffer::GetValue().
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
Referenced by GetNodeIndexByNodeId().
|
inline |
bool osmscout::Way::GetNodeIndexByNodeId | ( | Id | id, |
size_t & | index | ||
) | const |
|
inline |
References osmscout::refWay.
Referenced by osmscout::DescriptionService::GetDescription().
|
inline |
|
inline |
|
inline |
|
inline |
References osmscout::FeatureValueBuffer::HasFeature().
|
inline |
Returns true if the bounding box of the object intersects the given bounding box.
boundingBox | bounding box to test for intersection |
References osmscout::GetBoundingBox().
|
inline |
|
inline |
void osmscout::Way::Read | ( | const TypeConfig & | typeConfig, |
FileScanner & | scanner | ||
) |
Read the data from the given FileScanner.
IOException |
References bbox, osmscout::FileScanner::GetPos(), osmscout::TypeConfig::GetWayTypeIdBytes(), osmscout::TypeConfig::GetWayTypeInfo(), nodes, osmscout::FileScanner::Read(), osmscout::FeatureValueBuffer::Read(), osmscout::FileScanner::ReadTypeId(), segments, and osmscout::FeatureValueBuffer::SetType().
void osmscout::Way::ReadOptimized | ( | const TypeConfig & | typeConfig, |
FileScanner & | scanner | ||
) |
Read the data from the given FileScanner.
Node Ids are not read.
IOException |
References bbox, osmscout::FileScanner::GetPos(), osmscout::TypeConfig::GetWayTypeIdBytes(), osmscout::TypeConfig::GetWayTypeInfo(), nodes, osmscout::FileScanner::Read(), osmscout::FeatureValueBuffer::Read(), osmscout::FileScanner::ReadTypeId(), segments, and osmscout::FeatureValueBuffer::SetType().
|
inline |
References osmscout::FeatureValueBuffer::Set().
|
inline |
References osmscout::FeatureValueBuffer::SetType().
|
inline |
References osmscout::FeatureValueBuffer::FreeValue().
void osmscout::Way::Write | ( | const TypeConfig & | typeConfig, |
FileWriter & | writer | ||
) | const |
Writes the data to the given FileWriter.
IOException |
References osmscout::FeatureValueBuffer::GetType(), osmscout::TypeConfig::GetWayTypeIdBytes(), nodes, osmscout::FileWriter::Write(), osmscout::FeatureValueBuffer::Write(), and osmscout::FileWriter::WriteTypeId().
void osmscout::Way::WriteOptimized | ( | const TypeConfig & | typeConfig, |
FileWriter & | writer | ||
) | const |
Writes the data to the given FileWriter.
Node Ids are not written.
IOException |
References osmscout::FeatureValueBuffer::GetType(), osmscout::TypeConfig::GetWayTypeIdBytes(), nodes, osmscout::FileWriter::Write(), osmscout::FeatureValueBuffer::Write(), and osmscout::FileWriter::WriteTypeId().
GeoBox osmscout::Way::bbox |
Precomputed (cache) bounding box.
Referenced by Read(), and ReadOptimized().
std::vector<Point> osmscout::Way::nodes |
Note that way nodes, bbox and segments fields are public for simple manipulation.
User that modify it is responsible to keep these values in sync! You should not rely on segments and bbox, it is just a cache used some algorithms. It may be empty/invalid! List of nodes
Referenced by GetCenter(), GetNodeIndexByNodeId(), Read(), ReadOptimized(), Write(), and WriteOptimized().
std::vector<SegmentGeoBox> osmscout::Way::segments |
Precomputed (cache) segment bounding boxes for optimisation.
Referenced by Read(), and ReadOptimized().