Skip to content

Commit

Permalink
Correction nommage variable
Browse files Browse the repository at this point in the history
  • Loading branch information
LANDAISB committed Feb 13, 2024
1 parent 03e69fa commit 66c1370
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions GeoTools/AbsoluteCoordinates.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -202,11 +202,11 @@ AbsoluteCoordinates >> altitudeInMeters: aNumber [
{ #category : #converting }
AbsoluteCoordinates >> asGeometryPoint [

| _coord |
_coord := G2DCoordinates new.
_coord x: self longitudeInDegrees.
_coord y: self latitudeInDegrees.
^GPoint coordinates: _coord.
| coord |
coord := G2DCoordinates new.
coord x: self longitudeInDegrees.
coord y: self latitudeInDegrees.
^GPoint coordinates: coord.
]

{ #category : #converting }
Expand Down

0 comments on commit 66c1370

Please sign in to comment.