You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
dither_sequence_random_offset: Annotated[bool, "Implements a random offset between dither patterns if repeating the dither pattern, i.e. when sequence repeats > 1"] =True
coadds: Annotated[int, Ge(1), Le(100), "This reduces data volume with short integration times necessary for broadband H and Ks observations. Coadding is digital summation of the images to avoid long integrations that could cause saturation of the detector."] =1
28
+
sequence_repeats: Annotated[int, Ge(1), Le(500), "The number of times to repeat the dither sequence"] =1
29
+
30
+
15
31
classBlancoNewfirmOpticalElements(BaseModel):
16
32
model_config=ConfigDict(validate_assignment=True)
17
33
filter: Literal["JX", "HX", "KXs"]
@@ -43,7 +59,7 @@ class BlancoNewfirmConfig(BaseModel):
sub_expose: Annotated[bool, "Whether or not to split your exposures into sub_exposures to guide during the observation, and stack them together at the end for the final data product."] =False
20
+
sub_exposure_time: Annotated[float, Ge(15.0), "Exposure time for the sub-exposures in seconds, if sub_expose mode is set"] |None=None
defocus: Annotated[float, Ge(-5.0), Le(5.0), "Observations may be defocused to prevent the CCD from saturating on bright targets. This term describes the offset (in mm) of the secondary mirror from its default (focused) position. The limits are ± 5mm."] |None=None
defocus: Annotated[float, Ge(-5.0), Le(5.0), "Observations may be defocused to prevent the CCD from saturating on bright targets. This term describes the offset (in mm) of the secondary mirror from its default (focused) position. The limits are ± 5mm."] |None=None
90
+
91
+
68
92
classLco1M0NresScicamOpticalElements(BaseModel):
69
93
model_config=ConfigDict(validate_assignment=True)
70
94
@@ -95,7 +119,7 @@ class Lco1M0NresScicamConfig(BaseModel):
defocus: Annotated[float, Ge(-5.0), Le(5.0), "Observations may be defocused to prevent the CCD from saturating on bright targets. This term describes the offset (in mm) of the secondary mirror from its default (focused) position. The limits are ± 5mm."] |None=None
defocus: Annotated[float, Ge(-8.0), Le(8.0), "Observations may be defocused to prevent the CCD from saturating on bright targets. This term describes the offset (in mm) of the secondary mirror from its default (focused) position. The limits are ± 8mm."] |None=None
0 commit comments