Skip to content

Commit

Permalink
EditTests
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexanderJuestel committed Nov 27, 2023
1 parent c77687a commit 2fe6500
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gemgis/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -1108,7 +1108,7 @@ def transform_location_coordinate(coordinates,
transformer = pyproj.Transformer.from_crs('EPSG:4326', crs)

# Transforming coordinate systems
long, lat = transformer.transform(coordinates.longitude, coordinates.latitude)
long, lat = transformer.transform(coordinates.latitude, coordinates.longitude)

# Create dictionary with result
result_dict = {coordinates.address: (long, lat)}
Expand Down

0 comments on commit 2fe6500

Please sign in to comment.