I'm trying to determine the latitude-longitude position on Earth of a position using the skifield python package
from skyfield.api import wgs84
position = [7033.45648791, 178.93192295, 0.00290722]
ground = wgs84.geographic_position_of(position)
print(ground)
but it raises AttributeError so I don't know what sort of Object type to use in this situation