Welcome to mirror list, hosted at ThFree Co, Russian Federation.

sunrise_sunset.hpp « base - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f748505a64d91efd6a731eac022e5c333d141a4a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#pragma once

#include <ctime>
#include <string>

enum class DayTimeType
{
  Day,
  Night,
  PolarDay,
  PolarNight
};

std::string DebugPrint(DayTimeType type);

/// Helpers which calculates 'is day time' without a time calculation error.
/// @param timeUtc - utc time
/// @param latitude - latutude, -90...+90 degrees
/// @param longitude - longitude, -180...+180 degrees
/// @returns day time type for a specified date for a specified location
/// @note throws RootException if gmtime returns nullptr
DayTimeType GetDayTime(time_t timeUtc, double latitude, double longitude);