Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
LANDAISB committed Mar 4, 2024
1 parent 3fe0fe3 commit 3db44b4
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,17 @@ kin courseInDegrees: 180.
kin headingInDegrees: 2.
```

## Map Projection

Use ```GeodesicUtilities``` to compute angle and distance between Geodesic (lat/long) coordinates, taking in account the earth curve.

```smalltalk
coord1 := AbsoluteCoordinates latitudeInDegrees: 48.3897 longitudeInDegrees: -4.48333 altitudeInMeters: 52. "Brest french city position"
coord2 := AbsoluteCoordinates latitudeInDegrees: 48.8667 longitudeInDegrees: 2.33333 altitudeInMeters: 79. "Paris french city position"
convertGeodesicToAzimuthInRadiansFrom: coord1 to: coord2
```

## Installation

To install GeoTools on your Pharo image you can just execute the following script:
Expand Down

0 comments on commit 3db44b4

Please sign in to comment.