We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
astropy.coordinates.representation.geodetic
There does not appear to be a converter for the following
WGS84GeodeticRepresentation WGS72GeodeticRepresentation GRS80GeodeticRepresentation
Now found in astropy.coordinates.representation.geodetic https://github.com/astropy/astropy/blob/9ec5277724150ea178282f5dfbd9ca8782f89021/astropy/coordinates/representation/geodetic.py#L103-L121
This causes the current test suite to fail as discussed in this PR: #181
The text was updated successfully, but these errors were encountered:
RepresentationConverter
Running the following with:
import asdf import astropy.units as u import astropy.coordinates.earth r = astropy.coordinates.earth.WGS84GeodeticRepresentation(lat=0 * u.rad, lon=0 * u.rad, height=0 * u.m) asdf.AsdfFile({'r': r}).write_to('foo.asdf')
fails with
yaml.representer.RepresenterError: ('cannot represent an object', <WGS84GeodeticRepresentation (lon, lat, height) in (rad, rad, m) (0., 0., 0.)>)
Sorry, something went wrong.
No branches or pull requests
There does not appear to be a converter for the following
Now found in
astropy.coordinates.representation.geodetic
https://github.com/astropy/astropy/blob/9ec5277724150ea178282f5dfbd9ca8782f89021/astropy/coordinates/representation/geodetic.py#L103-L121
This causes the current test suite to fail as discussed in this PR:
#181
The text was updated successfully, but these errors were encountered: