@@ -279,13 +279,6 @@ class Wind(DataSourceMixin, TimeResolutionMixin, XYDimensionalNames, DropoutMixi
279
279
"values can be interpolated, and the extra minutes removed. This is "
280
280
"because some live data takes ~1 hour to come in." ,
281
281
)
282
- get_center : bool = Field (
283
- False ,
284
- description = "If the batches are centered on one Wind system (or not). "
285
- "The other options is to have one GSP at the center of a batch. "
286
- "Typically, get_center would be set to true if and only if "
287
- "WindDataSource is used to define the geospatial positions of each example." ,
288
- )
289
282
290
283
time_resolution_minutes : int = Field (
291
284
15 ,
@@ -336,13 +329,6 @@ class PV(
336
329
)
337
330
pv_image_size_meters_height : int = METERS_PER_ROI
338
331
pv_image_size_meters_width : int = METERS_PER_ROI
339
- get_center : bool = Field (
340
- False ,
341
- description = "If the batches are centered on one PV system (or not). "
342
- "The other options is to have one GSP at the center of a batch. "
343
- "Typically, get_center would be set to true if and only if "
344
- "PVDataSource is used to define the geospatial positions of each example." ,
345
- )
346
332
347
333
pv_filename : Optional [str ] = Field (
348
334
None ,
@@ -405,13 +391,6 @@ class Sensor(DataSourceMixin, TimeResolutionMixin, XYDimensionalNames):
405
391
406
392
sensor_image_size_meters_height : int = METERS_PER_ROI
407
393
sensor_image_size_meters_width : int = METERS_PER_ROI
408
- get_center : bool = Field (
409
- False ,
410
- description = "If the batches are centered on one Sensor system (or not). "
411
- "The other options is to have one GSP at the center of a batch. "
412
- "Typically, get_center would be set to true if and only if "
413
- "SensorDataSource is used to define the geospatial positions of each example." ,
414
- )
415
394
416
395
sensor_filename : str = Field (
417
396
None ,
@@ -760,12 +739,6 @@ class InputData(Base):
760
739
description = "how many historic minutes are used. "
761
740
"This sets the default for all the data sources if they are not set." ,
762
741
)
763
- data_source_which_defines_geospatial_locations : str = Field (
764
- "gsp" ,
765
- description = (
766
- "The name of the DataSource which will define the geospatial position of each example."
767
- ),
768
- )
769
742
770
743
@property
771
744
def default_seq_length_5_minutes (self ):
0 commit comments