You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
TransformerGroup fails to a create a list of with all available transformation objects when the user set both always_xy and allow_superseded equals True.
Environment Information
pyproj version 3.6.1
python 3.11
Installation method
pip wheel
The text was updated successfully, but these errors were encountered:
Example code
Ex. 1 TransformerGroup fails to list up available transformations when specifying both
always_xy
andallow_superseded
Outputs:
Ex.2 TransformerGroup should return
36
available transformations whenallow_superseded
not definedOutputs:
36
Ex.3 TransformerGroup should return
37
available transformations whenallow_superseded
is set toTrue
Outputs:
37
ct_lst = TransformerGroup("EPSG:4230", "EPSG:4326", allow_superseded=True).transformers
print(len(ct_lst))
Problem description
TransformerGroup
fails to a create a list of with all available transformation objects when the user set bothalways_xy
andallow_superseded
equalsTrue
.Environment Information
pyproj version 3.6.1
python 3.11
Installation method
pip wheel
The text was updated successfully, but these errors were encountered: