From 4352afbfc5f497a696da55373c330c1daccd101f Mon Sep 17 00:00:00 2001 From: Dan Howe Date: Thu, 2 Aug 2018 09:52:30 +1000 Subject: [PATCH] Increase jpg resolution in erosion maps --- plot_heatmaps.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plot_heatmaps.py b/plot_heatmaps.py index 8cab322..adafed0 100644 --- a/plot_heatmaps.py +++ b/plot_heatmaps.py @@ -99,7 +99,7 @@ def process(yaml_name): jpg_name = os.path.join(output_jpg_dir, page_name + '.jpg') # Export to jpg - arcpy.mapping.ExportToJPEG(mxd, jpg_name) + arcpy.mapping.ExportToJPEG(mxd, jpg_name, resolution=150) def main():