Skip to content

Commit

Permalink
Small changes
Browse files Browse the repository at this point in the history
  • Loading branch information
alinnman committed Jan 19, 2025
1 parent a39b0c0 commit d313cfb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions starfix.py
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,7 @@ def __init__ (self, latlon : LatLon, angle : int | float, circumference : float)
self.mapping_distance_count = 0

def make_geodetic (self) :
''' TODO '''
''' Convert this circle to a geodetic latlon '''
self.latlon = LatLonGeodetic (ll=self.latlon)
return self

Expand Down Expand Up @@ -363,7 +363,7 @@ def __init__ (self, coll : list[Circle]):
self.c_list = coll

def make_geodetic (self):
''' TODO '''
''' Convert this collection to geodetic '''
for c in self.c_list:
c.make_geodetic ()

Expand Down

0 comments on commit d313cfb

Please sign in to comment.