Group 4 and 6 - code sharing, tips and tricks #18
adagj
started this conversation in
Show and tell
Replies: 3 comments
-
Some info about the data in the Ada bucket: ESM data:
Reanalysis/observations - global, gridded and netcdf format
MODIS (satellite) - global, gridded, constant distance
Barents Sea Observations
|
Beta Was this translation helpful? Give feedback.
0 replies
-
Beta Was this translation helpful? Give feedback.
0 replies
-
To reload functions without stopping kernel:
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
For going to one dimensional xarray datasets to nicely gridded data, try:
ds =ds.assign_coords(
{"pixel": pd.MultiIndex.from_arrays([ds.time.values, ds.lat.values, ds.lon.values],
names=["time","lat", "lon"])}).unstack("pixel"))
Beta Was this translation helpful? Give feedback.
All reactions