You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Oct 13, 2022. It is now read-only.
@rbcarvin learned something new with this one! In RMevents, we find "start date" by subsetting by event and finding the minimum. When you subset dates like this, you drop the attributes of the data, which includes time zone. Then, R assigns a time zone, which is the time zone of your computer. So, this is why we're getting converted dates that are correct, but events that are an hour off during DST.
The text was updated successfully, but these errors were encountered:
limnoliver
added a commit
to limnoliver/Rainmaker
that referenced
this issue
Jun 20, 2018
…ut, this should fix issue USGS-R#46. Use dplyr to group by event and then get min and max dates. This allows the tz attributes to stay with data and not convert them to computer's time zone.
@rbcarvin learned something new with this one! In RMevents, we find "start date" by subsetting by event and finding the minimum. When you subset dates like this, you drop the attributes of the data, which includes time zone. Then, R assigns a time zone, which is the time zone of your computer. So, this is why we're getting converted dates that are correct, but events that are an hour off during DST.
The text was updated successfully, but these errors were encountered: