Changeset 7571
- Timestamp:
- Nov 26, 2009, 9:27:31 AM (15 years ago)
- Location:
- anuga_validation/automated_validation_tests/patong_beach_validation
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
anuga_validation/automated_validation_tests/patong_beach_validation/project.py
r7567 r7571 166 166 host = get_host_name() 167 167 168 # Environment variable names.169 # The inundation directory, not the data directory.170 ENV_INUNDATIONHOME = 'INUNDATIONHOME'171 172 # Path to MUX data173 ENV_MUXHOME = 'MUXHOME'174 175 168 #------------------------------------------------------------------------------- 176 169 # Output Elevation Data … … 191 184 run_time = time + '_run_' 192 185 193 # create paths generated from environment variables. 194 #home = join(os.getenv(ENV_INUNDATIONHOME), 'data') # Absolute path for data folder 195 #muxhome = os.getenv(ENV_MUXHOME) 196 186 # create paths for data files. 197 187 output_dirname = os.path.dirname(__file__) 198 188 home = os.path.join(output_dirname, 'local_data', 'data') -
anuga_validation/automated_validation_tests/patong_beach_validation/project_template.py
r7276 r7571 166 166 host = get_host_name() 167 167 168 # Environment variable names.169 # The inundation directory, not the data directory.170 ENV_INUNDATIONHOME = 'INUNDATIONHOME'171 172 # Path to MUX data173 ENV_MUXHOME = 'MUXHOME'174 175 168 #------------------------------------------------------------------------------- 176 169 # Output Elevation Data … … 191 184 run_time = time + '_run_' 192 185 193 # create paths generated from environment variables. 194 home = join(os.getenv(ENV_INUNDATIONHOME), 'data') # Absolute path for data folder 195 muxhome = os.getenv(ENV_MUXHOME) 186 # create paths for data files. 187 output_dirname = os.path.dirname(__file__) 188 home = os.path.join(output_dirname, 'local_data', 'data') 189 muxhome = home # FIXME (Ole): Get rid off 190 196 191 197 192 # check various directories/files that must exist
Note: See TracChangeset
for help on using the changeset viewer.