Skip to content

Commit

Permalink
fix transformer epsg code
Browse files Browse the repository at this point in the history
  • Loading branch information
saransh323 committed Oct 30, 2024
1 parent b2c1a37 commit c3790b1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions rb_ws/src/buggy/buggy/buggy_state_converter.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ def __init__(self):

# Initialize pyproj Transformer for ECEF -> UTM conversion for /SC
self.ecef_to_utm_transformer = pyproj.Transformer.from_crs(
"epsg:4978", "epsg:32633", always_xy=True
) # Update EPSG if required
"epsg:4978", "epsg:32617", always_xy=True
) # Check UTM EPSG code, using EPSG:32617 for UTM Zone 17N

def self_raw_state_callback(self, msg):
""" Callback for processing self/raw_state messages and publishing to self/state """
Expand Down

0 comments on commit c3790b1

Please sign in to comment.