Skip to content

Commit cca7a31

Browse files
committed
Correct gridding and decumulation documentation
1 parent 0b2a385 commit cca7a31

File tree

1 file changed

+18
-18
lines changed

1 file changed

+18
-18
lines changed

README.md

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -539,24 +539,24 @@ Below there's the current available filters but some more can be developed for s
539539

540540
### Available Filters
541541

542-
####__KiwisFilter:__
543-
Class to filter Kiwis files metadata and obtain a dataframe containing only the coordinates and values to be used for interpolation.
544-
545-
####__ObservationsKiwisFilter:__
546-
Class to filter Kiwis files metadata for stations that contain another station in the vicinity.
547-
Expects to have in filter_args a dictionary containing the provider ID whose stations we want to
548-
filter (as key) and the radius (in decimal degrees) to find the vicinity station from other providers (as value).
549-
550-
####__ProvidersKiwisFilter:__
551-
Class to filter Kiwis files metadata for stations that belong to a list of providers and inside a defined list of time intervals.
552-
Expects to have in filter_args a dictionary containing the provider ID whose stations we want to filter (as key) and an array of pairs of start and end dates defining the intervals to filter the station from.
553-
filter_args = {1121: [('1992-01-02 06:00:00', '1993-01-01 06:00:00'), ('1995-01-02 06:00:00', '1996-01-01 06:00:00')]}
554-
555-
####__SolarRadiationLimitsKiwisFilter:__
556-
Class to filter Solar Radiation Kiwis files whose data coordinates are both less equal a defined latitude and values less equal a defined threshold.
557-
This was developed to avoid wrong values of zero daily solar radiation in EFAS domain bellow 66 degrees Latitude (empirical).
558-
Expects to have in filter_args a dictionary containing the definition of the limits using the keys EXCLUDE_BELLOW_LATITUDE and EXCLUDE_BELLOW_VALUE.
559-
In case any of the exclude values are not present or empty it will use the default values of 70.0 Latitude and 0.0 Daily Solar Radiation.
542+
> __KiwisFilter:__
543+
> Base class to filter Kiwis files metadata and obtain a dataframe containing only the coordinates and values to be used for interpolation.
544+
> It implements the basic rules for parsing the Kiwis format.
545+
>
546+
> __ObservationsKiwisFilter:__
547+
> Class to filter Kiwis files metadata for stations that contain another station in the vicinity.
548+
> Expects to have in filter_args a dictionary containing the provider ID whose stations we want to filter (as key) and the radius (in decimal degrees) to find the vicinity station from other providers (as value).
549+
>
550+
> __ProvidersKiwisFilter:__
551+
> Class to filter Kiwis files metadata for stations that belong to a list of providers and inside a defined list of time intervals.
552+
> Expects to have in filter_args a dictionary containing the provider ID whose stations we want to filter (as key) and an array of pairs of start and end dates defining the intervals to filter the station from.
553+
> filter_args = {1121: [('1992-01-02 06:00:00', '1993-01-01 06:00:00'), ('1995-01-02 06:00:00', '1996-01-01 06:00:00')]}
554+
>
555+
> __SolarRadiationLimitsKiwisFilter:__
556+
> Class to filter Solar Radiation Kiwis files whose data coordinates are both less equal a defined latitude and values less equal a defined threshold.
557+
> This was developed to avoid wrong values of zero daily solar radiation in EFAS domain bellow 66 degrees Latitude (empirical).
558+
> Expects to have in filter_args a dictionary containing the definition of the limits using the keys EXCLUDE_BELLOW_LATITUDE and EXCLUDE_BELLOW_VALUE.
559+
> In case any of the exclude values are not present or empty it will use the default values of 70.0 Latitude and 0.0 Daily Solar Radiation.
560560
561561

562562
#### Requirements

0 commit comments

Comments
 (0)