Skip to content

Commit

Permalink
Merge pull request #70 from LCOGT/dev
Browse files Browse the repository at this point in the history
Dev
  • Loading branch information
jnation3406 authored Oct 31, 2023
2 parents c0bdc0c + c0ae141 commit c6d9c7d
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions api/db.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,14 @@ def get_image_pkg(self):
"""
header_dictionary = json.loads(self.header) if self.header is not None else None

# Attempt to reconstruct the fits filename and archive file path from the header data
fits_filename = ''
fits_path = ''
if header_dictionary:
fits_path = header_dictionary.get('SITEID', '') + '/' + header_dictionary.get('INSTRUME', '')
fits_path += '/' + header_dictionary.get('DAY-OBS', '') + '/raw'
fits_filename = header_dictionary.get('ORIGNAME', '')

package = {
"image_id": self.image_id,
"base_filename": self.base_filename,
Expand All @@ -115,6 +123,8 @@ def get_image_pkg(self):

"username": self.username,
"user_id": self.user_id,
"fits_filename": fits_filename,
"fits_path": fits_path,
"SMARTSTK": header_dictionary.get("SMARTSTK", '') if header_dictionary is not None else '',
"SSTKNUM": header_dictionary.get("SSTKNUM", '') if header_dictionary is not None else ''
}
Expand Down

0 comments on commit c6d9c7d

Please sign in to comment.