climate_ref_pmp.diagnostics.variability_modes
#
ExtratropicalModesOfVariability
#
Bases: CommandLineDiagnostic
Calculate the extratropical modes of variability for a given area
Source code in packages/climate-ref-pmp/src/climate_ref_pmp/diagnostics/variability_modes.py
18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 | |
build_cmd(definition)
#
Build the command to run the diagnostic
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
definition
|
ExecutionDefinition
|
Definition of the diagnostic execution |
required |
Returns:
| Type | Description |
|---|---|
Command arguments to execute in the PMP environment
|
|
Source code in packages/climate-ref-pmp/src/climate_ref_pmp/diagnostics/variability_modes.py
build_execution_result(definition)
#
Build a diagnostic result from the output of the PMP driver
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
definition
|
ExecutionDefinition
|
Definition of the diagnostic execution |
required |
Returns:
| Type | Description |
|---|---|
Result of the diagnostic execution
|
|
Source code in packages/climate-ref-pmp/src/climate_ref_pmp/diagnostics/variability_modes.py
clean_up_json(json_file)
#
Clean up the JSON file by removing unnecessary fields.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
json_file
|
str or Path
|
Path to the JSON file to clean up. |
required |
Source code in packages/climate-ref-pmp/src/climate_ref_pmp/diagnostics/variability_modes.py
remove_null_values(data)
#
Recursively removes keys with null (None) values from a dictionary or list.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
data
|
dict, list, or Any
|
The JSON-like data structure to process. It can be a dictionary, a list, or any other type of data. |
required |
Returns:
| Type | Description |
|---|---|
dict, list, or Any
|
A new data structure with null values removed. If the input is a dictionary,
keys with |
Examples:
>>> data = {
... "key1": None,
... "key2": {"subkey1": 123, "subkey2": None},
... "key3": [None, 456, {"subkey3": None}],
... }
>>> remove_null_values(data)
{'key2': {'subkey1': 123}, 'key3': [456, {}]}