Tagged Questions
The zoneinfo tag has no wiki summary.
5
votes
4answers
196 views
as.POSIXct gives an unexpected timezone
I'm trying to convert a yearmon date (from the zoo package) to a POSIXct in the UTC timezone.
This is what I tried to do:
> as.POSIXct(as.yearmon("2010-01-01"), tz="UTC")
[1] "2010-01-01 01:00:00 ...
2
votes
2answers
208 views
Can I determine the ZoneInfo from an IPAddress?
is there anyway I could figure out an estimated (Olson) ZoneInfo value (eg. ("America/Los Angeles", "Europe/London", etc.), for a single public IP address ... in .NET?
I already have a full list of ...
2
votes
3answers
429 views
Is there anyway i can convert a “Australia/Melbourne” time zone into some .net base class library object?
I have some data from a 3rd party that includes some string Language property data. Some sample data retrieved looks like :
"Australia/Melbourne"
When i investigated that what the property ...
1
vote
2answers
69 views
How to change local time without using date
It's a remote server so no GUI or fancy stuff installed, I connect to that host using SSH.
For security reasons I suppose, I cannot use the 'date -s' command to change the local server's current time.
...
1
vote
0answers
73 views
Using Olson / ZoneInfo Timezone data in .Net
I'm comparing Olson time zone implementations for .Net and was wondering if anyone has done some analysis comparing the available libraries.
Olson or ZoneInfo timezones are the ones used in Linux and ...
1
vote
1answer
168 views
python - remote hosts timezone vs local
I'm building a web frontend for remote logs monitoring,
having to manage about 10 different geographic locations I've bumped into the 3 headed hellhound some of you already have.
Is there any way to ...
1
vote
1answer
235 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"
...
1
vote
0answers
105 views
Handling timezones in MySQL without zoneinfo
There seems to be no way to get MySQL to return formatted times from timestamps without zoneinfo being imported.
If I use
SET time_zone = '-4:00'
and I create a timestamp for 6:00PM Nov 1, when ...
1
vote
2answers
185 views
javazic timezone format
Where can I find documentation about the binary data format outputted by javazic (the files shipped in Debian's tzdata-java package)?
The standard format used in /usr/share/zoneinfo has no explicit ...
1
vote
4answers
1k views
How do I determine the system's Olson zoneinfo in JavaScript?
I'm interested in retrieving the current zoneinfo string ("America/Los Angeles", "Europe/London", etc.) that the user currently has set for their OS in JavaScript. I've found how to get the current ...
0
votes
1answer
71 views
Convert DataTime time zone number into text value like: EST
I am looking for a way to output/format
String.Format("{0:h:MMtt zzzz}", symbol.QuoteData.LastTrade);
into more meaningful format like
String.Format("{0:h:MMtt EST}", symbol.QuoteData.LastTrade);
...