From dddf07217074008bb925f9b00572b4f3ab8a17fa Mon Sep 17 00:00:00 2001 From: Sparsh Sahu <104412008+Sparshcodies@users.noreply.github.com> Date: Sun, 20 Jul 2025 11:43:52 +0530 Subject: [PATCH] Fixed osm-bright.osm2pgsql.mml Fixed an inconsistency that causes the error: Cannot initialize proj_transform for given projections without proj4 support (-DMAPNIK_USE_PROJ4). This was happeneing due to a missing decmal point in the mml file. --- osm-bright/osm-bright.osm2pgsql.mml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/osm-bright/osm-bright.osm2pgsql.mml b/osm-bright/osm-bright.osm2pgsql.mml index aca178d..2725830 100644 --- a/osm-bright/osm-bright.osm2pgsql.mml +++ b/osm-bright/osm-bright.osm2pgsql.mml @@ -583,5 +583,5 @@ "maxzoom": 18, "minzoom": 0, "name": "OSM Bright", - "srs": "+proj=merc +a=6378137 +b=6378137 +lat_ts=0.0 +lon_0=0.0 +x_0=0.0 +y_0=0 +k=1.0 +units=m +nadgrids=@null +wktext +no_defs +over" + "srs": "+proj=merc +a=6378137 +b=6378137 +lat_ts=0.0 +lon_0=0.0 +x_0=0.0 +y_0=0.0 +k=1.0 +units=m +nadgrids=@null +wktext +no_defs +over" }