We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4f537dc commit 4365326Copy full SHA for 4365326
qgis_processing/privacyAttackAlgorithm.py
@@ -78,7 +78,7 @@ def processAlgorithm(self, parameters, context, feedback):
78
df = merge(r, df, on="uid")
79
80
crs = self.input_layer.sourceCrs()
81
- crs_no = CRS(int(crs.geographicCrsAuthId().split(":")[1]))
+ crs_no = CRS(int(crs.authid().split(":")[1]))
82
tc = tc_from_df(df, self.timestamp_field, self.traj_id_field, crs_no, self.min_length)
83
tc.add_speed(units=tuple(self.speed_units), overwrite=True)
84
tc.add_direction(overwrite=True)
0 commit comments