Skip to content

Commit

Permalink
update CHANGES.md
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelkirk committed Jan 11, 2025
1 parent 6c2eb7b commit bb72403
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
1 change: 0 additions & 1 deletion geo-types/CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

## Unreleased

- Fix page location of citation for mean earth radius used in Haversine calculations
- Implement `RTreeObject` for `Triangle`.
- Implement `AsRef<Coord>` for `Point` and `Coord`.

Expand Down
14 changes: 14 additions & 0 deletions geo/CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,20 @@

## Unreleased

- BREAKING: `Densify` and `Length` are now defined on the metric space, rather than a generic method on the geometry.
```
// before
line_string.length::<Euclidean>()
line_string.densify::<Euclidean>()
// after
Euclidean.length(&line_string)
Euclidean.densify(&line_string)
```
- Add `CustomHaversine` for doing calculations on spheres with a custom radius.
- <https://github.com/georust/geo/pull/1298>
- Fix page location of citation for mean earth radius used in Haversine calculations
- <https://github.com/georust/geo/pull/1297>
- Add top-level doc link for `InteriorPoint`
- Add Unary Union algorithm for fast union ops on adjacent / overlapping geometries
- <https://github.com/georust/geo/pull/1246>
Expand Down

0 comments on commit bb72403

Please sign in to comment.