2020-08-20 02:23:13 -03:00
|
|
|
/*
|
|
|
|
* This file is free software: you can redistribute it and/or modify it
|
|
|
|
* under the terms of the GNU General Public License as published by the
|
|
|
|
* Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This file is distributed in the hope that it will be useful, but
|
|
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
* See the GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
* with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
* AP_OLC is based on INAV olc.c implemention, thanks @fiam and other contributors.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
2020-08-20 02:24:57 -03:00
|
|
|
#include <stdint.h>
|
2020-09-16 05:18:35 -03:00
|
|
|
#include <AP_HAL/AP_HAL_Boards.h>
|
2020-08-20 02:23:13 -03:00
|
|
|
|
2020-09-16 05:18:35 -03:00
|
|
|
#ifndef HAL_PLUSCODE_ENABLE
|
|
|
|
#define HAL_PLUSCODE_ENABLE !HAL_MINIMIZE_FEATURES && BOARD_FLASH_SIZE > 1024
|
|
|
|
#endif
|
2020-08-20 02:23:13 -03:00
|
|
|
|
2020-08-20 02:24:57 -03:00
|
|
|
|
2020-09-16 05:18:35 -03:00
|
|
|
#if HAL_PLUSCODE_ENABLE
|
2020-08-20 02:23:13 -03:00
|
|
|
class AP_OLC
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
2020-08-20 02:24:57 -03:00
|
|
|
// olc_encodes the given coordinates in lat and lon (deg * OLC_DEG_MULTIPLIER)
|
|
|
|
// as an OLC code of the given length. It returns the number of characters
|
|
|
|
// written to buf.
|
|
|
|
static int olc_encode(int32_t lat, int32_t lon, size_t length, char *buf, size_t bufsize);
|
2020-08-20 02:23:13 -03:00
|
|
|
|
|
|
|
private:
|
2020-09-16 05:18:35 -03:00
|
|
|
static const int32_t initial_exponent;
|
|
|
|
// Work out the enclosing resolution (in degrees) for the grid algorithm.
|
|
|
|
static const int32_t grid_size;
|
|
|
|
// Work out the initial resolution
|
|
|
|
static const int32_t initial_resolution;
|
|
|
|
|
|
|
|
static constexpr char olc_alphabet[] = "23456789CFGHJMPQRVWX";
|
2020-08-20 02:24:57 -03:00
|
|
|
|
|
|
|
static float compute_precision_for_length(int length);
|
|
|
|
static int32_t adjust_latitude(int32_t lat, size_t code_len);
|
|
|
|
static int32_t normalize_longitude(int32_t lon);
|
|
|
|
static unsigned encode_pairs(uint32_t lat, uint32_t lon, size_t length, char *buf, size_t bufsize);
|
2020-09-16 05:18:35 -03:00
|
|
|
static int encode_grid(uint32_t lat, uint32_t lon, size_t length, char *buf, size_t bufsize);
|
2020-08-20 02:23:13 -03:00
|
|
|
|
|
|
|
};
|
2020-09-16 05:18:35 -03:00
|
|
|
|
2020-11-12 03:47:42 -04:00
|
|
|
#endif
|