Using Time, Timezones and Location in Go

1 · · Aug. 8, 2013, midnight
I ran into a problem today. I was building code to consume NOAA’s tide station XML document and quickly realized I was in trouble. Here is a small piece of that XML document: <timezone>LST/LDT</timezone> <item> <date>2013/01/01</date> <day>Tue</day> <time>02:06 AM</time> <predictions_in_ft>19.7</predictions_in_ft> <predictions_in_cm>600</predictions_in_cm> <highlow>H</highlow> </item> If you notice the timezone tag, it states the time is in Local Standard Time / Local Daylight Time. This is a re...