Skip to content

Commit 4bfdbb0

Browse files
committed
2 parents d150126 + ebcf5b6 commit 4bfdbb0

File tree

1 file changed

+15
-18
lines changed

1 file changed

+15
-18
lines changed

README.md

Lines changed: 15 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Date: 2018-11-06
1010

1111
Version: 0.2.1
1212

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).
1414

1515
Introduction
1616
------------
@@ -33,9 +33,8 @@ and used as fallback. The local configuration file needs to be called
3333
The climada configuration file is a JSON file and consists of the following values:
3434

3535
- ``local_data``
36-
- ``entity``
36+
- ``global``
3737
- ``trop_cyclone``
38-
- ``log_level``
3938

4039
A minimal configuration file looks something like this:
4140

@@ -44,42 +43,40 @@ A minimal configuration file looks something like this:
4443
"local_data":
4544
{
4645
"save_dir": "./results/",
47-
"entity_def" : "",
48-
"repository": ""
46+
"entity_def": ""
4947
},
5048

51-
"log_level": "INFO",
52-
53-
"entity":
49+
"global":
5450
{
55-
"present_ref_year": 2016,
56-
"future_ref_year": 2030
51+
"log_level": "INFO",
52+
"max_matrix_size": 1.0e8
5753
},
5854

5955
"trop_cyclone":
6056
{
61-
"time_step_h": 1,
6257
"random_seed": 54
6358
}
6459
}
6560
```
6661

67-
6862
### local_data
63+
Configuration values related to local data location.
6964

7065
| Option | Description | Default |
7166
| ------ | ----------- | ------- |
7267
| ``save_dir`` | Folder were the variables are saved through the ``save`` command. An absolut path is safer. | "./results" |
7368
| ``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-
7669

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 |
7975

8076
### trop_cyclone
8177
Configuration values related to tropical cyclones.
8278

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 |
8582

0 commit comments

Comments
 (0)