time axis challenges: xcdat -> numpy #438
Answered
by
pochedls
gleckler1
asked this question in
2. Questions
-
I am testing the use of xcdat to read in a large dataset via xcdat.open_mfdataset. My goal is to re-write this data using CMOR, but to do that I need to isolate the time axis as a numpy array with index values (with cdms this is rel time instead of component time). I am struggling to find a reasonable/simple path. Any hints? |
Beta Was this translation helpful? Give feedback.
Answered by
pochedls
Mar 23, 2023
Replies: 1 comment 4 replies
-
Does this work: |
Beta Was this translation helpful? Give feedback.
4 replies
Answer selected by
tomvothecoder
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Does this work:
time = ds.time.values
?