I'm using the weatherlib library in my code to find the sunrise and sunset time, but I can't find the user's current timezone for a latitude and longitude offline. Here's some extra information on the topic:
Reference forcalc_sunrise
:
calc_sunrise (date, latitude, longitude, timezone) Calculate the time of sunrise at the given date and location. Routines from the JavaScript code at http://www.esrl.noaa.gov/gmd/grad/solcalc/. Parameters - date: an os.date table representing the date for which to calculate the time of sunrise - latitude: Latitude of the location - longitude: Longitude of the location - timezone: Timezone as an offset in hours from UTC at the given location Return value: - os.date table that holds the date and time when sunrise occurs
They also have a calc_timezone_offset
function, but you need the string for the current timezone. Here's the reference for it:
calc_timezone_offset (timezone) Calculate timezone offset from UTC in seconds for the given timezone. Uses external command date(1). Takes Daylight Saving Time into account if the local date command supports that. Tested only on Ubuntu Linux 10.04 and Solaris 10 operating systems. May not be very portable. Parameters - timezone: Timezone name, e.g. Europe/Helsinki, Asia/Bangkok, US/Pacific Usage - weatherlib.calc_timezone_offset('Europe/Helsinki') -- 7200 - weatherlib.calc_timezone_offset('Asia/Bangkok') -- 28800 - weatherlib.calc_timezone_offset('US/Pacific') -- -28800 Return value: - Timezone offset in seconds from UTC. Positive for timezones ahead of UTC, negative for timezones behind UTC.
Thank you!
P.S. I did look for duplicate questions, but none gave me a answer for offline usage.
Edit: Specified I need this to be offline.
I had missed the offline section in @MattJohnson's post. I got my data from whereonearth-timezone. Thank you!