Skip to content

processor


NormalisingChannelProcessor

Bases: Processor

TODO: at the moment this class implementation is solely intended to break apart the heavier lifting happening via xarray, for the most part

Source code in preprocess_toolbox/processor.py
 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
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
245
246
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
310
311
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
348
349
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
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
class NormalisingChannelProcessor(Processor):
    """

    TODO: at the moment this class implementation is solely intended to break apart
     the heavier lifting happening via xarray, for the most part

    """

    def __init__(self,
                 dataset_config: DatasetConfig,
                 anomoly_vars: list,
                 splits: dict,
                 *args,
                 anom_clim_splits: list = None,
                 clim_frequency: Frequency = Frequency.MONTH,
                 init_source: bool = True,
                 lag_time: int = 1,
                 lead_time: int = 3,
                 linear_trends: list = None,
                 linear_trend_steps: int = 7,
                 minmax: bool = True,
                 no_normalise: tuple = None,
                 normalisation_splits: list = None,
                 parallel_opens: bool = True,
                 ref_procdir: os.PathLike = None,
                 **kwargs):
        """

        Args:
            dataset_config:
            anomoly_vars:
            splits:
            *args:
            anom_clim_splits:
            clim_frequency:
            lag_time:
            lead_time:
            linear_trends:
            linear_trend_steps:
            minmax:
            no_normalise:
            normalisation_splits:
            parallel_opens:
            ref_procdir:
            **kwargs:
        """
        super().__init__(dataset_config, *args, **kwargs)

        if clim_frequency != Frequency.MONTH:
            raise NotImplementedError("We only generate climatologies at a monthly resolution, "
                                      "this needs implementation")

        self._anom_clim_splits = [] if anom_clim_splits is None else anom_clim_splits
        self._anom_vars = anomoly_vars if anomoly_vars else []
        self._dataset_config = dataset_config.config_path
        # This is important to inherit from the dataset and carry forward, it has a lot of downstream impact
        # TODO: time and spatial information validation - if the source changes what do we do!?
        self._frequency = dataset_config.frequency
        self._lag_time = lag_time
        self._lead_time = lead_time
        self._linear_trends = linear_trends
        # TODO: spatial information has been overlooked so far, but needs to carry forward and validate
        self._location = dataset_config.location

        if type(linear_trend_steps) is int:
            logging.debug(
                "Setting range for linear trend steps based on {}".format(
                    linear_trend_steps))
            self._linear_trend_steps = list(range(1, linear_trend_steps + 1))
        else:
            self._linear_trend_steps = [int(el) for el in linear_trend_steps]

        self._no_normalise = no_normalise if no_normalise is not None else tuple()
        self._normalise = self._normalise_array_mean \
            if not minmax else self._normalise_array_scaling
        self._normalisation_splits = [] if normalisation_splits is None else normalisation_splits
        self._parallel = parallel_opens
        self._refdir = ref_procdir
        # TODO: splits -> { dates, sources }, but currently sources are separate...
        self._splits = splits
        self._source_files = dict()

        if init_source:
            self._init_source_data(dataset_config)

    def _build_linear_trend_da(self,
                               input_da: object,
                               var_name: str,
                               max_years: int = 35,
                               ref_da: object = None):
        """
        Construct a DataArray `linear_trend_da` containing the linear trend
        forecasts based on the input DataArray `input_da`.

        :param input_da:
        :param var_name:
        :param max_years:
        :param ref_da:
        :return:
        """

        if ref_da is None:
            ref_da = input_da
        data_dates = sorted([pd.Timestamp(date) for date in input_da.time.values])

        trend_dates = set()
        trend_steps = max(self._linear_trend_steps)

        extract_date_map = dict(
            year=lambda dt: "{}".format(dt.year),
            month=lambda dt: "{}-{}".format(dt.year, dt.month),
            day=lambda dt: "{}-{}-{}".format(dt.year, dt.month, dt.day),
            hour=lambda dt: "{}-{}-{}T{}".format(dt.year, dt.month, dt.day, dt.hour),
        )
        if self._frequency.attribute == "hour":
            raise NotImplementedError("Hour based linear trends are not implemented yet")

        trend_range = pd.date_range(pd.to_datetime(extract_date_map[self._frequency.attribute](data_dates[0])),
                                    pd.to_datetime(extract_date_map[self._frequency.attribute](data_dates[-1])) +
                                    relativedelta(**{"{}s".format(self._frequency.attribute): trend_steps + 1}),
                                    freq=self._frequency.freq)

        logging.info("Generating trend data up to {} steps ahead for {} dates".
                     format(trend_steps, len(data_dates)))

        for dat_date in data_dates:
            base_idx = list(trend_range).index(dat_date)
            trend_dates = trend_dates.union([
                trend_range[base_idx + idx]
                for idx in self._linear_trend_steps
            ])

        trend_dates = list(sorted(trend_dates))
        logging.info("Generating {} trend dates".format(len(trend_dates)))

        linear_trend_da = \
            xr.broadcast(input_da, xr.DataArray(trend_range, dims="time"))[0]
        linear_trend_da = linear_trend_da.sel(time=trend_dates)
        linear_trend_da.data = dask.array.zeros(linear_trend_da.shape)

        # TODO: what are we applying this for here?
        # land_mask = Masks(north=self.north, south=self.south).get_land_mask()

        # Could use shelve, but more likely we'll run into concurrency issues
        # pickleshare might be an option but a little over-engineery
        trend_cache_path = os.path.join(self.path,
                                        "{}_linear_trend.nc".format(var_name))
        trend_cache = linear_trend_da.copy()
        trend_cache.data = dask.array.full_like(linear_trend_da.data, np.nan)

        if os.path.exists(trend_cache_path):
            trend_cache = xr.open_dataarray(trend_cache_path)
            logging.info("Loaded {} entries from {}".format(
                len(trend_cache.time), trend_cache_path))

        def data_selector(da, processing_date, missing_dates=tuple()):
            target_date = pd.to_datetime(processing_date)

            if self._frequency == Frequency.MONTH:
                date_da = da[(da.time['time.month'] == target_date.month) &
                             (da.time <= target_date) &
                             ~da.time.isin(missing_dates)].\
                    isel(time=slice(0, max_years))
            elif self._frequency == Frequency.DAY:
                # TODO: We're assuming the linear trend as a day-res year long application
                # TODO: I've hacked a leap year in for the mo, but this should be using loc, a simplified clause and isel
                #  such as by starting with date_da = da.loc[target_date:]
                date_da = da[(da.time['time.month'] == target_date.month) &
                             ((da.time['time.day'] == target_date.day) |
                              (da.time["time.day"] == target_date.day - 1)) &
                             (da.time <= target_date) &
                             ~da.time.isin(missing_dates)].\
                    isel(time=slice(0, max_years))
            return date_da

        for forecast_date in sorted(trend_dates, reverse=True):
            if not trend_cache.sel(time=forecast_date).isnull().all():
                output_map = trend_cache.sel(time=forecast_date)
            else:
                output_map = linear_trend_forecast(
                    data_selector,
                    forecast_date,
                    ref_da,
                    None,  # masks
                    missing_dates=[], # TODO: self._missing_dates,
                    shape=ref_da.isel(time=0).shape, # shape
                )

            linear_trend_da.loc[dict(time=forecast_date)] = output_map

        logging.info("Writing new trend cache for {}".format(var_name))
        trend_cache.close()
        linear_trend_da = linear_trend_da.rename("{}_linear_trend".format(var_name))
        self.save_processed_file("{}_linear_trend".format(var_name),
                                 "{}_linear_trend.nc".format(var_name),
                                 linear_trend_da)

        return linear_trend_da

    def _init_source_data(self,
                          ds_config: DatasetConfig) -> None:
        """

        :return:
        """

        split_dates_required = dict()
        drop_dates = dict()

        for split in self._splits.keys():
            dates = sorted(self._splits[split])
            drop_dates[split] = list()

            if dates:
                logging.info("Processing {} dates for {} category: {} - {}".
                             format(len(dates), split, min(dates), max(dates)))
            else:
                logging.info("No {} dates for this processor".format(split))
                continue

            # Calculating lead and lag dates that aren't already accounted for in splits
            if self._lag_time > 0:
                logging.info("Including lag of {} {}s".format(self._lag_time, ds_config.frequency.attribute))
                additional_lag_dates, dropped_lag_dates = get_extension_dates(ds_config, dates, self._lag_time, reverse=True)
                dates += additional_lag_dates
                drop_dates[split] += dropped_lag_dates
                logging.info("Lag added {} dates for {} category: {} - {}".
                             format(len(dates), split, min(dates), max(dates)))
            if self._lead_time > 0:
                logging.info("Including lead of {} {}s".format(self._lead_time, ds_config.frequency.attribute))
                additional_lead_dates, dropped_lead_dates = get_extension_dates(ds_config, dates, self._lead_time)
                dates += additional_lead_dates
                drop_dates[split] += dropped_lead_dates
                logging.info("Lead added {} dates for {} category: {} - {}".
                             format(len(dates), split, min(dates), max(dates)))

            split_dates_required[split] = sorted([_ for _ in dates if _ not in drop_dates[split]])

        for split in self._splits.keys():
            self._source_files[split] = {var_config.name: ds_config.var_filepaths(var_config, split_dates_required[split])
                                         for var_config in ds_config.variables}

            for var_name, var_files in self._source_files[split].items():
                logging.info("Got {} files for {}:{}".format(len(var_files), split, var_name))
        logging.debug(pformat(self._source_files))

    def _normalise_array_mean(self, var_name: str, da: object, denormalise: bool=False):
        """
        Using the *training* data only, compute the mean and
        standard deviation of the input raw satellite DataArray (`da`)
        and return a normalised version. If minmax=True,
        instead normalise to lie between min and max of the elements of `array`.

        If min, max, mean, or std are given values other than None,
        those values are used rather than being computed from the training
        months.

        :param var_name:
        :param da:
        :return:
        """

        if self._refdir is not None:
            logging.info("Using alternate processing directory {} for "
                         "mean".format(self._refdir))
            proc_dir = os.path.join(self._refdir, "normalisation.mean")
        else:
            proc_dir = self.get_data_var_folder("normalisation.mean")

        mean_path = os.path.join(proc_dir, "{}".format(var_name))

        if os.path.exists(mean_path):
            logging.debug(
                "Loading norm-average mean-std from {}".format(mean_path))
            mean, std = tuple([
                self.dtype(el)
                for el in open(mean_path, "r").read().split(",")
            ])
        elif len(self.norm_split_dates) > 0:
            logging.debug("Generating norm-average mean-std from {} training "
                          "dates".format(len(self.norm_split_dates)))
            norm_samples = da.sel(time=self.norm_split_dates).data
            norm_samples = norm_samples.ravel()

            mean, std = Processor.mean_and_std(norm_samples)
        else:
            raise RuntimeError("Either a normalisation file or normalisation split dates "
                               "must be supplied")

        if not denormalise:
            new_da = (da - mean) / std
        else:
            new_da = da * std + mean

        if self._refdir is None:
            open(mean_path, "w").write(",".join([str(f) for f in [float(mean), float(std)]]))
        return new_da

    def _normalise_array_scaling(self, var_name: str, da: object, denormalise: bool=False):
        """

        :param var_name:
        :param da:
        :return:
        """
        if self._refdir is not None:
            logging.info("Using alternate processing directory {} for "
                         "scaling".format(self._refdir))
            proc_dir = os.path.join(self._refdir, "normalisation.scale")
        else:
            proc_dir = self.get_data_var_folder("normalisation.scale")

        scale_path = os.path.join(proc_dir, "{}".format(var_name))

        if os.path.exists(scale_path):
            logging.debug(
                "Loading norm-scaling min-max from {}".format(scale_path))
            minimum, maximum = tuple([
                self.dtype(el)
                for el in open(scale_path, "r").read().split(",")
            ])
        elif self.norm_split_dates:
            logging.debug("Generating norm-scaling min-max from {} training "
                          "dates".format(len(self.norm_split_dates)))

            norm_samples = da.sel(time=self.norm_split_dates).data
            norm_samples = norm_samples.ravel()

            minimum = dask.array.nanmin(norm_samples).astype(self.dtype)
            maximum = dask.array.nanmax(norm_samples).astype(self.dtype)
        else:
            raise RuntimeError("Either a normalisation file or training data "
                               "must be supplied")

        if not denormalise:
            new_da = (da - minimum) / (maximum - minimum)
        else:
            new_da = da * (maximum - minimum) + minimum

        if self._refdir is None:
            open(scale_path, "w").write(",".join([str(f) for f in [float(minimum), float(maximum)]]))
        return new_da

    def _process_channel(self,
                         var_name: str,
                         var_suffix: str):
        """

        :param var_name:
        :param var_suffix:
        """

        with dask.config.set(**{'array.slicing.split_large_chunks': True}):
            try:
                source_files = list(sorted(set([file
                                                for split, var_files in self.source_files.items()
                                                for vn, files in var_files.items()
                                                for file in files
                                                if var_name == vn])))

                if len(source_files) > 0:
                    logging.info("Opening {} files for {}".format(len(source_files), var_name))

                    # In the old IceNet library there was dubiousness about the source of the
                    # data so this was harder. Now we work with whatever we get from download-toolbox
                    ds = xr.open_mfdataset(
                        source_files,
                        # Solves issue with inheriting files without
                        # time dimension (only having coordinate)
                        combine="nested",
                        concat_dim="time",
                        coords="minimal",
                        compat="override",
                        # TODO: review this, but if lat-lon is in the file, it's signalling bigger issues
                        # drop_variables=("lat", "lon"),
                        parallel=self._parallel)
                    da = getattr(ds, var_name)
                    da = da.astype(self.dtype)

                    # FIXME: we should ideally store train dates against the
                    #  normalisation and climatology, to ensure recalculation on
                    #  reprocess. All this need be is in the path, to be honest

                    if var_suffix == "anom":
                        if len(self._anom_clim_splits) < 1 and self._refdir is None:
                            raise ProcessingError("You must provide a list of splits via "
                                                  "anom_clim_splits if you have anomoly channels")

                        if self._refdir is not None:
                            logging.info("Loading climatology from alternate directory: {}".format(self._refdir))
                            clim_path = os.path.join(self._refdir, "params", "climatology.{}".format(var_name))
                        else:
                            clim_path = os.path.join(self.get_data_var_folder("params"), "climatology.{}".format(var_name))

                        # TODO: farm out with adaptive frequency the generation of climatologies
                        if not os.path.exists(clim_path):
                            logging.info("Generating climatology {}".format(clim_path))

                            if len(self.anom_split_dates) > 0:
                                climatology = da.sel(time=self.anom_split_dates).\
                                    groupby('time.month', restore_coord_dims=True).\
                                    mean()

                                climatology.to_netcdf(clim_path)
                            else:
                                raise ProcessingError(
                                    "{} does not exist and no dates are supplied valid for generation".
                                    format(clim_path))
                        else:
                            logging.info("Reusing climatology {}".format(clim_path))
                            climatology = xr.open_dataarray(clim_path)

                        if not set(da.groupby("time.month").all().month.values).\
                                issubset(set(climatology.month.values)):
                            logging.warning(
                                "We don't have a full climatology ({}) "
                                "compared with data ({})".format(
                                    ",".join(
                                        [str(i) for i in climatology.month.values]),
                                    ",".join([
                                        str(i) for i in da.groupby(
                                            "time.month").all().month.values
                                    ])))
                            da = da - climatology.mean()
                        else:
                            da = da.groupby("time.month") - climatology

                    da = self.pre_normalisation(var_name, da)
                    # We don't do this (https://github.com/tom-andersson/icenet2/
                    # blob/4ca0f1300fbd82335d8bb000c85b1e71855630fa/icenet2/utils.py#L520) any more

                    if var_name in self._no_normalise:
                        logging.info("No normalisation for {}".format(var_name))
                    else:
                        logging.info("Normalising {}".format(var_name))
                        da = self._normalise(var_name, da)

                    da = self.post_normalisation(var_name, da)

                    # TODO: a nicer way of implementing derived channels would make sense
                    if self._linear_trends is not None:
                        if var_name in self._linear_trends and var_suffix == "abs":
                            ref_da = None

                            if self._refdir is not None:
                                logging.info(
                                    "We have a reference {}, so will load "
                                    "and supply abs from that for linear trend of "
                                    "{}".format(self._refdir, var_name))
                                ref_da = xr.open_dataarray(
                                    os.path.join(self._refdir, "{}_{}.nc".format(var_name, var_suffix)))

                            self._build_linear_trend_da(da, var_name, ref_da=ref_da)

                        elif var_name in self._linear_trends \
                                and var_name not in self._abs_vars:
                            raise NotImplementedError(
                                "You've asked for linear trend "
                                "without an  absolute value var: {}".format(var_name))

                    self.save_processed_file(
                        "{}_{}".format(var_name, var_suffix),
                        "{}_{}.nc".format(var_name, var_suffix),
                        da.rename("_".join([var_name, var_suffix])))
                else:
                    logging.warning("No source files available for {}{}".format(var_name, var_suffix))
            except KeyError as e:
                logging.exception("Received KeyError for dataset {} from files {}, "
                                  "quite often this means required data is missing".format(ds, source_files))

    def get_config(self, **kwargs):
        """

        Args:
            **kwargs:

        """

        return {
            "implementation": "{}:{}".format(self.__module__, self.__class__.__name__),
            "anomoly_vars": self._anom_vars,
            "absolute_vars": self.abs_vars,
            "dataset_config": self._dataset_config,
            "lag_time": self._lag_time,
            "lead_time": self._lead_time,
            "linear_trends": self._linear_trends,
            "linear_trend_steps": self._linear_trend_steps,
            "path": self.path,
            "processed_files": self._processed_files,
            "source_files": self._source_files,
            "splits": self.splits,
        }

    @staticmethod
    def mean_and_std(array: object):
        """
        Return the mean and standard deviation of an array-like object (intended
        use case is for normalising a raw satellite data array based on a list
        of samples used for training).
        :param array:
        :return:
        """

        mean = dask.array.nanmean(array)
        std = dask.array.nanstd(array)

        logging.info("Mean: {:.3f}, std: {:.3f}".format(
            mean.item(), std.item()))

        return mean, std

    def pre_normalisation(self, var_name: str, da: object):
        """

        :param var_name:
        :param da:
        :return:
        """
        logging.debug(
            "No pre normalisation implemented for {}".format(var_name))
        return da

    def post_normalisation(self, var_name: str, da: object):
        """

        :param var_name:
        :param da:
        :return:
        """
        logging.debug(
            "No post normalisation implemented for {}".format(var_name))
        return da

    def process(self,
                config_path: os.PathLike = None):
        var_suffixes = ["abs", "anom"]
        var_lists = [getattr(self, "_{}_vars".format(vs)) for vs in var_suffixes]
        for var_suffix, var_list in zip(var_suffixes, var_lists):
            for var_name in var_list:
                if var_name not in set([source_name
                                        for split, split_vars in self.source_files.items()
                                        for source_name in split_vars.keys()]):
                    logging.warning("{} does not exist in data, you can't use it as a variable".format(var_name))
                else:
                    self._process_channel(var_name, var_suffix)

        self.save_config()

    @property
    def anom_split_dates(self) -> list:
        # TODO: functools.cached_property, though slightly odd behaviour re. write-ability
        return [date
                for clim_split in self._anom_clim_splits
                for date in self._splits[clim_split]]

    @property
    def dataset_config(self):
        return self._dataset_config

    @property
    def lag_time(self) -> int:
        """The lead time used in the data processing."""
        return self._lag_time

    @property
    def lead_time(self) -> int:
        """The lead time used in the data processing."""
        return self._lead_time

    @property
    def norm_split_dates(self):
        # TODO: functools.cached_property, though slightly odd behaviour re. write-ability
        return [date
                for clim_split in self._normalisation_splits
                for date in self._splits[clim_split]]

    @property
    def source_files(self) -> dict:
        return self._source_files

    @property
    def splits(self) -> object:
        """The dates used for training, validation, and testing in this class as a named collections.tuple."""
        return self._splits

