Skip to content

Commit 0159623

Browse files
authored
Merge branch 'main' into ss-nc/fix-climatoloy-experiment
2 parents 0d39d05 + 8b26c7a commit 0159623

File tree

1 file changed

+12
-2
lines changed

1 file changed

+12
-2
lines changed

src/DataWrangling/ECCO/ECCO_metadata.jl

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,12 @@ ECCO4_short_names = Dict(
124124
:free_surface => "SSH",
125125
:sea_ice_thickness => "SIheff",
126126
:sea_ice_concentration => "SIarea",
127-
:net_heat_flux => "oceQnet"
127+
:net_heat_flux => "oceQnet",
128+
:sensible_heat_flux => "EXFhs",
129+
:latent_heat_flux => "EXFhl",
130+
:upwelling_longwave => "EXFlwnet"
131+
:downwelling_shortwave => "oceQsw",
132+
:downwelling_longwave => "EXFlwdn",
128133
)
129134

130135
ECCO2_short_names = Dict(
@@ -145,9 +150,14 @@ ECCO_location = Dict(
145150
:sea_ice_thickness => (Center, Center, Nothing),
146151
:sea_ice_concentration => (Center, Center, Nothing),
147152
:net_heat_flux => (Center, Center, Nothing),
153+
:sensible_heat_flux => (Center, Center, Nothing),
154+
:latent_heat_flux => (Center, Center, Nothing),
155+
:upwelling_longwave => (Center, Center, Nothing),
156+
:downwelling_longwave => (Center, Center, Nothing),
157+
:downwelling_shortwave => (Center, Center, Nothing),
148158
:u_velocity => (Face, Center, Center),
149159
:v_velocity => (Center, Face, Center),
150-
)
160+
)
151161

152162
# URLs for the ECCO datasets specific to each dataset
153163
metadata_url(m::Metadata{<:ECCO2Monthly}) = ECCO2_url * "monthly/" * short_name(m) * "/" * metadata_filename(m)

0 commit comments

Comments
 (0)