toCss (latlon,
cs0=None,
height=None,
Css=<class 'pygeodesy.css.Css'>,
name='
' )
|
|
Convert an (ellipsoidal) geodetic point to a Cassini-Soldner
location.
- Arguments:
latlon - Ellipsoidal point (LatLon or LatLon4Tuple).
cs0 - Optional, the Cassini-Soldner projection to use (CassiniSoldner).
height - Optional height for the point, overriding the default height
(meter ).
Css - Optional class to return the location (Css) or
None .
name - Optional Css name (str ).
- Returns:
- The Cassini-Soldner location (
Css ) or an EasNor3Tuple(easting, northing,
height) if Css is None .
- Raises:
CSSError - Ellipsoidal mismatch of latlon and
cs0 .
ImportError - Package geographiclib missing.
TypeError - If latlon is not ellipsoidal.
|