Skip to content
Snippets Groups Projects

Adding a few changes to FDSNFActory regarding the FDSNNoDataException. I also...

Files
6
@@ -12,7 +12,7 @@ from .Observatory import OBSERVATORY_INDEX, ASL_OBSERVATORY_INDEX
DEFAULT_ELEMENTS = ["X", "Y", "Z", "F"]
REQUEST_LIMIT = 345600
REQUEST_LIMIT = 3456000 # Increased the request limit by 10x what was decided by Jeremy
VALID_ELEMENTS = [e.id for e in ELEMENTS]
@@ -149,13 +149,3 @@ class DataApiQuery(BaseModel):
raise ValueError(f"Request exceeds limit ({samples} > {REQUEST_LIMIT})")
# otherwise okay
return values
# The new class inheriting everything except input/output_sampling period from DataApiQuery
class FilterDataApiQuery(DataApiQuery):
input_sampling_period: SamplingPeriod = SamplingPeriod.SECOND
output_sampling_period: SamplingPeriod = SamplingPeriod.MINUTE
# Remove inherited fields that we don't need
class Config:
fields = {"sampling_period": {"exclude": True}, "data_host": {"exclude": True}}
Loading