Closed Jap8nted closed 2 years ago
Neither set_crs
or to_crs
work in place. You need to reassign the returned df to a variable.
daskdf = daskdf.set_crs(4326, allow_override=True)
daskdf = daskdf.to_crs(...)
Thank you for the fast answer.
Hi all,
I am doing a basic example for projecting to other crs. However I get an error as if the crs was never set. Am I doing something wrong here?