Previous: Transformation from spatial to geographical coordinates, Up: Data structures and algorithms
g3::Modelg3::model documentation shall come here ...
namespace GNU_gama { namespace g3 {
class Model {
public:
typedef GNU_gama::PointBase<g3::Point> PointBase;
typedef GNU_gama::ObservationData<g3::Observation> ObservationData;
PointBase *points;
ObservationData *obs;
GNU_gama::Ellipsoid ellipsoid;
Model();
~Model();
Point* get_point(const Point::Name&);
void write_xml(std::ostream& out) const;
void pre_linearization();
}}