Skip to content

Commit

Permalink
make datetime parsing more general for columnsect (#1261)
Browse files Browse the repository at this point in the history
  • Loading branch information
mgrover1 authored Sep 15, 2022
1 parent e02ab59 commit 6289c05
Showing 1 changed file with 2 additions and 2 deletions.
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

0 comments on commit 6289c05

Please sign in to comment.