lag_time property

The lead time used in the data processing.

lead_time property

The lead time used in the data processing.

splits property

The dates used for training, validation, and testing in this class as a named collections.tuple.

__init__(dataset_config, anomoly_vars, splits, *args, anom_clim_splits=None, clim_frequency=Frequency.MONTH, init_source=True, lag_time=1, lead_time=3, linear_trends=None, linear_trend_steps=7, minmax=True, no_normalise=None, normalisation_splits=None, parallel_opens=True, ref_procdir=None, **kwargs)

Args: dataset_config: anomoly_vars: splits: args: anom_clim_splits: clim_frequency: lag_time: lead_time: linear_trends: linear_trend_steps: minmax: no_normalise: normalisation_splits: parallel_opens: ref_procdir: *kwargs:

Source code in preprocess_toolbox/processor.py
 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
def __init__(self,
             dataset_config: DatasetConfig,
             anomoly_vars: list,
             splits: dict,
             *args,
             anom_clim_splits: list = None,
             clim_frequency: Frequency = Frequency.MONTH,
             init_source: bool = True,
             lag_time: int = 1,
             lead_time: int = 3,
             linear_trends: list = None,
             linear_trend_steps: int = 7,
             minmax: bool = True,
             no_normalise: tuple = None,
             normalisation_splits: list = None,
             parallel_opens: bool = True,
             ref_procdir: os.PathLike = None,
             **kwargs):
    """

    Args:
        dataset_config:
        anomoly_vars:
        splits:
        *args:
        anom_clim_splits:
        clim_frequency:
        lag_time:
        lead_time:
        linear_trends:
        linear_trend_steps:
        minmax:
        no_normalise:
        normalisation_splits:
        parallel_opens:
        ref_procdir:
        **kwargs:
    """
    super().__init__(dataset_config, *args, **kwargs)

    if clim_frequency != Frequency.MONTH:
        raise NotImplementedError("We only generate climatologies at a monthly resolution, "
                                  "this needs implementation")

    self._anom_clim_splits = [] if anom_clim_splits is None else anom_clim_splits
    self._anom_vars = anomoly_vars if anomoly_vars else []
    self._dataset_config = dataset_config.config_path
    # This is important to inherit from the dataset and carry forward, it has a lot of downstream impact
    # TODO: time and spatial information validation - if the source changes what do we do!?
    self._frequency = dataset_config.frequency
    self._lag_time = lag_time
    self._lead_time = lead_time
    self._linear_trends = linear_trends
    # TODO: spatial information has been overlooked so far, but needs to carry forward and validate
    self._location = dataset_config.location

    if type(linear_trend_steps) is int:
        logging.debug(
            "Setting range for linear trend steps based on {}".format(
                linear_trend_steps))
        self._linear_trend_steps = list(range(1, linear_trend_steps + 1))
    else:
        self._linear_trend_steps = [int(el) for el in linear_trend_steps]

    self._no_normalise = no_normalise if no_normalise is not None else tuple()
    self._normalise = self._normalise_array_mean \
        if not minmax else self._normalise_array_scaling
    self._normalisation_splits = [] if normalisation_splits is None else normalisation_splits
    self._parallel = parallel_opens
    self._refdir = ref_procdir
    # TODO: splits -> { dates, sources }, but currently sources are separate...
    self._splits = splits
    self._source_files = dict()

    if init_source:
        self._init_source_data(dataset_config)

