preprocess_toolbox.dataset.process
regrid_dataset(ref_file, process_config, coord_processing=None, coord_processing_args=None, regrid_processing=None, regrid_processing_args=None)
TODO: we need to incorporate OSISAF / SIC grounc truth cube generation into the IceNet library as the native files downloaded just aren't suitable. That doesn't belong in here though! Or if it is included it should be as a helper utility
TODO: regrid_processing needs to come from a module:regrid method in icenet.data.regrid.osisaf, for example which needs to be specified from the command line
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
ref_file
|
PathLike
|
|
required |
process_config
|
DatasetConfig
|
|
required |
coord_processing
|
callable
|
|
None
|
coord_processing_args
|
list
|
|
None
|
regrid_processing
|
callable
|
|
None
|
regrid_processing_args
|
list
|
|
None
|
Source code in preprocess_toolbox/dataset/process.py
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 | |
reproject_dataset(netcdf_file, source_crs=None, target_crs=None, resolution=None, shape=None, target_transform=None, coarsen=1, interpolate_nans=False)
Reprojects a source dataset from a source CRS to a target CRS using rioxarray.
Args: netcdf_file: Path to the NetCDF file or an xarray Dataset/DataArray. source_crs (optional): Source coordinate reference system (CRS). Defaults to "EPSG:4326". target_crs (optional): Target coordinate reference system (CRS). Defaults to "EPSG:6931". resolution (optional): Resolution of the target grid. Defaults to None. shape (optional): Shape of the target grid. Defaults to None. target_transform (optional): Affine transform for the target grid. Defaults to None. coarsen (optional): Factor by which to coarsen the dataset. Defaults to 1. interpolate_nans (optional): Whether to interpolate missing values (NaNs). Defaults to False.
Returns: xarray.Dataset: Reprojected dataset.
Source code in preprocess_toolbox/dataset/process.py
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 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 | |
reproject_dataset_ease2(*args, **kwargs)
Reprojects a dataset to the EASE-Grid 2.0 standard.
Args:
args: Positional arguments to pass to reproject_dataset.
*kwargs: Keyword arguments to pass to reproject_dataset. Must include:
- target_crs (str): Target CRS, must be "EPSG:6931" or "EPSG:6932".
- shape (tuple[int, int], optional): Shape of the target grid. Defaults to (720, 720).
Raises:
ValueError: If target_crs or shape does not match the EASE-Grid 2.0 standard.
Returns: Reprojected dataset.
Source code in preprocess_toolbox/dataset/process.py
247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 | |
reproject_datasets_from_config(process_config, ease2=False, workers=1, **kwargs)
Reprojects multiple datasets from input config file.
Args:
process_config: Configuration object containing dataset file paths.
ease2 (optional): Whether to use EASE-Grid 2.0 standard for reprojection. Defaults to False.
workers (optional): Number of parallel workers to use. Defaults to 1.
**kwargs: Additional arguments to pass to reproject_file.
Source code in preprocess_toolbox/dataset/process.py
350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 | |
reproject_file(datafile, ease2=False, **kwargs)
Reprojects a single NetCDF file.
Args:
datafile (str): Path to the NetCDF file to reproject.
ease2 (optional): Whether to use EASE-Grid 2.0 standard for reprojection. Defaults to False.
**kwargs: Additional arguments to pass to reproject_dataset or reproject_dataset_ease2.
Raises: Exception: If an error occurs during reprojection.
Source code in preprocess_toolbox/dataset/process.py
312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 | |
rotate_dataset(ref_file, process_config, vars_to_rotate=('uas', 'vas'))
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
ref_file
|
PathLike
|
|
required |
process_config
|
DatasetConfig
|
|
required |
vars_to_rotate
|
object
|
|
('uas', 'vas')
|
Source code in preprocess_toolbox/dataset/process.py
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 | |