Skip to content

Commit

Permalink
Merge branch 'master' into skipfluxcal
Browse files Browse the repository at this point in the history
  • Loading branch information
ajmejia committed Dec 14, 2023
2 parents fc7c883 + 1a05aa7 commit 4332642
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/lvmdrp/utils/metadata.py
Original file line number Diff line number Diff line change
Expand Up @@ -581,7 +581,7 @@ def extract_metadata(frames_paths: list, kind: str = "raw") -> pd.DataFrame:

# get the tile id; set null tile ids -999 to 11111
tileid = header.get("TILE_ID") or header.get("TILEID", 11111)
tileid = 11111 if tileid in (-999, None) else tileid
tileid = 11111 if tileid in (-999, 999, None) else tileid

# get the tile group
tilegrp = tileid_grp(tileid)
Expand Down

0 comments on commit 4332642

Please sign in to comment.