From 9f4009a731a5d094598d4f180c812806009bf7a2 Mon Sep 17 00:00:00 2001 From: Chad Rockey Date: Sun, 24 Mar 2019 18:42:48 -0700 Subject: [PATCH] Don't set the terrain so low, it can blend into the auto generated terrain and make adding water difficult --- tgc_tools.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tgc_tools.py b/tgc_tools.py index 4c66b3a..3fa1a3f 100644 --- a/tgc_tools.py +++ b/tgc_tools.py @@ -539,7 +539,7 @@ def merge_courses(course1_json, course2_json): return course1_json -def elevate_terrain(course_json, elevate_shift, buffer_height=3.5, clip_lowest_value=-2.0, printf=print): +def elevate_terrain(course_json, elevate_shift, buffer_height=10.0, clip_lowest_value=-2.0, printf=print): # Automatic terrain shift if elevate_shift == 0.0 or elevate_shift == None: elevations = []