Home
last modified time | relevance | path

Searched defs:dms_parser (Results 1 – 1 of 1) sorted by relevance

/third_party/boost/boost/geometry/srs/projections/impl/
Ddms_parser.hpp95 struct dms_parser struct
103 static const int diff = 'a' - 'A';
107 static const char n_alter = N <= 'Z' ? N + diff : N - diff;
108 static const char e_alter = E <= 'Z' ? E + diff : E - diff;
109 static const char s_alter = S <= 'Z' ? S + diff : S - diff;
110 static const char w_alter = W <= 'Z' ? W + diff : W - diff;
112 static const char r_alter = R <= 'Z' ? R + diff : R - diff;
116 static const char d_alter =
120 struct dms_value
140 static inline void assign_dms(dms_value& dms, std::string& value, bool& has_value) in assign_dms()
[all …]