I am trying to use scikit mobility to recreate trajectories and stop location from GPS https://scikit-mobility.github.io/scikit-mobility/reference/data_structures.html#module-skmob.core.trajectorydataframe
By using TrajDataFrame and then I am applying
stdf = detection.stay_locations(tdf, stop_radius_factor=0.5, minutes_for_a_stop=20.0, spatial_radius_km=0.2, leaving_time=True)
my data looks the same as in example but I am getting the error ''TrajDataFrame' object has no attribute '_crs''. CRS is just optional and even when I added the error is appearing. Does anyone had the same issue?