]> marstr Code Repo - marstr/orthographic.git/commitdiff
Fixed issue in defines.py
authorMarcus Str. <marcus@marstr.online>
Thu, 6 Feb 2025 18:32:50 +0000 (19:32 +0100)
committerMarcus Str. <marcus@marstr.online>
Thu, 6 Feb 2025 18:32:50 +0000 (19:32 +0100)
defines.py
perlin.py

index 2d043359be693c5b3dbb1350f56cdd2809be7142..d3a9b0881927cbcffd7b6abbe6b0e19f07514a07 100644 (file)
@@ -129,7 +129,7 @@ mstr_ortho_layers = [
     ("highway", "residential", 4),\r
     ("highway", "primary", 6),\r
     ("highway", "secondary", 3),\r
-    ("highway", "trunk", 3)\r
+    ("highway", "trunk", 3),\r
     ("highway", "tertiary", 5),\r
     ("highway", "unclassified", 4),\r
     ("highway", "living_street", 3),\r
index b462c310e509817798346ef06265357384747f49..5e1fa8c6dd3a1daae95dcd949dee8b477e824a3b 100644 (file)
--- a/perlin.py
+++ b/perlin.py
@@ -62,7 +62,7 @@ class mstr_perlin:
         base = Image.new("RGBA", (bw,bh))
 
         if len(clr) == 4:
-            wh = 2048
+            wh = 3000
             base = Image.new("RGBA", (bw,bh), clr[0])
             
             for c in range(len(clr)):