We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9b3e10e commit 06692ddCopy full SHA for 06692dd
heatchmap/gpmap.py
@@ -246,7 +246,6 @@ def get_recalc_raster(self):
246
new_points = get_points(self.points_path, begin=self.begin, until=self.lasted_record_time)
247
new_points["lon"] = new_points.geometry.x
248
new_points["lat"] = new_points.geometry.y
249
- self.latest_date = new_points["datetime"].max()
250
logger.info(f"Recalculating map for {len(new_points)} new points from {self.begin.date()} to {self.lasted_record_time.date()}.") # noqa: E501
251
for i, point in new_points.iterrows():
252
lat_pixel, lon_pixel = self.pixel_from_point(point)
0 commit comments