JMMP-Group / nordic-seas-validation

MIT License
0 stars 0 forks source link

add EEL #12

Closed malmans2 closed 2 years ago

malmans2 commented 2 years ago

@oceandie I've added yearly mean hydrography and velocities at EEL. I think there are various transports in the csv files, but I haven't looked into those data yet.

oceandie commented 2 years ago

HI @malmans2 , That's great, thanks!

oceandie commented 2 years ago

Hi @malmans2,

I am having some problems using the EEL dataset. Attached a plot of the section:

sec_Temperature_lon_0-68_lat_0-0_contourf_maxdepth_2685 0_9

Are you having the same issue or I am doing something wrong?

Thanks!

malmans2 commented 2 years ago

Maybe it's because of the nans? I can do this:

from nsv import Standardizer
import matplotlib.pyplot as plt
ds = Standardizer().eel
ds = ds.drop("station")
ds["potential_temperature"].isel(time=0).plot.contourf(x="station")
ds["sea_floor_depth_below_geoid"].plot(c="k")
plt.gca().invert_yaxis()

image

ds["potential_temperature"].plot.contourf(x="station", col="time", col_wrap=4)
plt.gca().invert_yaxis()

image

oceandie commented 2 years ago

Thanks, yes the nans plus I didn't realise that the number of missing values change with time!