Kevin Dwyer

Results 5 comments of Kevin Dwyer

Debugging into `CloneUtils.deepEquals`, we can see: ``` originJsonNode = {"id":"24c8403d-fe8b-4a10-b12d-85ea7279a495","createdTimestamp":1669679459001,"username":"myinitialclientuser","enabled":true,"totp":false,"emailVerified":false,"firstName":"My clientuser's firstname","lastName":"My clientuser's lastname","email":"[email protected]","disableableCredentialTypes":[],"requiredActions":[],"notBefore":0} otherJsonNode = {"id":"24c8403d-fe8b-4a10-b12d-85ea7279a495","createdTimestamp":1669679459001,"username":"myinitialclientuser","enabled":true,"totp":false,"emailVerified":false,"firstName":"My clientuser's firstname","lastName":"My clientuser's lastname","email":"[email protected]","credentials":[],"disableableCredentialTypes":[],"requiredActions":[],"notBefore":0} ``` So the only difference is that `patchedUser` has...

There's nothing obviously wrong with your shapefile. I ran the Delaunay triangulation on it using qgis and there were no errors, so I think it's good input. It's possible that...

I'd make the same recommendation for setting a breakpoint at that point in the code and inspecting the values of each variable. list() should work just fine with whatever is...

cascaded_union expects a list as input, not a generator, so `list()` unrolls the generator and returns a list. Consider this generator: ``` def gen(): for i in range(10): yield i...

Usually this means that the LineString is invalid. You should inspect the value of edge_points to see if it's a reasonable input to MultiLineString.