-
Notifications
You must be signed in to change notification settings - Fork 6
/
.gitignore
98 lines (65 loc) · 1.67 KB
/
.gitignore
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
# Main .gitignore file. Don't use any others!
# ********** Global stuff **********
# Mac crap
.DS_Store
# Vim swap files
*.swp
# All build directories
build
target
classes/
# R stuff
*.Rhistory
.Rproj.user
# Python stuff:
__pycache__/
*.ipynb_checkpoints/
# Compiled python modules.
*.pyc
# Setuptools distribution folder.
/dist/
# Python egg metadata, regenerated from source files by setuptools.
/*.egg-info
# Gradle stuff (from https://github.com/github/gitignore/blob/master/Gradle.gitignore )
.gradle
gradle-app.setting
!gradle-wrapper.jar
.gradletasknamecache
# ********** FOR IDEA / netbeans / spyder **********
.idea
.gradle
nbproject
*.iml
.spyproject/
# ********** Latex **********
*.aux
*.bbl
*.log
*.toc
*.blg
*.synctex.gz
# ********** NativeModel **********
Improbable/NativeModel-keanu/results/*.csv
Improbable/NativeModel-keanu/results/*.dot
Improbable/NativeModel-keanu/results/*.html
Improbable/NativeModel-keanu/results/figures/
Improbable/NativeModel-keanu/results/*.png
# ********** stationSim ***********
Improbable/stationSim-keanu/simulation_outputs/
# ********** Ambient population data **********
Projects/Ambient_Populations/data
# ********** **********
# ********** **********
# ********** **********
# ********** **********
Projects/DataAssimilation/Kalman-and-Bayesian-Filters-in-Python
# ********** tags **********
tags
# ********** enkf experiment results **********
Projects/ABM_DA/experiments/enkf_experiments/results
Projects/ABM_DA/experiments/enkf_experiments/data.json
# Vim files
*.vim
# calibration data
Projects/ABM_DA/experiments/stationsim_gcs_calibration/inputs/*
Projects/ABM_DA/experiments/stationsim_gcs_calibration/outputs/*