co-maps/libs/search/utm_mgrs_coords_match.hpp

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
305 B
C++
Raw Normal View History

2025-11-22 13:58:55 +01:00
#pragma once
#include <string>
#include "geometry/latlon.hpp"
namespace search
{
// Parses input query for UTM and MGRS coordinate formats.
std::optional<ms::LatLon> MatchUTMCoords(std::string const & query);
std::optional<ms::LatLon> MatchMGRSCoords(std::string const & query);
} // namespace search