I am trying to convert co-ordinates (-33.75, 150) from epsg:3857 to epsg:28356 in Python.
Using both of the examples in post How to convert projected coordinates to lat/lon using Python?, I get the following errors.
With ogr, osr:
"ERROR 1: latitude or longitude exceeded limits"
with projpy:
"RuntimeError: latitude or longitude exceeded limits"
What am I doing wrong?
EDIT: changing to epsg:4326 fixed the issue.