From 651940574b0efe23d5ab9b8382786c2e3120745b Mon Sep 17 00:00:00 2001 From: James Varndell Date: Thu, 13 Feb 2025 09:34:15 +0000 Subject: [PATCH 1/9] Adds experimental styles --- .../identities/river-discharge-24-hours.yml | 6 ++ .../identities/river-discharge-6-hours.yml | 6 ++ .../identities/sea-surface-temperature.yml | 3 +- .../identities/temperature-at-850hPa.yml | 5 + .../identities/total-precipitation.yml | 5 + .../wind-gust-at-10m-in-last-6-hours.yml | 5 + src/default/schema.yml | 93 ++++++++++++++++--- .../styles/near-surface-air-temperature.yml | 16 ++-- .../styles/river-discharge-24-hours.yml | 12 +++ .../styles/river-discharge-6-hours.yml | 12 +++ src/default/styles/temperature-at-850hPa.yml | 26 ++++++ src/default/styles/total-precipitation.yml | 26 ++++++ .../wind-gust-at-10m-in-last-6-hours.yml | 11 +++ 13 files changed, 202 insertions(+), 24 deletions(-) create mode 100644 src/default/identities/river-discharge-24-hours.yml create mode 100644 src/default/identities/river-discharge-6-hours.yml create mode 100644 src/default/identities/temperature-at-850hPa.yml create mode 100644 src/default/identities/total-precipitation.yml create mode 100644 src/default/identities/wind-gust-at-10m-in-last-6-hours.yml create mode 100644 src/default/styles/river-discharge-24-hours.yml create mode 100644 src/default/styles/river-discharge-6-hours.yml create mode 100644 src/default/styles/temperature-at-850hPa.yml create mode 100644 src/default/styles/total-precipitation.yml create mode 100644 src/default/styles/wind-gust-at-10m-in-last-6-hours.yml diff --git a/src/default/identities/river-discharge-24-hours.yml b/src/default/identities/river-discharge-24-hours.yml new file mode 100644 index 0000000..33f5f4a --- /dev/null +++ b/src/default/identities/river-discharge-24-hours.yml @@ -0,0 +1,6 @@ +id: river-discharge-24-hours + +criteria: +- {long_name: Mean discharge in the last 24 hours} +- {name: Mean discharge in the last 24 hours} +- {name: dis24} \ No newline at end of file diff --git a/src/default/identities/river-discharge-6-hours.yml b/src/default/identities/river-discharge-6-hours.yml new file mode 100644 index 0000000..35e7206 --- /dev/null +++ b/src/default/identities/river-discharge-6-hours.yml @@ -0,0 +1,6 @@ +id: river-discharge-6-hours + +criteria: +- {long_name: Mean discharge in the last 6 hours} +- {name: Mean discharge in the last 6 hours} +- {name: dis06} \ No newline at end of file diff --git a/src/default/identities/sea-surface-temperature.yml b/src/default/identities/sea-surface-temperature.yml index e660cea..451ceea 100644 --- a/src/default/identities/sea-surface-temperature.yml +++ b/src/default/identities/sea-surface-temperature.yml @@ -4,4 +4,5 @@ criteria: - {paramId: 34, shortName: sst} - {standard_name: sea_surface_temperature} - {standard_name: sea_surface_skin_temperature} -- {long_name: sea surface temperature} \ No newline at end of file +- {long_name: sea surface temperature} +- {long_name: Sea surface temperature} \ No newline at end of file diff --git a/src/default/identities/temperature-at-850hPa.yml b/src/default/identities/temperature-at-850hPa.yml new file mode 100644 index 0000000..81ee9d9 --- /dev/null +++ b/src/default/identities/temperature-at-850hPa.yml @@ -0,0 +1,5 @@ +--- +id: temperature-at-850hPa + +criteria: +- {standard_name: air_temperature, isobaricInhPa: 850} \ No newline at end of file diff --git a/src/default/identities/total-precipitation.yml b/src/default/identities/total-precipitation.yml new file mode 100644 index 0000000..177717d --- /dev/null +++ b/src/default/identities/total-precipitation.yml @@ -0,0 +1,5 @@ +id: total-precipitation + +criteria: +- {standard_name: total_precipitation} +- {long_name: "Total precipitation"} \ No newline at end of file diff --git a/src/default/identities/wind-gust-at-10m-in-last-6-hours.yml b/src/default/identities/wind-gust-at-10m-in-last-6-hours.yml new file mode 100644 index 0000000..aed7241 --- /dev/null +++ b/src/default/identities/wind-gust-at-10m-in-last-6-hours.yml @@ -0,0 +1,5 @@ +id: wind-gust-at-10m-in-last-6-hours + +criteria: +- {paramId: 123, shortName: 10fg6} +- {long_name: 10 metre wind gust in the last 6 hours} \ No newline at end of file diff --git a/src/default/schema.yml b/src/default/schema.yml index e56af5b..b8ae135 100644 --- a/src/default/schema.yml +++ b/src/default/schema.yml @@ -17,7 +17,7 @@ # more control over matplotlib rcParams, consider using a matplotlib style # sheet. figure: - figsize: [7, 6] + figsize: [8, 7] dpi: 100 axes: linewidth: 1 @@ -51,30 +51,73 @@ text: default_cmap: plasma # The number of levels to use in default styles -default_style_levels: 12 +default_style_levels: 10 # The style library to use for automatic styling style_library: default +# The color mode - if "magics" will use named colors from the Magics library +color_mode: null + # If true, will attempt to use automatic stlying whenever no style is passed automatic_styles: true +# The format to use for units +units_format: "~E" + # If true, force the use of the optimal style for a given variable as provided # by the style library, forcing unit conversion if necessary use_preferred_units: false # EXPERIMENTAL # The lat-lon target resolution when interpolating unstructured data -interpolate_target_resolution: 1 +interpolate_target_resolution: 0.1 + +interactive_box: + quantiles: [0, 0.1, 0.25, 0.5, 0.75, 0.9, 1.0] + fillcolor: "#b3c6ff" + line_color: "#0040ff" + line_width: 1.5 +reference_fontsize: 12 + +interactive_layout: + colorway: + - '#636EFA' + - '#EF553B' + - '#00CC96' + - '#AB63FA' + - '#FFA15A' + - '#19D3F3' + - '#FF6692' + - '#B6E880' + - '#FF97FF' + - '#FECB52' + hovermode: x + plot_bgcolor: white + xaxis: + gridwidth: 1 + showgrid: false + showline: false + zeroline: false + yaxis: + linecolor: black + gridcolor: '#EEEEEE' + showgrid: true + showline: true + zeroline: false + height: 750 + showlegend: False # *************************************************************************** # # * QUICKPLOT WORKFLOW * # # *************************************************************************** # -quickmap_workflow: - - coastlines - - gridlines +quickmap_subplot_workflow: - title + +quickmap_figure_workflow: + - coastlines + # - gridlines - legend quickplot_workflow: [] @@ -120,8 +163,15 @@ line: envelope: zorder: 2 contour: + regrid: true + transform_first: true +isolines: + regrid: true transform_first: true + linewidths: 1 + labels: true contourf: + regrid: true transform_first: true point: marker: o @@ -131,14 +181,18 @@ legend: title: wrap: true horizontalalignment: center - fontsize: 12 +suptitle: + wrap: true + horizontalalignment: center + fontsize: 14 barbs: length: 4 linewidth: 0.5 sizes: spacing: 0.25 - color: "#555" -quiver: {} + regrid_shape: 30 +quiver: + regrid_shape: 30 scatter: s: 36 edgecolors: black @@ -146,16 +200,16 @@ scatter: color: none hatch: //////// linewidths: 0.5 -gridpoints: - s: 4 +grid_points: + s: 8 marker: . edgecolors: null missing_values: null z: false - color: red + c: red legend_style: null point_cloud: - s: 12 + s: 5 marker: o edgecolors: null boxplot: @@ -170,10 +224,19 @@ coastlines: edgecolor: "#555555" facecolor: none borders: - linestyle: ":" linewidth: 0.5 - edgecolor: [0.2, 0.2, 0.2] + edgecolor: "#999999" facecolor: none + special_styles: + - key: BRK_A3 + values: ["B57"] + kwargs: + linestyle: [0, [2, 4]] + - key: BRK_A3 + values: ["B89"] + kwargs: + linewidth: 0 + linestyle: [0, [2, 4]] countries: linestyle: "-" linewidth: 0.5 diff --git a/src/default/styles/near-surface-air-temperature.yml b/src/default/styles/near-surface-air-temperature.yml index 2349cf4..da3d2de 100644 --- a/src/default/styles/near-surface-air-temperature.yml +++ b/src/default/styles/near-surface-air-temperature.yml @@ -1,26 +1,26 @@ --- -id: near-surface-air-temperature -optimal: TEMPERATURE_AT_2M_IN_CELSIUS +id: temperature-at-850hPa +optimal: TEMPERATURE_AT_850HPA_IN_CELSIUS styles: - TEMPERATURE_AT_2M_IN_CELSIUS: + TEMPERATURE_AT_850HPA_IN_CELSIUS: type: Style - colors: turbo + colors: rainbow extend: both levels: range(-40, 41, 2) units: celsius - TEMPERATURE_AT_2M_IN_KELVIN: + TEMPERATURE_AT_850HPA_IN_KELVIN: type: Style - colors: turbo + colors: rainbow extend: both levels: range(230, 311, 2) units: K - TEMPERATURE_AT_2M_IN_FAHRENHEIT: + TEMPERATURE_AT_850HPA_IN_FAHRENHEIT: type: Style - colors: turbo + colors: rainbow extend: both levels: range(-40, 101, 5) units: fahrenheit \ No newline at end of file diff --git a/src/default/styles/river-discharge-24-hours.yml b/src/default/styles/river-discharge-24-hours.yml new file mode 100644 index 0000000..3483d38 --- /dev/null +++ b/src/default/styles/river-discharge-24-hours.yml @@ -0,0 +1,12 @@ +--- +id: river-discharge-24-hours +optimal: RIVER_DISCHARGE_24_HOURS_IN_M3_S-1 + +styles: + + RIVER_DISCHARGE_24_HOURS_IN_M3_S-1: + type: Style + colors: Blues + levels: [0.1, 0.25, 0.5, 1, 2, 5, 10, 25, 50, 100, 500, 1000, 2000] + extend: max + units: m3 s-1 \ No newline at end of file diff --git a/src/default/styles/river-discharge-6-hours.yml b/src/default/styles/river-discharge-6-hours.yml new file mode 100644 index 0000000..a6a05a6 --- /dev/null +++ b/src/default/styles/river-discharge-6-hours.yml @@ -0,0 +1,12 @@ +--- +id: river-discharge-6-hours +optimal: RIVER_DISCHARGE_6_HOURS_IN_M3_S-1 + +styles: + + RIVER_DISCHARGE_6_HOURS_IN_M3_S-1: + type: Style + colors: Blues + levels: [0.1, 0.5, 1, 2, 5, 10, 50, 100, 500, 1000, 2000, 3000, 4000] + extend: max + units: m3 s-1 \ No newline at end of file diff --git a/src/default/styles/temperature-at-850hPa.yml b/src/default/styles/temperature-at-850hPa.yml new file mode 100644 index 0000000..2349cf4 --- /dev/null +++ b/src/default/styles/temperature-at-850hPa.yml @@ -0,0 +1,26 @@ +--- +id: near-surface-air-temperature +optimal: TEMPERATURE_AT_2M_IN_CELSIUS + +styles: + + TEMPERATURE_AT_2M_IN_CELSIUS: + type: Style + colors: turbo + extend: both + levels: range(-40, 41, 2) + units: celsius + + TEMPERATURE_AT_2M_IN_KELVIN: + type: Style + colors: turbo + extend: both + levels: range(230, 311, 2) + units: K + + TEMPERATURE_AT_2M_IN_FAHRENHEIT: + type: Style + colors: turbo + extend: both + levels: range(-40, 101, 5) + units: fahrenheit \ No newline at end of file diff --git a/src/default/styles/total-precipitation.yml b/src/default/styles/total-precipitation.yml new file mode 100644 index 0000000..8f0eea3 --- /dev/null +++ b/src/default/styles/total-precipitation.yml @@ -0,0 +1,26 @@ +--- +id: total-precipitation +optimal: TOTAL_PRECIPITATION_IN_MM + +styles: + + TOTAL_PRECIPITATION_IN_MM: + type: Style + colors: turbo + extend: max + levels: [0, 0.1, 0.2, 0.5, 1, 2, 3, 4, 5] + units: mm + + TOTAL_PRECIPITATION_IN_M: + type: Style + colors: turbo + extend: max + levels: [0, 0.1, 0.2, 0.5, 1, 2, 3, 4, 5] + units: m + + TOTAL_PRECIPITATION_IN_KG_M-2: + type: Style + colors: turbo + extend: max + levels: [0, 0.1, 0.2, 0.5, 1, 2, 3, 4, 5] + units: kg m-2 \ No newline at end of file diff --git a/src/default/styles/wind-gust-at-10m-in-last-6-hours.yml b/src/default/styles/wind-gust-at-10m-in-last-6-hours.yml new file mode 100644 index 0000000..e3c3bd4 --- /dev/null +++ b/src/default/styles/wind-gust-at-10m-in-last-6-hours.yml @@ -0,0 +1,11 @@ +--- +id: wind-gust-at-10m-in-last-6-hours +optimal: WIND_GUST_AT_10M_IN_LAST_6_HOURS_IN_METERS_PER_SECOND + +styles: + + WIND_GUST_AT_10M_IN_LAST_6_HOURS_IN_METERS_PER_SECOND: + type: Style + colors: ["#85AAEE", "#208EFC", "#6CA632", "#FFB000", "#FF0000", "#7A11B1"] + levels: [12, 15, 20, 25, 30, 35, 50] + units: m s-1 \ No newline at end of file From 25f7dd585cd7814918ab918ac927e932b64ad3c0 Mon Sep 17 00:00:00 2001 From: James Varndell Date: Thu, 13 Feb 2025 18:34:22 +0000 Subject: [PATCH 2/9] Improves default quiver plotting --- src/default/schema.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/default/schema.yml b/src/default/schema.yml index b8ae135..0fd8b0d 100644 --- a/src/default/schema.yml +++ b/src/default/schema.yml @@ -71,7 +71,7 @@ use_preferred_units: false # EXPERIMENTAL # The lat-lon target resolution when interpolating unstructured data -interpolate_target_resolution: 0.1 +interpolate_target_resolution: 0.2 interactive_box: quantiles: [0, 0.1, 0.25, 0.5, 0.75, 0.9, 1.0] @@ -117,7 +117,7 @@ quickmap_subplot_workflow: quickmap_figure_workflow: - coastlines - # - gridlines + - gridlines - legend quickplot_workflow: [] @@ -192,6 +192,8 @@ barbs: spacing: 0.25 regrid_shape: 30 quiver: + # scale: 0.0006 + scale_units: "xy" regrid_shape: 30 scatter: s: 36 From 8276d5abb1cb5ae05a1fae923664b2eb18a701eb Mon Sep 17 00:00:00 2001 From: James Varndell <36902610+JamesVarndell@users.noreply.github.com> Date: Thu, 20 Feb 2025 14:08:09 +0000 Subject: [PATCH 3/9] Default interpolation resolution to 0.1 --- src/default/schema.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/default/schema.yml b/src/default/schema.yml index 0fd8b0d..fbacee8 100644 --- a/src/default/schema.yml +++ b/src/default/schema.yml @@ -71,7 +71,7 @@ use_preferred_units: false # EXPERIMENTAL # The lat-lon target resolution when interpolating unstructured data -interpolate_target_resolution: 0.2 +interpolate_target_resolution: 0.1 interactive_box: quantiles: [0, 0.1, 0.25, 0.5, 0.75, 0.9, 1.0] @@ -294,4 +294,4 @@ gridlines: xlabel_style: color: "#777" ylabel_style: - color: "#777" \ No newline at end of file + color: "#777" From a2c93a96541308759489ea1c37479894ffdfa2ee Mon Sep 17 00:00:00 2001 From: James Varndell Date: Wed, 5 Mar 2025 11:39:50 +0000 Subject: [PATCH 4/9] Tweaks to defaults --- src/default/schema.yml | 10 ++++++---- src/default/styles/mean-sea-level-pressure.yml | 4 ++-- 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/src/default/schema.yml b/src/default/schema.yml index 0fd8b0d..dea1682 100644 --- a/src/default/schema.yml +++ b/src/default/schema.yml @@ -51,7 +51,7 @@ text: default_cmap: plasma # The number of levels to use in default styles -default_style_levels: 10 +default_style_levels: 12 # The style library to use for automatic styling style_library: default @@ -71,7 +71,7 @@ use_preferred_units: false # EXPERIMENTAL # The lat-lon target resolution when interpolating unstructured data -interpolate_target_resolution: 0.2 +interpolate_target_resolution: 0.1 interactive_box: quantiles: [0, 0.1, 0.25, 0.5, 0.75, 0.9, 1.0] @@ -164,6 +164,7 @@ envelope: zorder: 2 contour: regrid: true + labels: true transform_first: true isolines: regrid: true @@ -192,8 +193,9 @@ barbs: spacing: 0.25 regrid_shape: 30 quiver: - # scale: 0.0006 - scale_units: "xy" + angles: xy + scale_units: xy + scale: 0.0006 regrid_shape: 30 scatter: s: 36 diff --git a/src/default/styles/mean-sea-level-pressure.yml b/src/default/styles/mean-sea-level-pressure.yml index 3ca240c..4900c21 100644 --- a/src/default/styles/mean-sea-level-pressure.yml +++ b/src/default/styles/mean-sea-level-pressure.yml @@ -6,7 +6,7 @@ styles: MEAN_SEA_LEVEL_PRESSURE_IN_PA: type: Contour - line_colors: "#33334d" + linecolors: "#33334d" linewidths: [0.5, 0.5, 0.5, 1] labels: true levels: @@ -16,7 +16,7 @@ styles: MEAN_SEA_LEVEL_PRESSURE_IN_HPA: type: Contour - line_colors: "#33334d" + linecolors: "#33334d" linewidths: [0.5, 0.5, 0.5, 1] labels: true levels: From dd6e5bfef4c259ed052c24ecf863db7a108bc448 Mon Sep 17 00:00:00 2001 From: James Varndell Date: Wed, 5 Mar 2025 11:46:06 +0000 Subject: [PATCH 5/9] Change style of disputed boundaries --- src/default/schema.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/default/schema.yml b/src/default/schema.yml index b9491b4..821820d 100644 --- a/src/default/schema.yml +++ b/src/default/schema.yml @@ -235,12 +235,12 @@ borders: - key: BRK_A3 values: ["B57"] kwargs: - linestyle: [0, [2, 4]] + linestyle: "dotted" - key: BRK_A3 values: ["B89"] kwargs: linewidth: 0 - linestyle: [0, [2, 4]] + linestyle: "dotted" countries: linestyle: "-" linewidth: 0.5 From 0a90025b6154862c1642dc9ddaaf8789bf2879db Mon Sep 17 00:00:00 2001 From: Corentin Carton de Wiart Date: Thu, 6 Mar 2025 13:43:48 +0000 Subject: [PATCH 6/9] adding soil-wetness-index --- src/default/identities/soil-wetness-index.yml | 7 +++++++ src/default/styles/soil-wetness-index.yml | 10 ++++++++++ 2 files changed, 17 insertions(+) create mode 100644 src/default/identities/soil-wetness-index.yml create mode 100644 src/default/styles/soil-wetness-index.yml diff --git a/src/default/identities/soil-wetness-index.yml b/src/default/identities/soil-wetness-index.yml new file mode 100644 index 0000000..a5f56bb --- /dev/null +++ b/src/default/identities/soil-wetness-index.yml @@ -0,0 +1,7 @@ +id: soil-wetness-index + +criteria: +- {long_name: Soil wetness index (root zone)} +- {name: Soil wetness index (root zone)} +- {name: swir } +- {shortName: swir } \ No newline at end of file diff --git a/src/default/styles/soil-wetness-index.yml b/src/default/styles/soil-wetness-index.yml new file mode 100644 index 0000000..ade2ed2 --- /dev/null +++ b/src/default/styles/soil-wetness-index.yml @@ -0,0 +1,10 @@ +--- +id: soil-wetness-index +optimal: SOIL_WETNESS_INDEX_GREENS + +styles: + SOIL_WETNESS_INDEX_GREENS: + type: Style + colors: [white, lime, green, darkgreen] + levels: [0, 0.10, 0.20, 0.30, 0.40, 0.50, 0.60, 0.70, 0.80, 0.90, 1] + extend: max From c9d3734efed48a1b8af54b9b8216d3346dc7ec99 Mon Sep 17 00:00:00 2001 From: Juan Colonese Date: Thu, 6 Mar 2025 17:23:45 +0000 Subject: [PATCH 7/9] add new hydro variables styles. example of usage in main pkg --- .../identities/river-discharge-24-hours.yml | 6 ----- .../identities/river-discharge-6-hours.yml | 6 ----- src/default/identities/river-discharge.yml | 10 ++++++++ .../identities/snow-water-equivalent.yml | 6 +++++ src/default/identities/soil-wetness-index.yml | 4 ++-- .../total-runoff-water-equivalent.yml | 6 +++++ .../styles/river-discharge-24-hours.yml | 12 ---------- .../styles/river-discharge-6-hours.yml | 12 ---------- src/default/styles/river-discharge.yml | 19 +++++++++++++++ src/default/styles/snow-water-equivalent.yml | 24 +++++++++++++++++++ .../styles/total-runoff-water-equivalent.yml | 12 ++++++++++ 11 files changed, 79 insertions(+), 38 deletions(-) delete mode 100644 src/default/identities/river-discharge-24-hours.yml delete mode 100644 src/default/identities/river-discharge-6-hours.yml create mode 100644 src/default/identities/river-discharge.yml create mode 100644 src/default/identities/snow-water-equivalent.yml create mode 100644 src/default/identities/total-runoff-water-equivalent.yml delete mode 100644 src/default/styles/river-discharge-24-hours.yml delete mode 100644 src/default/styles/river-discharge-6-hours.yml create mode 100644 src/default/styles/river-discharge.yml create mode 100644 src/default/styles/snow-water-equivalent.yml create mode 100644 src/default/styles/total-runoff-water-equivalent.yml diff --git a/src/default/identities/river-discharge-24-hours.yml b/src/default/identities/river-discharge-24-hours.yml deleted file mode 100644 index 33f5f4a..0000000 --- a/src/default/identities/river-discharge-24-hours.yml +++ /dev/null @@ -1,6 +0,0 @@ -id: river-discharge-24-hours - -criteria: -- {long_name: Mean discharge in the last 24 hours} -- {name: Mean discharge in the last 24 hours} -- {name: dis24} \ No newline at end of file diff --git a/src/default/identities/river-discharge-6-hours.yml b/src/default/identities/river-discharge-6-hours.yml deleted file mode 100644 index 35e7206..0000000 --- a/src/default/identities/river-discharge-6-hours.yml +++ /dev/null @@ -1,6 +0,0 @@ -id: river-discharge-6-hours - -criteria: -- {long_name: Mean discharge in the last 6 hours} -- {name: Mean discharge in the last 6 hours} -- {name: dis06} \ No newline at end of file diff --git a/src/default/identities/river-discharge.yml b/src/default/identities/river-discharge.yml new file mode 100644 index 0000000..c906ad9 --- /dev/null +++ b/src/default/identities/river-discharge.yml @@ -0,0 +1,10 @@ +id: river-discharge + +criteria: +- {long_name: Mean discharge in the last 6 hours} +- {long_name: Mean discharge in the last 24 hours} +- {name: Mean discharge in the last 24 hours} +- {name: Mean discharge in the last 6 hours} +- {name: dis24} +- {name: dis06} +- {paramId: 240023} diff --git a/src/default/identities/snow-water-equivalent.yml b/src/default/identities/snow-water-equivalent.yml new file mode 100644 index 0000000..618c431 --- /dev/null +++ b/src/default/identities/snow-water-equivalent.yml @@ -0,0 +1,6 @@ +id: snow-water-equivalent + +criteria: +- {paramId: 228141, shortName: sd} +- {name: Snow depth water equivalent} +- {shortName: sd} diff --git a/src/default/identities/soil-wetness-index.yml b/src/default/identities/soil-wetness-index.yml index a5f56bb..3f5cb32 100644 --- a/src/default/identities/soil-wetness-index.yml +++ b/src/default/identities/soil-wetness-index.yml @@ -1,7 +1,7 @@ id: soil-wetness-index criteria: -- {long_name: Soil wetness index (root zone)} +- {paramId: 231026, shortName: swir } - {name: Soil wetness index (root zone)} - {name: swir } -- {shortName: swir } \ No newline at end of file +- {shortName: swir } diff --git a/src/default/identities/total-runoff-water-equivalent.yml b/src/default/identities/total-runoff-water-equivalent.yml new file mode 100644 index 0000000..bd3d352 --- /dev/null +++ b/src/default/identities/total-runoff-water-equivalent.yml @@ -0,0 +1,6 @@ +id: total-runoff-water-equivalent + +criteria: +- {paramId: 231002, shortName: rowe} +- {name: Runoff water equivalent (surface plus subsurface)} +- {shortName: rowe} diff --git a/src/default/styles/river-discharge-24-hours.yml b/src/default/styles/river-discharge-24-hours.yml deleted file mode 100644 index 3483d38..0000000 --- a/src/default/styles/river-discharge-24-hours.yml +++ /dev/null @@ -1,12 +0,0 @@ ---- -id: river-discharge-24-hours -optimal: RIVER_DISCHARGE_24_HOURS_IN_M3_S-1 - -styles: - - RIVER_DISCHARGE_24_HOURS_IN_M3_S-1: - type: Style - colors: Blues - levels: [0.1, 0.25, 0.5, 1, 2, 5, 10, 25, 50, 100, 500, 1000, 2000] - extend: max - units: m3 s-1 \ No newline at end of file diff --git a/src/default/styles/river-discharge-6-hours.yml b/src/default/styles/river-discharge-6-hours.yml deleted file mode 100644 index a6a05a6..0000000 --- a/src/default/styles/river-discharge-6-hours.yml +++ /dev/null @@ -1,12 +0,0 @@ ---- -id: river-discharge-6-hours -optimal: RIVER_DISCHARGE_6_HOURS_IN_M3_S-1 - -styles: - - RIVER_DISCHARGE_6_HOURS_IN_M3_S-1: - type: Style - colors: Blues - levels: [0.1, 0.5, 1, 2, 5, 10, 50, 100, 500, 1000, 2000, 3000, 4000] - extend: max - units: m3 s-1 \ No newline at end of file diff --git a/src/default/styles/river-discharge.yml b/src/default/styles/river-discharge.yml new file mode 100644 index 0000000..8dab814 --- /dev/null +++ b/src/default/styles/river-discharge.yml @@ -0,0 +1,19 @@ +--- +id: river-discharge +optimal: RIVER_DISCHARGE_GLOBAL_IN_M3_S-1 + +styles: + + RIVER_DISCHARGE_EUROPE_IN_M3_S-1: + type: Style + colors: Blues + levels: [0.1, 0.25, 0.5, 1, 2, 5, 10, 25, 50, 100, 500, 1000, 2000] + extend: max + units: m3 s-1 + + RIVER_DISCHARGE_GLOBAL_IN_M3_S-1: + type: Style + colors: Blues + levels: [0.1, 10, 50, 200, 1000, 3000, 7500, 10000, 30000, 70000, 100000, 200000] + extend: max + units: m3 s-1 diff --git a/src/default/styles/snow-water-equivalent.yml b/src/default/styles/snow-water-equivalent.yml new file mode 100644 index 0000000..0c1c400 --- /dev/null +++ b/src/default/styles/snow-water-equivalent.yml @@ -0,0 +1,24 @@ +--- +id: snow-water-equivalent +optimal: SNOW_WATER_EQUIVALENT_IN_KG_M-2 + +styles: + + SNOW_WATER_EQUIVALENT_IN_KG_M-2: + type: Style + colors: + - [0.5064,0.5809,0.4858] + - [0.6153,0.6753,0.5953] + - [0.7395,0.7658,0.7323] + - [0.8118,0.8118,0.8118] + - [0.8902,0.8902,0.8902] + - [0.949,0.949,0.949] + - [0.9961,0.9961,0.9961] + - [0.9676,0.8309,0.4206] + - [0.9895,0.7421,0.1164] + - [0.9961,0.6008,0.007828] + - [0.9961,0.4526,0.007828] + - [0.919,0.3211,0.02214] + levels: [1.0, 2.0, 5.0, 10.0, 20.0, 35.0, 50.0, 75.0, 100.0, 200.0, 300.0, 500.0] + extend: max + units: kg m**-2 diff --git a/src/default/styles/total-runoff-water-equivalent.yml b/src/default/styles/total-runoff-water-equivalent.yml new file mode 100644 index 0000000..79bff62 --- /dev/null +++ b/src/default/styles/total-runoff-water-equivalent.yml @@ -0,0 +1,12 @@ +--- +id: total-runoff-water-equivalent +optimal: TOTAL_RUNOFF_WATER_EQUIVALENT_IN_KG_M-2 + +styles: + + TOTAL_RUNOFF_WATER_EQUIVALENT_IN_KG_M-2: + type: Style + colors: Blues + levels: [0.1, 1, 2, 5, 7, 10, 15, 30, 50, 75, 100, 150, 200] + extend: max + units: kg m**-2 From 118d053713c4579aaf6c4ed4513b8d8da3135d74 Mon Sep 17 00:00:00 2001 From: James Varndell Date: Fri, 7 Mar 2025 10:00:09 +0000 Subject: [PATCH 8/9] Attempt at making styles plugin live inside earthkit.plots.styles --- pyproject.toml | 5 ++--- src/{ => earthkit/plots/styles}/default/__init__.py | 0 .../default/identities/mean-sea-level-pressure.yml | 0 .../identities/near-surface-air-temperature.yml | 0 .../default/identities/river-discharge-24-hours.yml | 0 .../default/identities/river-discharge-6-hours.yml | 0 .../default/identities/sea-surface-temperature.yml | 0 .../default/identities/temperature-at-850hPa.yml | 0 .../default/identities/total-precipitation.yml | 0 .../identities/wind-gust-at-10m-in-last-6-hours.yml | 0 src/{ => earthkit/plots/styles}/default/schema.yml | 0 .../default/styles/mean-sea-level-pressure.yml | 0 .../default/styles/near-surface-air-temperature.yml | 0 .../default/styles/river-discharge-24-hours.yml | 0 .../default/styles/river-discharge-6-hours.yml | 0 .../default/styles/sea-surface-temperature.yml | 0 .../styles}/default/styles/temperature-at-850hPa.yml | 0 .../styles}/default/styles/total-precipitation.yml | 0 .../styles/wind-gust-at-10m-in-last-6-hours.yml | 0 .../plots/styles/default/styles/wind-speed-at-10m.yml | 11 +++++++++++ 20 files changed, 13 insertions(+), 3 deletions(-) rename src/{ => earthkit/plots/styles}/default/__init__.py (100%) rename src/{ => earthkit/plots/styles}/default/identities/mean-sea-level-pressure.yml (100%) rename src/{ => earthkit/plots/styles}/default/identities/near-surface-air-temperature.yml (100%) rename src/{ => earthkit/plots/styles}/default/identities/river-discharge-24-hours.yml (100%) rename src/{ => earthkit/plots/styles}/default/identities/river-discharge-6-hours.yml (100%) rename src/{ => earthkit/plots/styles}/default/identities/sea-surface-temperature.yml (100%) rename src/{ => earthkit/plots/styles}/default/identities/temperature-at-850hPa.yml (100%) rename src/{ => earthkit/plots/styles}/default/identities/total-precipitation.yml (100%) rename src/{ => earthkit/plots/styles}/default/identities/wind-gust-at-10m-in-last-6-hours.yml (100%) rename src/{ => earthkit/plots/styles}/default/schema.yml (100%) rename src/{ => earthkit/plots/styles}/default/styles/mean-sea-level-pressure.yml (100%) rename src/{ => earthkit/plots/styles}/default/styles/near-surface-air-temperature.yml (100%) rename src/{ => earthkit/plots/styles}/default/styles/river-discharge-24-hours.yml (100%) rename src/{ => earthkit/plots/styles}/default/styles/river-discharge-6-hours.yml (100%) rename src/{ => earthkit/plots/styles}/default/styles/sea-surface-temperature.yml (100%) rename src/{ => earthkit/plots/styles}/default/styles/temperature-at-850hPa.yml (100%) rename src/{ => earthkit/plots/styles}/default/styles/total-precipitation.yml (100%) rename src/{ => earthkit/plots/styles}/default/styles/wind-gust-at-10m-in-last-6-hours.yml (100%) create mode 100644 src/earthkit/plots/styles/default/styles/wind-speed-at-10m.yml diff --git a/pyproject.toml b/pyproject.toml index aaea1d6..6583fa5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -39,11 +39,10 @@ add_ignore = ["D1", "D200", "D205", "D400", "D401"] convention = "numpy" [project.entry-points.'earthkit.plots.plugins'] -default = 'default' +default = 'earthkit.plots.styles.default' [tool.setuptools.packages.find] -include = ["default"] where = ["src/"] [tool.setuptools_scm] -version_file = "src/default/_version.py" \ No newline at end of file +version_file = "src/earthkit/plots/styles/default/_version.py" \ No newline at end of file diff --git a/src/default/__init__.py b/src/earthkit/plots/styles/default/__init__.py similarity index 100% rename from src/default/__init__.py rename to src/earthkit/plots/styles/default/__init__.py diff --git a/src/default/identities/mean-sea-level-pressure.yml b/src/earthkit/plots/styles/default/identities/mean-sea-level-pressure.yml similarity index 100% rename from src/default/identities/mean-sea-level-pressure.yml rename to src/earthkit/plots/styles/default/identities/mean-sea-level-pressure.yml diff --git a/src/default/identities/near-surface-air-temperature.yml b/src/earthkit/plots/styles/default/identities/near-surface-air-temperature.yml similarity index 100% rename from src/default/identities/near-surface-air-temperature.yml rename to src/earthkit/plots/styles/default/identities/near-surface-air-temperature.yml diff --git a/src/default/identities/river-discharge-24-hours.yml b/src/earthkit/plots/styles/default/identities/river-discharge-24-hours.yml similarity index 100% rename from src/default/identities/river-discharge-24-hours.yml rename to src/earthkit/plots/styles/default/identities/river-discharge-24-hours.yml diff --git a/src/default/identities/river-discharge-6-hours.yml b/src/earthkit/plots/styles/default/identities/river-discharge-6-hours.yml similarity index 100% rename from src/default/identities/river-discharge-6-hours.yml rename to src/earthkit/plots/styles/default/identities/river-discharge-6-hours.yml diff --git a/src/default/identities/sea-surface-temperature.yml b/src/earthkit/plots/styles/default/identities/sea-surface-temperature.yml similarity index 100% rename from src/default/identities/sea-surface-temperature.yml rename to src/earthkit/plots/styles/default/identities/sea-surface-temperature.yml diff --git a/src/default/identities/temperature-at-850hPa.yml b/src/earthkit/plots/styles/default/identities/temperature-at-850hPa.yml similarity index 100% rename from src/default/identities/temperature-at-850hPa.yml rename to src/earthkit/plots/styles/default/identities/temperature-at-850hPa.yml diff --git a/src/default/identities/total-precipitation.yml b/src/earthkit/plots/styles/default/identities/total-precipitation.yml similarity index 100% rename from src/default/identities/total-precipitation.yml rename to src/earthkit/plots/styles/default/identities/total-precipitation.yml diff --git a/src/default/identities/wind-gust-at-10m-in-last-6-hours.yml b/src/earthkit/plots/styles/default/identities/wind-gust-at-10m-in-last-6-hours.yml similarity index 100% rename from src/default/identities/wind-gust-at-10m-in-last-6-hours.yml rename to src/earthkit/plots/styles/default/identities/wind-gust-at-10m-in-last-6-hours.yml diff --git a/src/default/schema.yml b/src/earthkit/plots/styles/default/schema.yml similarity index 100% rename from src/default/schema.yml rename to src/earthkit/plots/styles/default/schema.yml diff --git a/src/default/styles/mean-sea-level-pressure.yml b/src/earthkit/plots/styles/default/styles/mean-sea-level-pressure.yml similarity index 100% rename from src/default/styles/mean-sea-level-pressure.yml rename to src/earthkit/plots/styles/default/styles/mean-sea-level-pressure.yml diff --git a/src/default/styles/near-surface-air-temperature.yml b/src/earthkit/plots/styles/default/styles/near-surface-air-temperature.yml similarity index 100% rename from src/default/styles/near-surface-air-temperature.yml rename to src/earthkit/plots/styles/default/styles/near-surface-air-temperature.yml diff --git a/src/default/styles/river-discharge-24-hours.yml b/src/earthkit/plots/styles/default/styles/river-discharge-24-hours.yml similarity index 100% rename from src/default/styles/river-discharge-24-hours.yml rename to src/earthkit/plots/styles/default/styles/river-discharge-24-hours.yml diff --git a/src/default/styles/river-discharge-6-hours.yml b/src/earthkit/plots/styles/default/styles/river-discharge-6-hours.yml similarity index 100% rename from src/default/styles/river-discharge-6-hours.yml rename to src/earthkit/plots/styles/default/styles/river-discharge-6-hours.yml diff --git a/src/default/styles/sea-surface-temperature.yml b/src/earthkit/plots/styles/default/styles/sea-surface-temperature.yml similarity index 100% rename from src/default/styles/sea-surface-temperature.yml rename to src/earthkit/plots/styles/default/styles/sea-surface-temperature.yml diff --git a/src/default/styles/temperature-at-850hPa.yml b/src/earthkit/plots/styles/default/styles/temperature-at-850hPa.yml similarity index 100% rename from src/default/styles/temperature-at-850hPa.yml rename to src/earthkit/plots/styles/default/styles/temperature-at-850hPa.yml diff --git a/src/default/styles/total-precipitation.yml b/src/earthkit/plots/styles/default/styles/total-precipitation.yml similarity index 100% rename from src/default/styles/total-precipitation.yml rename to src/earthkit/plots/styles/default/styles/total-precipitation.yml diff --git a/src/default/styles/wind-gust-at-10m-in-last-6-hours.yml b/src/earthkit/plots/styles/default/styles/wind-gust-at-10m-in-last-6-hours.yml similarity index 100% rename from src/default/styles/wind-gust-at-10m-in-last-6-hours.yml rename to src/earthkit/plots/styles/default/styles/wind-gust-at-10m-in-last-6-hours.yml diff --git a/src/earthkit/plots/styles/default/styles/wind-speed-at-10m.yml b/src/earthkit/plots/styles/default/styles/wind-speed-at-10m.yml new file mode 100644 index 0000000..e3c3bd4 --- /dev/null +++ b/src/earthkit/plots/styles/default/styles/wind-speed-at-10m.yml @@ -0,0 +1,11 @@ +--- +id: wind-gust-at-10m-in-last-6-hours +optimal: WIND_GUST_AT_10M_IN_LAST_6_HOURS_IN_METERS_PER_SECOND + +styles: + + WIND_GUST_AT_10M_IN_LAST_6_HOURS_IN_METERS_PER_SECOND: + type: Style + colors: ["#85AAEE", "#208EFC", "#6CA632", "#FFB000", "#FF0000", "#7A11B1"] + levels: [12, 15, 20, 25, 30, 35, 50] + units: m s-1 \ No newline at end of file From ced20ed9ddef23e13917801e463a9745b31a9ddd Mon Sep 17 00:00:00 2001 From: Harrison Cook Date: Fri, 7 Mar 2025 12:02:03 +0000 Subject: [PATCH 9/9] Fix path --- pyproject.toml | 4 ++-- .../default => earthkit_plots_default_styles}/__init__.py | 0 .../identities/mean-sea-level-pressure.yml | 0 .../identities/near-surface-air-temperature.yml | 0 .../identities/river-discharge-24-hours.yml | 0 .../identities/river-discharge-6-hours.yml | 0 .../identities/sea-surface-temperature.yml | 0 .../identities/temperature-at-850hPa.yml | 0 .../identities/total-precipitation.yml | 0 .../identities/wind-gust-at-10m-in-last-6-hours.yml | 0 .../default => earthkit_plots_default_styles}/schema.yml | 0 .../styles/mean-sea-level-pressure.yml | 0 .../styles/near-surface-air-temperature.yml | 0 .../styles/river-discharge-24-hours.yml | 0 .../styles/river-discharge-6-hours.yml | 0 .../styles/sea-surface-temperature.yml | 0 .../styles/temperature-at-850hPa.yml | 0 .../styles/total-precipitation.yml | 0 .../styles/wind-gust-at-10m-in-last-6-hours.yml | 0 .../styles/wind-speed-at-10m.yml | 0 20 files changed, 2 insertions(+), 2 deletions(-) rename src/{earthkit/plots/styles/default => earthkit_plots_default_styles}/__init__.py (100%) rename src/{earthkit/plots/styles/default => earthkit_plots_default_styles}/identities/mean-sea-level-pressure.yml (100%) rename src/{earthkit/plots/styles/default => earthkit_plots_default_styles}/identities/near-surface-air-temperature.yml (100%) rename src/{earthkit/plots/styles/default => earthkit_plots_default_styles}/identities/river-discharge-24-hours.yml (100%) rename src/{earthkit/plots/styles/default => earthkit_plots_default_styles}/identities/river-discharge-6-hours.yml (100%) rename src/{earthkit/plots/styles/default => earthkit_plots_default_styles}/identities/sea-surface-temperature.yml (100%) rename src/{earthkit/plots/styles/default => earthkit_plots_default_styles}/identities/temperature-at-850hPa.yml (100%) rename src/{earthkit/plots/styles/default => earthkit_plots_default_styles}/identities/total-precipitation.yml (100%) rename src/{earthkit/plots/styles/default => earthkit_plots_default_styles}/identities/wind-gust-at-10m-in-last-6-hours.yml (100%) rename src/{earthkit/plots/styles/default => earthkit_plots_default_styles}/schema.yml (100%) rename src/{earthkit/plots/styles/default => earthkit_plots_default_styles}/styles/mean-sea-level-pressure.yml (100%) rename src/{earthkit/plots/styles/default => earthkit_plots_default_styles}/styles/near-surface-air-temperature.yml (100%) rename src/{earthkit/plots/styles/default => earthkit_plots_default_styles}/styles/river-discharge-24-hours.yml (100%) rename src/{earthkit/plots/styles/default => earthkit_plots_default_styles}/styles/river-discharge-6-hours.yml (100%) rename src/{earthkit/plots/styles/default => earthkit_plots_default_styles}/styles/sea-surface-temperature.yml (100%) rename src/{earthkit/plots/styles/default => earthkit_plots_default_styles}/styles/temperature-at-850hPa.yml (100%) rename src/{earthkit/plots/styles/default => earthkit_plots_default_styles}/styles/total-precipitation.yml (100%) rename src/{earthkit/plots/styles/default => earthkit_plots_default_styles}/styles/wind-gust-at-10m-in-last-6-hours.yml (100%) rename src/{earthkit/plots/styles/default => earthkit_plots_default_styles}/styles/wind-speed-at-10m.yml (100%) diff --git a/pyproject.toml b/pyproject.toml index 6583fa5..8db2e5e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -39,10 +39,10 @@ add_ignore = ["D1", "D200", "D205", "D400", "D401"] convention = "numpy" [project.entry-points.'earthkit.plots.plugins'] -default = 'earthkit.plots.styles.default' +default = 'earthkit_plots_default_styles' [tool.setuptools.packages.find] where = ["src/"] [tool.setuptools_scm] -version_file = "src/earthkit/plots/styles/default/_version.py" \ No newline at end of file +version_file = "src/earthkit_plots_default_styles/_version.py" \ No newline at end of file diff --git a/src/earthkit/plots/styles/default/__init__.py b/src/earthkit_plots_default_styles/__init__.py similarity index 100% rename from src/earthkit/plots/styles/default/__init__.py rename to src/earthkit_plots_default_styles/__init__.py diff --git a/src/earthkit/plots/styles/default/identities/mean-sea-level-pressure.yml b/src/earthkit_plots_default_styles/identities/mean-sea-level-pressure.yml similarity index 100% rename from src/earthkit/plots/styles/default/identities/mean-sea-level-pressure.yml rename to src/earthkit_plots_default_styles/identities/mean-sea-level-pressure.yml diff --git a/src/earthkit/plots/styles/default/identities/near-surface-air-temperature.yml b/src/earthkit_plots_default_styles/identities/near-surface-air-temperature.yml similarity index 100% rename from src/earthkit/plots/styles/default/identities/near-surface-air-temperature.yml rename to src/earthkit_plots_default_styles/identities/near-surface-air-temperature.yml diff --git a/src/earthkit/plots/styles/default/identities/river-discharge-24-hours.yml b/src/earthkit_plots_default_styles/identities/river-discharge-24-hours.yml similarity index 100% rename from src/earthkit/plots/styles/default/identities/river-discharge-24-hours.yml rename to src/earthkit_plots_default_styles/identities/river-discharge-24-hours.yml diff --git a/src/earthkit/plots/styles/default/identities/river-discharge-6-hours.yml b/src/earthkit_plots_default_styles/identities/river-discharge-6-hours.yml similarity index 100% rename from src/earthkit/plots/styles/default/identities/river-discharge-6-hours.yml rename to src/earthkit_plots_default_styles/identities/river-discharge-6-hours.yml diff --git a/src/earthkit/plots/styles/default/identities/sea-surface-temperature.yml b/src/earthkit_plots_default_styles/identities/sea-surface-temperature.yml similarity index 100% rename from src/earthkit/plots/styles/default/identities/sea-surface-temperature.yml rename to src/earthkit_plots_default_styles/identities/sea-surface-temperature.yml diff --git a/src/earthkit/plots/styles/default/identities/temperature-at-850hPa.yml b/src/earthkit_plots_default_styles/identities/temperature-at-850hPa.yml similarity index 100% rename from src/earthkit/plots/styles/default/identities/temperature-at-850hPa.yml rename to src/earthkit_plots_default_styles/identities/temperature-at-850hPa.yml diff --git a/src/earthkit/plots/styles/default/identities/total-precipitation.yml b/src/earthkit_plots_default_styles/identities/total-precipitation.yml similarity index 100% rename from src/earthkit/plots/styles/default/identities/total-precipitation.yml rename to src/earthkit_plots_default_styles/identities/total-precipitation.yml diff --git a/src/earthkit/plots/styles/default/identities/wind-gust-at-10m-in-last-6-hours.yml b/src/earthkit_plots_default_styles/identities/wind-gust-at-10m-in-last-6-hours.yml similarity index 100% rename from src/earthkit/plots/styles/default/identities/wind-gust-at-10m-in-last-6-hours.yml rename to src/earthkit_plots_default_styles/identities/wind-gust-at-10m-in-last-6-hours.yml diff --git a/src/earthkit/plots/styles/default/schema.yml b/src/earthkit_plots_default_styles/schema.yml similarity index 100% rename from src/earthkit/plots/styles/default/schema.yml rename to src/earthkit_plots_default_styles/schema.yml diff --git a/src/earthkit/plots/styles/default/styles/mean-sea-level-pressure.yml b/src/earthkit_plots_default_styles/styles/mean-sea-level-pressure.yml similarity index 100% rename from src/earthkit/plots/styles/default/styles/mean-sea-level-pressure.yml rename to src/earthkit_plots_default_styles/styles/mean-sea-level-pressure.yml diff --git a/src/earthkit/plots/styles/default/styles/near-surface-air-temperature.yml b/src/earthkit_plots_default_styles/styles/near-surface-air-temperature.yml similarity index 100% rename from src/earthkit/plots/styles/default/styles/near-surface-air-temperature.yml rename to src/earthkit_plots_default_styles/styles/near-surface-air-temperature.yml diff --git a/src/earthkit/plots/styles/default/styles/river-discharge-24-hours.yml b/src/earthkit_plots_default_styles/styles/river-discharge-24-hours.yml similarity index 100% rename from src/earthkit/plots/styles/default/styles/river-discharge-24-hours.yml rename to src/earthkit_plots_default_styles/styles/river-discharge-24-hours.yml diff --git a/src/earthkit/plots/styles/default/styles/river-discharge-6-hours.yml b/src/earthkit_plots_default_styles/styles/river-discharge-6-hours.yml similarity index 100% rename from src/earthkit/plots/styles/default/styles/river-discharge-6-hours.yml rename to src/earthkit_plots_default_styles/styles/river-discharge-6-hours.yml diff --git a/src/earthkit/plots/styles/default/styles/sea-surface-temperature.yml b/src/earthkit_plots_default_styles/styles/sea-surface-temperature.yml similarity index 100% rename from src/earthkit/plots/styles/default/styles/sea-surface-temperature.yml rename to src/earthkit_plots_default_styles/styles/sea-surface-temperature.yml diff --git a/src/earthkit/plots/styles/default/styles/temperature-at-850hPa.yml b/src/earthkit_plots_default_styles/styles/temperature-at-850hPa.yml similarity index 100% rename from src/earthkit/plots/styles/default/styles/temperature-at-850hPa.yml rename to src/earthkit_plots_default_styles/styles/temperature-at-850hPa.yml diff --git a/src/earthkit/plots/styles/default/styles/total-precipitation.yml b/src/earthkit_plots_default_styles/styles/total-precipitation.yml similarity index 100% rename from src/earthkit/plots/styles/default/styles/total-precipitation.yml rename to src/earthkit_plots_default_styles/styles/total-precipitation.yml diff --git a/src/earthkit/plots/styles/default/styles/wind-gust-at-10m-in-last-6-hours.yml b/src/earthkit_plots_default_styles/styles/wind-gust-at-10m-in-last-6-hours.yml similarity index 100% rename from src/earthkit/plots/styles/default/styles/wind-gust-at-10m-in-last-6-hours.yml rename to src/earthkit_plots_default_styles/styles/wind-gust-at-10m-in-last-6-hours.yml diff --git a/src/earthkit/plots/styles/default/styles/wind-speed-at-10m.yml b/src/earthkit_plots_default_styles/styles/wind-speed-at-10m.yml similarity index 100% rename from src/earthkit/plots/styles/default/styles/wind-speed-at-10m.yml rename to src/earthkit_plots_default_styles/styles/wind-speed-at-10m.yml