get_config(**kwargs)

Args: **kwargs:

Source code in preprocess_toolbox/processor.py
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
def get_config(self, **kwargs):
    """

    Args:
        **kwargs:

    """

    return {
        "implementation": "{}:{}".format(self.__module__, self.__class__.__name__),
        "anomoly_vars": self._anom_vars,
        "absolute_vars": self.abs_vars,
        "dataset_config": self._dataset_config,
        "lag_time": self._lag_time,
        "lead_time": self._lead_time,
        "linear_trends": self._linear_trends,
        "linear_trend_steps": self._linear_trend_steps,
        "path": self.path,
        "processed_files": self._processed_files,
        "source_files": self._source_files,
        "splits": self.splits,
    }

mean_and_std(array) staticmethod

Return the mean and standard deviation of an array-like object (intended use case is for normalising a raw satellite data array based on a list of samples used for training).

Parameters:

Name Type Description Default
array object
required

Returns:

Type Description
Source code in preprocess_toolbox/processor.py
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
@staticmethod
def mean_and_std(array: object):
    """
    Return the mean and standard deviation of an array-like object (intended
    use case is for normalising a raw satellite data array based on a list
    of samples used for training).
    :param array:
    :return:
    """

    mean = dask.array.nanmean(array)
    std = dask.array.nanstd(array)

    logging.info("Mean: {:.3f}, std: {:.3f}".format(
        mean.item(), std.item()))

    return mean, std

post_normalisation(var_name, da)

Parameters:

Name Type Description Default
var_name str
required
da object
required

Returns:

Type Description
Source code in preprocess_toolbox/processor.py
542
543
544
545
546
547
548
549
550
551
def post_normalisation(self, var_name: str, da: object):
    """

    :param var_name:
    :param da:
    :return:
    """
    logging.debug(
        "No post normalisation implemented for {}".format(var_name))
    return da

pre_normalisation(var_name, da)

Parameters:

Name Type Description Default
var_name str
required
da object
required

Returns:

Type Description
Source code in preprocess_toolbox/processor.py
531
532
533
534
535
536
537
538
539
540
def pre_normalisation(self, var_name: str, da: object):
    """

    :param var_name:
    :param da:
    :return:
    """
    logging.debug(
        "No pre normalisation implemented for {}".format(var_name))
    return da