Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

FIX: Make datetime parsing more general for columnsect #1261

Merged
merged 1 commit into from
Sep 15, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions pyart/util/columnsect.py
Original file line number Diff line number Diff line change
Expand Up @@ -202,8 +202,8 @@ def get_field_location(radar, latitude, longitude):

# Determine the time at the center of each ray within the column
# Define the start of the radar volume as a numpy datetime object for xr
base_time = pd.to_datetime(radar.time['units'].split(' ')[-1].strip('Z'),
format='%Y-%m-%dT%H:%M:%S').to_numpy()
# We take advantage of the "seconds since " portion of the units string
base_time = pd.to_datetime(radar.time['units'][14:]).to_numpy()
# Convert Py-ART radar object time (time since volume start) to time delta
# Add to base time to have sequential time within the xr Dataset
# for easier future merging/work
Expand Down