You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
869 B
Bash
18 lines
869 B
Bash
# Environment variables go here, these will be automatically read when using "pipenv run python 'file.py'"
|
|
|
|
# Location where data is backed up to. Should be able to copy a set of the data from here.
|
|
DATA_BACKUP_DIR="J:/Coastal/Temp/CKL/nsw_2016_storm_impact/data"
|
|
|
|
# Location where the matlab interpreter is located. Required for a couple of data processing scripts.
|
|
MATLAB_PATH="C:/Program Files/MATLAB/R2016b/bin/win64/MATLAB.exe"
|
|
|
|
# Number of threads to use for multi-core processing. Used when calculating time-varying beach slope when estimating
|
|
# total water level.
|
|
MULTIPROCESS_THREADS=2
|
|
|
|
|
|
# The settings below should be left as is unless you know what you're doing.
|
|
|
|
# Need to set pythonpath so that relative imports can be properly used in with pipenv
|
|
# Refer to https://stackoverflow.com/q/52986500 and https://stackoverflow.com/a/49797761
|
|
# PYTHONPATH=${PWD} |