Tagged Questions
The tz tag has no wiki summary.
8
votes
2answers
3k views
Python - Can't subtract offset-naive and offset-aware datetimes
I have a timezone aware timestamptz field in PostgreSQL. When I pull data from the table, I then want to subtract the time right now so I can get it's age.
The problem I'm having is that both ...
3
votes
3answers
451 views
How can I get and use a user's TZ setting from their .bashrc in a Perl CGI script?
Each of my users has a (possibly) different TZ defined in their .bashrc. I have a Perl script that displays date/time and want it to have it display with their profile time zone.
Does anyone know ...
2
votes
1answer
65 views
Ruby: convert “US/Eastern” time zone names to “Central Time (US & Canada)”
I've got an old database with time zone formats like:
US/Eastern
Australia/Melbourne
In my new Rails app, I'm saving them as:
Eastern Time (US & Canada)
Melbourne
How can I convert the old ...
2
votes
1answer
544 views
python-tz am I wrong or it's a bug
It's a bit weird it seems that when I want to get a timezone for Europe/Paris with pytz it gets me to the PMT timezone instead of GMT+1 when it seems to work for Europe/Berlin.
Not clear ? Well look ...
1
vote
1answer
233 views
How can I map tz database names to city and country names?
Is there a publicly available mapping from tz database (aka zoneinfo database, aka Olson database) IDs to city and country? For example:
"Pacific/Auckland" => "Auckland, New Zealand"
...
0
votes
1answer
81 views
How do tell rrdtool what time zone to use for the x-axis in a graph?
When the daily tick marks on my graph didn’t line up with crisp changes in my data at 00:00, I realized I had a time zone issue. Rrdtool is using my local time zone (UTC+6 for instance) to choose the ...
0
votes
1answer
175 views
Multilingual time zone selector
I need to make a WPF control, which will allow a user to select a time zone. This control also needs to support multiple languages. I.e., time zone names should be displayed in the language, selected ...
0
votes
1answer
172 views
How to build a time zone+DST transition date table
So I am trying to build a table of cities with their offset, DST transition dates, and DST offsets. Up until this point our program has been manually updated for each of the 300+ entries every year.
...
0
votes
1answer
562 views
TZ Var to Java TimeZone?
I need to convert from the Unix TZ variable of the form: stdoffset[dst[offset][,start[/time],end[/time]]] into a Java TimeZone object.
For example, convert ...