Skip to content

Commit

Permalink
Update metadata conventions
Browse files Browse the repository at this point in the history
  • Loading branch information
bechtol committed Aug 29, 2024
1 parent f0bad9f commit e88b754
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions python/lsst/ts/fbs/utils/maintel/make_fieldsurvey_scheduler.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,9 @@ def _load_candidate_fields(self) -> typing.Dict:
def add_field_surveys(
self,
tier: int,
program: str,
json_block: str,
observation_reason: str,
science_program: str,
field_names: typing.List[str],
basis_functions: typing.List[BaseBasisFunction] = [],
**kwargs: typing.Any,
Expand All @@ -68,8 +70,12 @@ def add_field_surveys(
----------
tier: `int`
Tier index used to control prioritization of surveys.
program_name: `str`
Program name of BLOCK to be executed.
json_block: `str`
JSON BLOCK used to perform the observations.
observation_reason: `str`
Purpose of the observation, e.g., "science"
science_program: `str`
Name of the science program.
field_names: `list` of `str`
List of names to specify the pointing center of each field survey.
basis_functions: `list` of `BaseBasisFunction`
Expand All @@ -90,6 +96,9 @@ def add_field_surveys(
basis_functions,
field_ra_deg,
field_dec_deg,
json_block=json_block,
observation_reason=observation_reason,
science_program=science_program,
ignore_obs=None,
accept_obs=[field_name],
survey_name=field_name,
Expand Down

0 comments on commit e88b754

Please sign in to comment.