From 7a7c31a1c695b760444bc876fe54f5a7a0107e56 Mon Sep 17 00:00:00 2001 From: Brian Mirletz Date: Thu, 31 Oct 2024 17:23:31 -0600 Subject: [PATCH] Revert python script defaults --- .../End Use Load Profiles/load-data-example.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/samples/Python Scripts/End Use Load Profiles/load-data-example.py b/samples/Python Scripts/End Use Load Profiles/load-data-example.py index aade626319..d0d35e50a3 100644 --- a/samples/Python Scripts/End Use Load Profiles/load-data-example.py +++ b/samples/Python Scripts/End Use Load Profiles/load-data-example.py @@ -61,17 +61,17 @@ ## Set these parameters before running the script! ## # 1. Choose a U.S. state and county: -state = 'FL' -county_name = 'Broward' +state = 'CO' +county_name = 'Jefferson' # 2. Get these parameters from the data lake website: -year = '2021' -dataset = 'comstock_amy2018_release_1' +year = '2022' +dataset = 'resstock_amy2018_release_1' upgrade = 'baseline' # 3. Set the path where you want to store files # (files are large, you'll need at least 200 MB of space): -path='Sample Results' +path='' ## End Parameters ##