Skip to content

Commit 73a45ec

Browse files
committed
0.2.9 datetime fix
1 parent 1eefab5 commit 73a45ec

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

heatchmap/gpmap.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,6 @@ def get_recalc_raster(self):
253253
new_points = get_points(self.points_path, begin=self.begin, until=self.last_record_time)
254254
new_points["lon"] = new_points.geometry.x
255255
new_points["lat"] = new_points.geometry.y
256-
self.latest_date = new_points["datetime"].max()
257256
logger.info(f"Recalculating map for {len(new_points)} new points from {self.begin.date()} to {self.last_record_time.date()}.") # noqa: E501
258257
for i, point in new_points.iterrows():
259258
lat_pixel, lon_pixel = self.pixel_from_point(point)

setup.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
import setuptools
44

5-
VERSION = "0.2.8"
5+
VERSION = "0.2.9"
66

77
NAME = "heatchmap"
88

@@ -14,7 +14,8 @@
1414
"numpy>=2.2.1",
1515
"osmnx>=1.7.0",
1616
"pandas>=2.2.3",
17-
"rasterio>=1.4.3",
17+
"rasterio>=1.4.3",docker push crhitchhiking.azurecr.io/hitchhiking-heatmap-generator:v1
18+
1819
"scikit-learn>=1.6.0",
1920
"scipy>=1.15.0",
2021
"shapely>=2.0.6",

0 commit comments

Comments
 (0)