PermafrostDiscoveryGateway / viz-points

Python package for post-processing point-cloud data for 3D visualization
Apache License 2.0
0 stars 1 forks source link

Improper handling of compound CRS #30

Closed iannesbitt closed 8 months ago

iannesbitt commented 8 months ago

In pdgpoints.utils.get_epsgs_from_wkt, when a compound CRS is encountered, the for clause should iterate over crs.sub_crs_list, a list object, rather than crs itself.

Attempting to iterate over crs—an object of type pyproj.CRS—will raise an error.

iannesbitt commented 8 months ago

Tested and working