diff options
Diffstat (limited to 'server/src/api.cppm')
| -rw-r--r-- | server/src/api.cppm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/server/src/api.cppm b/server/src/api.cppm index 0bb0868..7166ad0 100644 --- a/server/src/api.cppm +++ b/server/src/api.cppm | |||
| @@ -8,7 +8,7 @@ export module routemon:api; | |||
| 8 | import std; | 8 | import std; |
| 9 | import :datex2; | 9 | import :datex2; |
| 10 | import :geo.wgs84; | 10 | import :geo.wgs84; |
| 11 | import :geo.multizonal; | 11 | import :geo.utm.multizonal; |
| 12 | import :gpx; | 12 | import :gpx; |
| 13 | import :log; | 13 | import :log; |
| 14 | import :time; | 14 | import :time; |
| @@ -81,9 +81,9 @@ class handler | |||
| 81 | constexpr static auto const min_distance_ = 5.0; | 81 | constexpr static auto const min_distance_ = 5.0; |
| 82 | 82 | ||
| 83 | using blse_index_value = std::shared_ptr<datex2::road_closure>; | 83 | using blse_index_value = std::shared_ptr<datex2::road_closure>; |
| 84 | using blse_index = geo::multizonal::linestring_rtree<blse_index_value>; | 84 | using blse_index = geo::utm::multizonal::linestring_rtree<blse_index_value>; |
| 85 | using bpe_index_value = std::shared_ptr<datex2::road_closure>; | 85 | using bpe_index_value = std::shared_ptr<datex2::road_closure>; |
| 86 | using bpe_index = geo::multizonal::point_rtree<bpe_index_value>; | 86 | using bpe_index = geo::utm::multizonal::point_rtree<bpe_index_value>; |
| 87 | 87 | ||
| 88 | log::logger l_; | 88 | log::logger l_; |
| 89 | datex2::situation_publication pub_; | 89 | datex2::situation_publication pub_; |