You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+15-18Lines changed: 15 additions & 18 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,7 +10,7 @@ Date: 2018-11-06
10
10
11
11
Version: 0.2.1
12
12
13
-
See [technical documentation](http://climada-python.readthedocs.io/en/latest/) and [tutorial](https://github.com/davidnbresch/climada_python/tree/master/script/tutorial).
13
+
See [documentation](http://climada-python.readthedocs.io/en/latest/) and [tutorial](https://github.com/davidnbresch/climada_python/tree/master/script/tutorial).
14
14
15
15
Introduction
16
16
------------
@@ -33,9 +33,8 @@ and used as fallback. The local configuration file needs to be called
33
33
The climada configuration file is a JSON file and consists of the following values:
34
34
35
35
-``local_data``
36
-
-``entity``
36
+
-``global``
37
37
-``trop_cyclone``
38
-
-``log_level``
39
38
40
39
A minimal configuration file looks something like this:
41
40
@@ -44,42 +43,40 @@ A minimal configuration file looks something like this:
44
43
"local_data":
45
44
{
46
45
"save_dir":"./results/",
47
-
"entity_def":"",
48
-
"repository":""
46
+
"entity_def":""
49
47
},
50
48
51
-
"log_level":"INFO",
52
-
53
-
"entity":
49
+
"global":
54
50
{
55
-
"present_ref_year":2016,
56
-
"future_ref_year":2030
51
+
"log_level":"INFO",
52
+
"max_matrix_size":1.0e8
57
53
},
58
54
59
55
"trop_cyclone":
60
56
{
61
-
"time_step_h":1,
62
57
"random_seed":54
63
58
}
64
59
}
65
60
```
66
61
67
-
68
62
### local_data
63
+
Configuration values related to local data location.
69
64
70
65
| Option | Description | Default |
71
66
| ------ | ----------- | ------- |
72
67
|``save_dir``| Folder were the variables are saved through the ``save`` command. An absolut path is safer. | "./results" |
73
68
|``entity_def``| Entity to be used as default. If not provided, the static entity_template.xlsx is used. | "" |
74
-
|``repository``| Absolute path of climada's data repository. No default path provided. | "" |
75
-
76
69
77
-
### entity
78
-
Configuration values related to an Entity.
70
+
### global
71
+
| Option | Description | Default |
72
+
| ------ | ----------- | ------- |
73
+
|``log_level``| Minimum log level showed by logging: DEBUG, INFO, WARNING, ERROR or CRITICAL. | "INFO" |
74
+
|``max_matrix_size``| Maximum matrix size that can be used. Set a lower value if memory issues. | 1.0e8 |
79
75
80
76
### trop_cyclone
81
77
Configuration values related to tropical cyclones.
82
78
83
-
### log_level
84
-
Minimum log level showed by logging. DEBUG, INFO, WARNING, ERROR and CRITICAL are the different levels.
79
+
| Option | Description | Default |
80
+
| ------ | ----------- | ------- |
81
+
|``random_seed``| Seed used for the stochastic tracks generation. | 54 |
0 commit comments