Skip to content

Commit 91ee1ca

Browse files
committed
Core: fix typos, bump version
1 parent 50cdbef commit 91ee1ca

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

GeometryOpsCore/Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "GeometryOpsCore"
22
uuid = "05efe853-fabf-41c8-927e-7063c8b9f013"
33
authors = ["Anshul Singhvi <[email protected]>", "Rafael Schouten <[email protected]>", "Skylar Gering <[email protected]>", "and contributors"]
4-
version = "0.1.1"
4+
version = "0.1.2"
55

66
[deps]
77
DataAPI = "9a962f9c-6df0-11e9-0e5d-c546b8b5ee8a"

GeometryOpsCore/src/types.jl

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,8 @@ end
5151
5252
A spherical manifold means that the geometry is on the 3-sphere (but is represented by 2-D longitude and latitude).
5353
54+
By default, the radius is defined as the mean radius of the Earth, `6371008.8 m`.
55+
5456
## Extended help
5557
5658
!!! note
@@ -74,7 +76,7 @@ and `inv_flattening` (``1/f``).
7476
Usually, this is only relevant for area and segmentization calculations. It becomes more relevant as one grows closer to the poles (or equator).
7577
"""
7678
Base.@kwdef struct Geodesic{T} <: Manifold
77-
semimajor_axis::T = 6378137,0
79+
semimajor_axis::T = 6378137.0
7880
inv_flattening::T = 298.257223563
7981
end
8082

0 commit comments

Comments
 (0)