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
Describe the bug
There is no unit on the radius of filters.clean_gps_nearby_points_by_distances
I suppose that it is meters, but it should be explicit.
Current docstring
Removes points from the trajectories when the distance between them and the
point before is smaller than the value set by the user.
Parameters
----------
move_data : dataframe
The input trajectory data
label_id : str, optional
Indicates the label of the id column in the user dataframe, by default TRAJ_ID
radius_area : float, optional
Species the minimum distance a point must have to it"srs previous point
in order not to be dropped, by default 10
label_dtype : type, optional
Represents column id type, ,y default np.float64.
inplace : boolean, optional
if set to true the operation is done in place, the original
dataframe will be altered and None is returned, be default False
Proposed Docstring
Removes points from the trajectories when the distance in meters between them and the
point before is smaller than the value set by the user.
Parameters
----------
move_data : dataframe
The input trajectory data
label_id : str, optional
Indicates the label of the id column in the user dataframe, by default TRAJ_ID
radius_area : float, optional
Species the minimum distance in meters a point must have to it's previous point
in order not to be dropped, by default 10
label_dtype : type, optional
Represents column id type, ,y default np.float64.
inplace : boolean, optional
if set to true the operation is done in place, the original
dataframe will be altered and None is returned, be default False
The text was updated successfully, but these errors were encountered:
Describe the bug
There is no unit on the radius of filters.clean_gps_nearby_points_by_distances
I suppose that it is meters, but it should be explicit.
Current docstring
Proposed Docstring
The text was updated successfully, but these errors were encountered: