Skip to content

Commit

Permalink
Merge pull request #1227 from rzellem/issue_1226
Browse files Browse the repository at this point in the history
change height from int to float
  • Loading branch information
rzellem authored Sep 7, 2023
2 parents 3d60cd2 + 14bf14c commit 1d7dc1d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion exotic/api/colab.py
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,7 @@ def make_inits_file(planetary_params, image_dir, output_dir, first_image, targ_c
date_obs = date_obs.replace("/", "_")
longitude = find(hdr,['LONGITUD', 'LONG', 'LONGITUDE', 'SITELONG'],obs)
latitude = find(hdr,['LATITUDE', 'LAT', 'SITELAT'],obs)
height = int(find(hdr, ['HEIGHT', 'ELEVATION', 'ELE', 'EL', 'OBSGEO-H', 'ALT-OBS', 'SITEELEV'], obs))
height = float(find(hdr, ['HEIGHT', 'ELEVATION', 'ELE', 'EL', 'OBSGEO-H', 'ALT-OBS', 'SITEELEV'], obs))
obs_notes = "N/A"

mobs_data = False
Expand Down
2 changes: 1 addition & 1 deletion exotic/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '3.2.3'
__version__ = '3.2.4'

0 comments on commit 1d7dc1d

Please sign in to comment.