blob: 1b4895564fe94f200d4893a86a45a340268a44a9 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
// SPDX-License-Identifier: GPL-2.0
#ifndef DIVESITEHELPERS_H
#define DIVESITEHELPERS_H
#include "taxonomy.h"
#include "units.h"
/// Performs a reverse geo-lookup and returns the data.
/// It is up to the caller to merge the data with any existing data.
taxonomy_data reverseGeoLookup(degrees_t latitude, degrees_t longitude);
#endif // DIVESITEHELPERS_H
|