🐜 Bug Report
Importing ants adds an as_ants_crs method to iris coordinate systems.
How to reproduce
Step by step guide to reproduce the behaviour:
>>> import iris
>>> import iris.coord_systems
>>> iris_crs = dir(iris.coord_systems.CoordSystem)
>>> import ants
>>> ants_crs = dir(iris.coord_systems.CoordSystem)
>>> diff = set(ants_crs) - set(iris_crs)
>>> diff
{'as_ants_crs'}
Version
This bug exists in ANTS head of main
Additional Context
The solution here is probably to:
- Add a function
as_ants_crs somewhere in ANTS which performs a similar mapping as the existing method.
- Replace usages of the method with the function.
- Remove the method.
🐜 Bug Report
Importing ants adds an as_ants_crs method to iris coordinate systems.
How to reproduce
Step by step guide to reproduce the behaviour:
Version
This bug exists in ANTS head of main
Additional Context
The solution here is probably to:
as_ants_crssomewhere in ANTS which performs a similar mapping as the existing method.