Skip to content

Commit

Permalink
Small changes
Browse files Browse the repository at this point in the history
  • Loading branch information
alinnman committed Jan 14, 2025
1 parent b05c5f0 commit 7ef55ad
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 17 deletions.
6 changes: 2 additions & 4 deletions xtras/starfixdata_xtra_gotland.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,7 @@
gha_time_1 = "14:6.6",
decl_time_0 = "23:11.1",
decl_time_1 = "23:10.8",
measured_alt = "49:18",
estimated_position = THE_POS
measured_alt = "49:18"
)

c = Sight ( object_name = "Sun",
Expand All @@ -52,8 +51,7 @@
gha_time_1 = "59:5.6",
decl_time_0 = "23:10.5",
decl_time_1 = "23:10.4",
measured_alt = "29:20",
estimated_position = THE_POS
measured_alt = "29:20"
)


Expand Down
5 changes: 2 additions & 3 deletions xtras/starfixdata_xtra_home.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,7 @@
artificial_horizon = True,
index_error_minutes = 0,
sextant = mySextant,
chronometer = myChronometer,
estimated_position = THE_POS
chronometer = myChronometer
)

collection = SightCollection ([S1, S2])
Expand All @@ -79,7 +78,7 @@

try:
intersections, fitness, diag_output =\
collection.get_intersections (estimated_position = THE_POS, return_geodetic=True)
collection.get_intersections (return_geodetic=True)
except IntersectError as ve:
print ("Cannot perform a sight reduction. Bad sight data.")
print ("Check the circles! " + collection.get_map_developers_string(geodetic=True))
Expand Down
15 changes: 5 additions & 10 deletions xtras/starfixdata_xtra_jamaica.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,7 @@
index_error_minutes = -5.4,
no_dip = True,
temperature = TEMPERATURE,
pressure = 101.2,
estimated_position = THE_POS
pressure = 101.2
)

c = Sight ( object_name = "Rigel",
Expand All @@ -75,8 +74,7 @@
observer_height = HEIGHT_IN_FEET * METER_PER_FEET,
sextant = mySextant,
temperature = TEMPERATURE,
pressure = 101.2,
estimated_position = THE_POS
pressure = 101.2
)

d = Sight ( object_name = "Achernar",
Expand All @@ -89,8 +87,7 @@
observer_height = HEIGHT_IN_FEET * METER_PER_FEET,
sextant = mySextant,
temperature = TEMPERATURE,
pressure = 101.2,
estimated_position = THE_POS
pressure = 101.2
)

e = Sight ( object_name = "Saturn",
Expand All @@ -103,8 +100,7 @@
observer_height = HEIGHT_IN_FEET * METER_PER_FEET,
sextant = mySextant,
temperature = TEMPERATURE,
pressure = 101.2,
estimated_position = THE_POS
pressure = 101.2
)

f = Sight ( object_name = "Polaris",
Expand All @@ -119,8 +115,7 @@
index_error_minutes = -7.1,
no_dip = True,
temperature = TEMPERATURE,
pressure = 101.2,
estimated_position = THE_POS
pressure = 101.2
)


Expand Down

0 comments on commit 7ef55ad

Please sign in to comment.