-
-
Notifications
You must be signed in to change notification settings - Fork 87
Open
Labels
Description
What happened?
I followed the link to the API docs from the github project page. The documentation is out of date and still applies to a pre-3.0.0 version. For example, the new code and interface for Ellipsoid is here and has parameters like this:
Parameters
----------
semimajor_axis : float
semimajor axis in meters
semiminor_axis : float
semiminor axis in meters
name: str, optional
Human-friendly name for the ellipsoid
model: str, optional
Short name for the ellipsoid
"""
but the official docs on https://geospace-code.github.io/pymap3d/ellipsoid.html have the old interface, with only a string parameter:
class Ellipsoid(model='wgs84')
and
Parameters
----------
model : str
name of ellipsoid
Can you update the official docs for the new interface (3.0.0) please?
Relevant log output
No response
Hackerman342