Replaced project.json with info.yaml in places asking for basic project info. Renamed some variables that still referred to 'og.' Added create_yaml() method.
diff --git a/common/cace_launch.py b/common/cace_launch.py
index 8a17626..ed85b47 100755
--- a/common/cace_launch.py
+++ b/common/cace_launch.py
@@ -31,13 +31,13 @@
import file_compressor
import cace_makeplot
-import og_config
+import config
-# Values imported from og_config:
+# Values imported from config:
#
-mktp_server_url = og_config.mktp_server_url
-# obs: og_server_url = og_config.og_server_url
-simulation_path = og_config.simulation_path
+mktp_server_url = config.mktp_server_url
+# obs: og_server_url = config.og_server_url
+simulation_path = config.simulation_path
# Variables needing to be global until this file is properly made into a class
simfiles_path = []
@@ -1185,7 +1185,7 @@
if root_path:
simfiles_path = root_path + '/' + hashname
else:
- simfiles_path = og_config.simulation_path + '/' + hashname
+ simfiles_path = config.simulation_path + '/' + hashname
if not os.path.isdir(simfiles_path):
print('Error: Simulation folder ' + simfiles_path + ' does not exist.')