Skip to content

Commit

Permalink
correct to capitalize for 'Ta'
Browse files Browse the repository at this point in the history
  • Loading branch information
cyschneck committed Jul 25, 2024
1 parent 234b0db commit 69b4d0b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pydar/extract_flyby_parameters.py
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ def extractFlybyDataImages(flyby_observation_num=None,
top_x_resolutions=None):

if flyby_id is not None and type(flyby_id) == str:
flyby_id = flyby_id.upper() # ensure that observation number set to capitalized 'T'
flyby_id = flyby_id.capitalize() # ensure that observation number set to capitalized 'T'
if flyby_observation_num is not None and type(flyby_observation_num) == str:
while len(flyby_observation_num) < 4:
flyby_observation_num = "0" + flyby_observation_num # set all radar take numbers to be four digits long: 229 -> 0229
Expand Down

0 comments on commit 69b4d0b

Please sign in to comment.