OGS
CoordinateSystem.h
Go to the documentation of this file.
1
10#pragma once
11
12#include <iosfwd>
13#include <string>
14
15namespace FileIO
16{
17namespace Gocad
18{
19
21{
22public:
23 bool parse(std::istream & in);
24
25 enum class ZPOSITIVE
26 {
27 Depth, // z is increasing downwards
28 Elevation // z is increasing upwards
29 };
30
31 std::string name;
32 std::string projection;
33 std::string datum;
37};
38
39std::ostream& operator<<(std::ostream& os, CoordinateSystem const& c);
40
41} // end namespace Gocad
42} // end namespace FileIO
std::ostream & operator<<(std::ostream &os, CoordinateSystem const &c)