Xiao

Results 5 comments of Xiao

> You are welcome to submit the PRs with fixes. Please let us know if you would like to contribute and need help with it. Thank you! Got it! Also...

I tried fixing the seed: ```python from scipy.cluster.vq import kmeans, vq, whiten import numpy as np rows = [[8., 1e-5, 1e-5, 1e-5]] + [[1e-5]*4]*51 + [[0., 1e-5, 1e-5, 1e-5]] obs...

Thanks for the pointer on `NdBSpline.derivative`. I'll look into it. > @T90REAL how are you finding these corner cases, is this some usage or is it an automated tester or...

Thanks for the clarification. This was found by an automated test rather than a concrete application need, so I don’t have a real-world case where the 3 vs 6 degree...

``` from pyproj import Transformer t = Transformer.from_crs("EPSG:4326", "EPSG:27700") print(t.transform(-0.1278, 51.5074)) print(t.to_wkt()) # None