Skip to content

Commit

Permalink
proper boolean
Browse files Browse the repository at this point in the history
  • Loading branch information
teuben committed Nov 7, 2023
1 parent fa99925 commit 8ec9cb6
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions bin/mk_metadata.py
Original file line number Diff line number Diff line change
Expand Up @@ -152,8 +152,10 @@ def get_publicDate(projectId):
lmtdata.add_metadata("projectTitle", header(rc,"projectTitle",debug))
lmtdata.add_metadata("PIName", header(rc,"PIName",debug))
lmtdata.add_metadata("publicDate", get_publicDate(header(rc,"ProjectId")))
lmtdata.add_metadata("isPolarimetry", 0)
lmtdata.add_metadata("halfWavePlateMode", "ABSENT")
lmtdata.add_metadata("isPolarimetry", False) # or True if HWP mode not ABSENT
lmtdata.add_metadata("halfWavePlateMode", "ABSENT") # or FIXED or ROTATING





Expand Down

0 comments on commit 8ec9cb6

Please sign in to comment.