Skip to content

Commit

Permalink
Merge pull request #355 from openclimatefix/rm-unused-configs
Browse files Browse the repository at this point in the history
Remove unused configs
  • Loading branch information
AUdaltsova authored Aug 9, 2024
2 parents d63ef40 + be35635 commit 23127ca
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 31 deletions.
27 changes: 0 additions & 27 deletions ocf_datapipes/config/model.py
Original file line number Diff line number Diff line change
Expand Up @@ -279,13 +279,6 @@ class Wind(DataSourceMixin, TimeResolutionMixin, XYDimensionalNames, DropoutMixi
"values can be interpolated, and the extra minutes removed. This is "
"because some live data takes ~1 hour to come in.",
)
get_center: bool = Field(
False,
description="If the batches are centered on one Wind system (or not). "
"The other options is to have one GSP at the center of a batch. "
"Typically, get_center would be set to true if and only if "
"WindDataSource is used to define the geospatial positions of each example.",
)

time_resolution_minutes: int = Field(
15,
Expand Down Expand Up @@ -336,13 +329,6 @@ class PV(
)
pv_image_size_meters_height: int = METERS_PER_ROI
pv_image_size_meters_width: int = METERS_PER_ROI
get_center: bool = Field(
False,
description="If the batches are centered on one PV system (or not). "
"The other options is to have one GSP at the center of a batch. "
"Typically, get_center would be set to true if and only if "
"PVDataSource is used to define the geospatial positions of each example.",
)

pv_filename: Optional[str] = Field(
None,
Expand Down Expand Up @@ -405,13 +391,6 @@ class Sensor(DataSourceMixin, TimeResolutionMixin, XYDimensionalNames):

sensor_image_size_meters_height: int = METERS_PER_ROI
sensor_image_size_meters_width: int = METERS_PER_ROI
get_center: bool = Field(
False,
description="If the batches are centered on one Sensor system (or not). "
"The other options is to have one GSP at the center of a batch. "
"Typically, get_center would be set to true if and only if "
"SensorDataSource is used to define the geospatial positions of each example.",
)

sensor_filename: str = Field(
None,
Expand Down Expand Up @@ -760,12 +739,6 @@ class InputData(Base):
description="how many historic minutes are used. "
"This sets the default for all the data sources if they are not set.",
)
data_source_which_defines_geospatial_locations: str = Field(
"gsp",
description=(
"The name of the DataSource which will define the geospatial position of each example."
),
)

@property
def default_seq_length_5_minutes(self):
Expand Down
1 change: 0 additions & 1 deletion tests/data/configs/on_premises.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ input_data:
- label: pvoutput.org
pv_filename: /mnt/storage_b/data/ocf/solar_pv_nowcasting/nowcasting_dataset_pipeline/PV/PVOutput.org/UK_PV_timeseries_batch.nc
pv_metadata_filename: /mnt/storage_b/data/ocf/solar_pv_nowcasting/nowcasting_dataset_pipeline/PV/PVOutput.org/UK_PV_metadata.csv
get_center: false
history_minutes: 90
forecast_minutes: 360
log_level: "INFO"
Expand Down
2 changes: 0 additions & 2 deletions tests/data/configs/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ input_data:
- label: india
wind_filename: tests/data/wind/wind_test_data.nc
wind_metadata_filename: tests/data/wind/wind_metadata.csv
get_center: false
wind_image_size_meters_height: 10000000
wind_image_size_meters_width: 10000000
n_wind_systems_per_example: 1
Expand All @@ -40,7 +39,6 @@ input_data:
- label: pvoutput.org
pv_filename: tests/data/pv/pvoutput/test.nc
pv_metadata_filename: tests/data/pv/pvoutput/UK_PV_metadata.csv
get_center: false
pv_image_size_meters_height: 10000000
pv_image_size_meters_width: 10000000
n_pv_systems_per_example: 32
Expand Down
1 change: 0 additions & 1 deletion tests/data/configs/wind_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ input_data:
- label: pvoutput.org
pv_filename: tests/data/pv/pvoutput/test.nc
pv_metadata_filename: tests/data/pv/pvoutput/UK_PV_metadata.csv
get_center: false
pv_image_size_meters_height: 10000000
pv_image_size_meters_width: 10000000
n_pv_systems_per_example: 32
Expand Down

0 comments on commit 23127ca

Please sign in to comment.