Created
August 1, 2011 06:19
-
-
Save jed/1117653 to your computer and use it in GitHub Desktop.
discrepancy for api.geonames.org/timezone
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
the xml and json endpoints for http://api.geonames.org/timezone are inconsistent, | |
in that the json endpoint doesn't return the date. | |
http://api.geonames.org/timezone?lat=47.01&lng=10.2&username=jed&date=2011-07-13 | |
=> the date is specified in the query string, and included in the results | |
http://api.geonames.org/timezoneJSON?lat=47.01&lng=10.2&username=jed&date=2011-07-13 | |
=> the date is specified in the query string, but not included in the results |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"time":"2011-08-01 08:13","countryName":"Austria","sunset":"2011-08-01 20:52","rawOffset":1,"dstOffset":2,"countryCode":"AT","gmtOffset":1,"lng":10.2,"sunrise":"2011-08-01 05:57","timezoneId":"Europe/Vienna","lat":47.01} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8" standalone="no"?> | |
<geonames> | |
<timezone> | |
<countryCode>AT</countryCode> | |
<countryName>Austria</countryName> | |
<lat>47.01</lat> | |
<lng>10.2</lng> | |
<timezoneId>Europe/Vienna</timezoneId> | |
<dstOffset>2.0</dstOffset> | |
<gmtOffset>1.0</gmtOffset> | |
<rawOffset>1.0</rawOffset> | |
<time>2011-08-01 08:17</time> | |
<sunrise>2011-08-01 05:57</sunrise> | |
<sunset>2011-08-01 20:52</sunset> | |
<date date="2011-07-13"> | |
<sunrise>2011-07-13 05:36</sunrise> | |
<sunset>2011-07-13 21:12</sunset> | |
</date> | |
</timezone> | |
</geonames> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment