Skip to content

Commit

Permalink
Merge branch 'master' into 4.0.x
Browse files Browse the repository at this point in the history
  • Loading branch information
dvdoug committed Mar 1, 2021
2 parents 0338400 + 0c11085 commit 9ec284b
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 4 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## [Unreleased]

## [4.0.1] - 2021-03-01
### Fixed
- Documentation issues

## [4.0.0] - 2021-03-01
### Added
- Chaining of conversions
Expand Down Expand Up @@ -82,8 +86,9 @@ Initial release of this fork (based off of v2.3 of original)
- Eastings and northings are rounded to 1m, and lat/long to 5dp (approx 1m) to avoid any misconceptions that precision is the same thing as accuracy.
- When calculating surface distances, a more accurate mean radius is now used rather than that derived from historical definitions of a nautical mile

[Unreleased]: https://github.com/dvdoug/PHPCoord/compare/v4.0.0...HEAD
[Unreleased]: https://github.com/dvdoug/PHPCoord/compare/v4.0.1...HEAD

[4.0.1]: https://github.com/dvdoug/PHPCoord/compare/v4.0.0...v4.0.1
[4.0.0]: https://github.com/dvdoug/PHPCoord/compare/v4.0.0beta1...v4.0.0
[4.0.0beta1]: https://github.com/dvdoug/PHPCoord/compare/v3.1.2...v4.0.0beta1
[3.1.2]: https://github.com/dvdoug/PHPCoord/compare/v3.1.1...v3.1.2
Expand Down
2 changes: 1 addition & 1 deletion docs/builtin_crs_geographic2d.rst
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Geographic 2D
=============

.. include:: reflection/coordinatereferencesystem/geographic2D.txt
.. include:: reflection/coordinatereferencesystem/geographic2d.txt
2 changes: 1 addition & 1 deletion docs/builtin_crs_geographic3d.rst
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Geographic 3D
=============

.. include:: reflection/coordinatereferencesystem/geographic3D.txt
.. include:: reflection/coordinatereferencesystem/geographic3d.txt
2 changes: 1 addition & 1 deletion docs/creating_points_projected.rst
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ Examples:
);
// also Nelson's Column
$point = new BritishNationalGridPoint::fromGridReference(new Metre(530017), new Metre(180419)); // CRS is implied
$point = new BritishNationalGridPoint(new Metre(530017), new Metre(180419)); // CRS is implied
// also Nelson's Column
$point = BritishNationalGridPoint::fromGridReference('TQ 30017 80419'); // CRS is implied
Expand Down

0 comments on commit 9ec284b

Please sign in to comment.