@hestia-earth/guide 0.0.10 → 0.0.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +14 -0
- package/LICENSE +1 -1
- package/README.md +17 -24
- package/dist/content/applying-models/content.json +4 -0
- package/dist/content/applying-models/contributing.json +4 -0
- package/dist/content/{models → applying-models}/faq.json +1 -0
- package/dist/content/applying-models/introduction.json +4 -0
- package/dist/content/hestia-101/content.json +1 -0
- package/dist/content/index.json +255 -47
- package/dist/content/models/climateMeasurements/content.json +4 -0
- package/dist/content/models/climateMeasurements/precipitationAnnual/content.json +4 -0
- package/dist/content/models/climateMeasurements/precipitationAnnual/geospatialDatabase.json +17 -0
- package/dist/content/models/climateMeasurements/precipitationAnnual/site.json +17 -0
- package/dist/content/models/content.json +2 -1
- package/dist/content/models/landAnimalExcretaAndHousing/content.json +4 -0
- package/dist/content/models/landAnimalExcretaAndHousing/noxToAirExcreta/content.json +4 -0
- package/dist/content/models/landAnimalExcretaAndHousing/noxToAirExcreta/dammgen2009.json +20 -0
- package/dist/content/models/landAnimalExcretaAndHousing/noxToAirExcreta/stehfestBouwman2006.json +20 -0
- package/dist/content/models/landAnimalExcretaAndHousing/noxToAirExcreta/stehfestBouwman2006GisImplementation.json +20 -0
- package/dist/content/models/otherGeospatialData/content.json +4 -0
- package/dist/content/models/otherGeospatialData/salineWater/content.json +17 -0
- package/dist/index.d.ts +1 -0
- package/package.json +14 -5
- package/dist/content/models/contributing.json +0 -8
- package/dist/content/models/documentation.json +0 -11
- package/dist/content/models/introduction.json +0 -8
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,20 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
### [0.0.11](https://gitlab.com/hestia-earth/hestia-guide/compare/v0.0.10...v0.0.11) (2025-04-03)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
* automatically include markdown files from models added to TOC ([a44d6ee](https://gitlab.com/hestia-earth/hestia-guide/commit/a44d6ee7c3625bd4c13c3594091fe9e5873665da))
|
|
11
|
+
* include all models ([d712874](https://gitlab.com/hestia-earth/hestia-guide/commit/d71287420722f22c7c54c64176d6b11c4225c128))
|
|
12
|
+
* **models:** nest models under their folder ([8760fb1](https://gitlab.com/hestia-earth/hestia-guide/commit/8760fb15f32b51e7306c44c7836dcf6071654a34))
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
### Bug Fixes
|
|
16
|
+
|
|
17
|
+
* remove incorrect entries in models ([3acd812](https://gitlab.com/hestia-earth/hestia-guide/commit/3acd8125130965f8c5623cc09e2f385a3bd16b13))
|
|
18
|
+
|
|
5
19
|
### [0.0.10](https://gitlab.com/hestia-earth/hestia-guide/compare/v0.0.9...v0.0.10) (2024-10-30)
|
|
6
20
|
|
|
7
21
|
|
package/LICENSE
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
MIT License
|
|
2
2
|
|
|
3
|
-
Copyright (c) 2019-
|
|
3
|
+
Copyright (c) 2019-2025 Harmonised Environmental Storage and Tracking of the Impacts of Agriculture (HESTIA) Project
|
|
4
4
|
|
|
5
5
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
6
|
of this software and associated documentation files (the "Software"), to deal
|
package/README.md
CHANGED
|
@@ -13,25 +13,27 @@ Note: only lower chars, dashes (`-`) and numbers are allowed in the filenames.
|
|
|
13
13
|
## Writing Guidelines
|
|
14
14
|
|
|
15
15
|
1. Create a new file under `src/content` and make sure the filename only uses lowercase letters, numbers and dashes.
|
|
16
|
+
1. Add the file to the `src/index.yaml` file, defining the structure of the menu.
|
|
16
17
|
1. Start the file with a header level 2 using a double `##`. Example:
|
|
18
|
+
```markdown
|
|
19
|
+
## This is the header
|
|
17
20
|
|
|
18
|
-
|
|
19
|
-
## This is the header
|
|
20
|
-
|
|
21
|
-
This is the content.
|
|
21
|
+
This is the content.
|
|
22
22
|
|
|
23
|
-
### This is a sub-header
|
|
24
|
-
|
|
23
|
+
### This is a sub-header
|
|
24
|
+
``
|
|
25
25
|
|
|
26
26
|
The header level 1 will be automatically used as Title for the Guide page, so please try to keep it short.
|
|
27
27
|
|
|
28
28
|
The second line (omitting the blank lines) will be used as abstract.
|
|
29
29
|
|
|
30
|
-
|
|
30
|
+
*Example*: if you are adding a page called "Signing in" under "HESTIA 101", please:
|
|
31
|
+
- add `src/content/hestia-101/signin.md` file;
|
|
32
|
+
- add a new entry `- id: signin` under the `pages` array for `hestia-101` in `src/index.yaml` file.
|
|
31
33
|
|
|
32
|
-
|
|
34
|
+
This will automatically:
|
|
33
35
|
- show the page under "HESTIA 101" menu
|
|
34
|
-
- show the page as item number
|
|
36
|
+
- show the page as item number N in the menu (depending on the page index in the yaml file)
|
|
35
37
|
- match the page with the url `hestia-101-signin`
|
|
36
38
|
- the title of the page will be used also in the menu
|
|
37
39
|
|
|
@@ -46,8 +48,8 @@ These metadata must be added at the end of the file, one per line. The list of m
|
|
|
46
48
|
|
|
47
49
|
| Name | Can be added multiple times | Description |
|
|
48
50
|
| ---- | ---- | ---- |
|
|
49
|
-
| `
|
|
50
|
-
| `
|
|
51
|
+
| `author` | ❌ | Name of the person that wrote the file |
|
|
52
|
+
| `contributor` | ✅ | Name of the person that contributed to write the file |
|
|
51
53
|
| `tag` | ✅ | Used to group pages together as "related" |
|
|
52
54
|
|
|
53
55
|
**Example:**
|
|
@@ -59,8 +61,6 @@ This is the content of the page.
|
|
|
59
61
|
|
|
60
62
|
/tag ~Hestia~
|
|
61
63
|
/tag ~Beginners~
|
|
62
|
-
/previous ~how-to-upload~
|
|
63
|
-
/next ~how-to-access-data~
|
|
64
64
|
```
|
|
65
65
|
|
|
66
66
|
### Adding images or videos
|
|
@@ -68,14 +68,7 @@ This is the content of the page.
|
|
|
68
68
|
To add an image or a video to a page:
|
|
69
69
|
- add the file under the `src/assets` folder. Note: you can use sub-directories to organise the files.
|
|
70
70
|
- make sure to use a simple name, without special characters. So only letters and numbers, dashes or underscores.
|
|
71
|
-
- in the content of the page, use
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
or to use videos in different formats
|
|
76
|
-
```html
|
|
77
|
-
<video width="320" height="240" controls>
|
|
78
|
-
<source src="/guide-content/assets/<path to the file>.mp4" type="video/mp4">
|
|
79
|
-
<source src="/guide-content/assets/<path to the file>.ogg" type="video/ogg">
|
|
80
|
-
</video>
|
|
81
|
-
```
|
|
71
|
+
- in the content of the page, use:
|
|
72
|
+
```markdown
|
|
73
|
+

|
|
74
|
+
```
|
package/dist/content/index.json
CHANGED
|
@@ -6,77 +6,285 @@
|
|
|
6
6
|
"mdPath": "hestia-101/content.md",
|
|
7
7
|
"jsonPath": "hestia-101/content.json",
|
|
8
8
|
"title": "HESTIA 101",
|
|
9
|
-
"createdAt": "2024-10-
|
|
10
|
-
"updatedAt": "
|
|
9
|
+
"createdAt": "2024-10-30T08:23:25.000Z",
|
|
10
|
+
"updatedAt": "2025-02-10T14:33:04.000Z",
|
|
11
|
+
"tags": {}
|
|
11
12
|
}
|
|
12
13
|
},
|
|
13
14
|
{
|
|
14
15
|
"content": {
|
|
15
|
-
"id": "models",
|
|
16
|
-
"mdPath": "models/content.md",
|
|
17
|
-
"jsonPath": "models/content.json",
|
|
16
|
+
"id": "applying-models",
|
|
17
|
+
"mdPath": "applying-models/content.md",
|
|
18
|
+
"jsonPath": "applying-models/content.json",
|
|
18
19
|
"title": "Applying Models",
|
|
19
|
-
"createdAt": "2024-10-
|
|
20
|
-
"updatedAt": "
|
|
20
|
+
"createdAt": "2024-10-30T08:23:25.000Z",
|
|
21
|
+
"updatedAt": "2025-04-02T13:52:37.000Z",
|
|
22
|
+
"tags": {}
|
|
21
23
|
},
|
|
22
24
|
"pages": [
|
|
23
25
|
{
|
|
24
26
|
"content": {
|
|
25
|
-
"id": "models-introduction",
|
|
26
|
-
"mdPath": "models/introduction.md",
|
|
27
|
-
"jsonPath": "models/introduction.json",
|
|
27
|
+
"id": "applying-models-introduction",
|
|
28
|
+
"mdPath": "applying-models/introduction.md",
|
|
29
|
+
"jsonPath": "applying-models/introduction.json",
|
|
28
30
|
"title": "Introduction",
|
|
29
|
-
"createdAt": "2024-10-
|
|
30
|
-
"updatedAt": "
|
|
31
|
-
"tags": {
|
|
32
|
-
"next": [
|
|
33
|
-
"documentation"
|
|
34
|
-
]
|
|
35
|
-
}
|
|
31
|
+
"createdAt": "2024-10-30T08:23:25.000Z",
|
|
32
|
+
"updatedAt": "2025-04-02T13:52:37.000Z",
|
|
33
|
+
"tags": {}
|
|
36
34
|
}
|
|
37
35
|
},
|
|
38
36
|
{
|
|
39
37
|
"content": {
|
|
40
|
-
"id": "models-
|
|
41
|
-
"mdPath": "models/
|
|
42
|
-
"jsonPath": "models/
|
|
43
|
-
"title": "
|
|
44
|
-
"createdAt": "2024-10-
|
|
45
|
-
"updatedAt": "
|
|
46
|
-
"tags": {
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
38
|
+
"id": "applying-models-contributing",
|
|
39
|
+
"mdPath": "applying-models/contributing.md",
|
|
40
|
+
"jsonPath": "applying-models/contributing.json",
|
|
41
|
+
"title": "Contributing",
|
|
42
|
+
"createdAt": "2024-10-30T08:23:25.000Z",
|
|
43
|
+
"updatedAt": "2025-04-02T13:52:37.000Z",
|
|
44
|
+
"tags": {}
|
|
45
|
+
}
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
"content": {
|
|
49
|
+
"id": "applying-models-faq",
|
|
50
|
+
"mdPath": "applying-models/faq.md",
|
|
51
|
+
"jsonPath": "applying-models/faq.json",
|
|
52
|
+
"title": "FAQ",
|
|
53
|
+
"createdAt": "2024-10-30T08:23:25.000Z",
|
|
54
|
+
"updatedAt": "2025-04-02T13:52:37.000Z",
|
|
55
|
+
"tags": {}
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
]
|
|
59
|
+
},
|
|
60
|
+
{
|
|
61
|
+
"content": {
|
|
62
|
+
"id": "models",
|
|
63
|
+
"mdPath": "models/content.md",
|
|
64
|
+
"jsonPath": "models/content.json",
|
|
65
|
+
"title": "Models",
|
|
66
|
+
"createdAt": "2024-10-30T08:23:25.000Z",
|
|
67
|
+
"updatedAt": "2025-04-02T13:52:37.000Z",
|
|
68
|
+
"tags": {}
|
|
69
|
+
},
|
|
70
|
+
"pages": [
|
|
71
|
+
{
|
|
72
|
+
"content": {
|
|
73
|
+
"id": "models-climateMeasurements",
|
|
74
|
+
"mdPath": "models/climateMeasurements/content.md",
|
|
75
|
+
"jsonPath": "models/climateMeasurements/content.json",
|
|
76
|
+
"title": "Climate Measurements",
|
|
77
|
+
"createdAt": "2025-04-03T09:49:02.000Z",
|
|
78
|
+
"updatedAt": "2025-04-03T09:49:01.000Z",
|
|
79
|
+
"tags": {}
|
|
80
|
+
},
|
|
81
|
+
"pages": [
|
|
82
|
+
{
|
|
83
|
+
"content": {
|
|
84
|
+
"id": "models-climateMeasurements-precipitationAnnual",
|
|
85
|
+
"mdPath": "models/climateMeasurements/precipitationAnnual/content.md",
|
|
86
|
+
"jsonPath": "models/climateMeasurements/precipitationAnnual/content.json",
|
|
87
|
+
"title": "Precipitation (annual)",
|
|
88
|
+
"createdAt": "2025-04-03T09:49:02.000Z",
|
|
89
|
+
"updatedAt": "2025-04-03T09:49:01.000Z",
|
|
90
|
+
"tags": {}
|
|
91
|
+
},
|
|
92
|
+
"tabs": [
|
|
93
|
+
{
|
|
94
|
+
"content": {
|
|
95
|
+
"id": "models-climateMeasurements-precipitationAnnual-geospatialDatabase",
|
|
96
|
+
"mdPath": "models/climateMeasurements/precipitationAnnual/geospatialDatabase.md",
|
|
97
|
+
"jsonPath": "models/climateMeasurements/precipitationAnnual/geospatialDatabase.json",
|
|
98
|
+
"title": "Must be associated with at least 1 `Cycle` that has an",
|
|
99
|
+
"createdAt": "2025-04-03T09:49:02.000Z",
|
|
100
|
+
"updatedAt": "2025-04-03T09:49:01.000Z",
|
|
101
|
+
"tags": {
|
|
102
|
+
"author": [
|
|
103
|
+
"Guillaume Royer"
|
|
104
|
+
],
|
|
105
|
+
"group": [
|
|
106
|
+
"Climate Measurements"
|
|
107
|
+
],
|
|
108
|
+
"tab": [
|
|
109
|
+
"Geospatial Database"
|
|
110
|
+
],
|
|
111
|
+
"returns": [
|
|
112
|
+
"Measurement"
|
|
113
|
+
]
|
|
114
|
+
}
|
|
115
|
+
}
|
|
116
|
+
},
|
|
117
|
+
{
|
|
118
|
+
"content": {
|
|
119
|
+
"id": "models-climateMeasurements-precipitationAnnual-site",
|
|
120
|
+
"mdPath": "models/climateMeasurements/precipitationAnnual/site.md",
|
|
121
|
+
"jsonPath": "models/climateMeasurements/precipitationAnnual/site.json",
|
|
122
|
+
"title": "This model computes Annual value based on Monthly values.",
|
|
123
|
+
"createdAt": "2025-04-03T09:49:01.000Z",
|
|
124
|
+
"updatedAt": "2025-04-03T09:49:01.000Z",
|
|
125
|
+
"tags": {
|
|
126
|
+
"author": [
|
|
127
|
+
"Guillaume Royer"
|
|
128
|
+
],
|
|
129
|
+
"group": [
|
|
130
|
+
"Climate Measurements"
|
|
131
|
+
],
|
|
132
|
+
"tab": [
|
|
133
|
+
"Site"
|
|
134
|
+
],
|
|
135
|
+
"returns": [
|
|
136
|
+
"Measurement"
|
|
137
|
+
]
|
|
138
|
+
}
|
|
139
|
+
}
|
|
140
|
+
}
|
|
52
141
|
]
|
|
53
142
|
}
|
|
54
|
-
|
|
143
|
+
]
|
|
55
144
|
},
|
|
56
145
|
{
|
|
57
146
|
"content": {
|
|
58
|
-
"id": "models-
|
|
59
|
-
"mdPath": "models/
|
|
60
|
-
"jsonPath": "models/
|
|
61
|
-
"title": "
|
|
62
|
-
"createdAt": "
|
|
63
|
-
"updatedAt": "
|
|
64
|
-
"tags": {
|
|
65
|
-
|
|
66
|
-
|
|
147
|
+
"id": "models-landAnimalExcretaAndHousing",
|
|
148
|
+
"mdPath": "models/landAnimalExcretaAndHousing/content.md",
|
|
149
|
+
"jsonPath": "models/landAnimalExcretaAndHousing/content.json",
|
|
150
|
+
"title": "Land Animal Excreta and Housing",
|
|
151
|
+
"createdAt": "2025-04-03T09:49:02.000Z",
|
|
152
|
+
"updatedAt": "2025-04-03T09:49:01.000Z",
|
|
153
|
+
"tags": {}
|
|
154
|
+
},
|
|
155
|
+
"pages": [
|
|
156
|
+
{
|
|
157
|
+
"content": {
|
|
158
|
+
"id": "models-landAnimalExcretaAndHousing-noxToAirExcreta",
|
|
159
|
+
"mdPath": "models/landAnimalExcretaAndHousing/noxToAirExcreta/content.md",
|
|
160
|
+
"jsonPath": "models/landAnimalExcretaAndHousing/noxToAirExcreta/content.json",
|
|
161
|
+
"title": "NOx, to air, excreta",
|
|
162
|
+
"createdAt": "2025-04-03T09:49:02.000Z",
|
|
163
|
+
"updatedAt": "2025-04-03T09:49:01.000Z",
|
|
164
|
+
"tags": {}
|
|
165
|
+
},
|
|
166
|
+
"tabs": [
|
|
167
|
+
{
|
|
168
|
+
"content": {
|
|
169
|
+
"id": "models-landAnimalExcretaAndHousing-noxToAirExcreta-dammgen2009",
|
|
170
|
+
"mdPath": "models/landAnimalExcretaAndHousing/noxToAirExcreta/dammgen2009.md",
|
|
171
|
+
"jsonPath": "models/landAnimalExcretaAndHousing/noxToAirExcreta/dammgen2009.json",
|
|
172
|
+
"title": "/author ~Guillaume Royer~",
|
|
173
|
+
"createdAt": "2025-04-03T09:49:01.000Z",
|
|
174
|
+
"updatedAt": "2025-04-03T09:49:01.000Z",
|
|
175
|
+
"tags": {
|
|
176
|
+
"author": [
|
|
177
|
+
"Guillaume Royer"
|
|
178
|
+
],
|
|
179
|
+
"contributor": [
|
|
180
|
+
"Juan Sabuco"
|
|
181
|
+
],
|
|
182
|
+
"group": [
|
|
183
|
+
"Land Animal Excreta and Housing"
|
|
184
|
+
],
|
|
185
|
+
"tab": [
|
|
186
|
+
"Dämmgen (2009)"
|
|
187
|
+
],
|
|
188
|
+
"returns": [
|
|
189
|
+
"Emission"
|
|
190
|
+
]
|
|
191
|
+
}
|
|
192
|
+
}
|
|
193
|
+
},
|
|
194
|
+
{
|
|
195
|
+
"content": {
|
|
196
|
+
"id": "models-landAnimalExcretaAndHousing-noxToAirExcreta-stehfestBouwman2006",
|
|
197
|
+
"mdPath": "models/landAnimalExcretaAndHousing/noxToAirExcreta/stehfestBouwman2006.md",
|
|
198
|
+
"jsonPath": "models/landAnimalExcretaAndHousing/noxToAirExcreta/stehfestBouwman2006.json",
|
|
199
|
+
"title": "/author ~Guillaume Royer~",
|
|
200
|
+
"createdAt": "2025-04-03T09:49:01.000Z",
|
|
201
|
+
"updatedAt": "2025-04-03T09:49:01.000Z",
|
|
202
|
+
"tags": {
|
|
203
|
+
"author": [
|
|
204
|
+
"Guillaume Royer"
|
|
205
|
+
],
|
|
206
|
+
"group": [
|
|
207
|
+
"Land Animal Excreta and Housing"
|
|
208
|
+
],
|
|
209
|
+
"tab": [
|
|
210
|
+
"Stehfest Bouwman (2006)"
|
|
211
|
+
],
|
|
212
|
+
"requires": [
|
|
213
|
+
"animal"
|
|
214
|
+
],
|
|
215
|
+
"returns": [
|
|
216
|
+
"Emission"
|
|
217
|
+
]
|
|
218
|
+
}
|
|
219
|
+
}
|
|
220
|
+
},
|
|
221
|
+
{
|
|
222
|
+
"content": {
|
|
223
|
+
"id": "models-landAnimalExcretaAndHousing-noxToAirExcreta-stehfestBouwman2006GisImplementation",
|
|
224
|
+
"mdPath": "models/landAnimalExcretaAndHousing/noxToAirExcreta/stehfestBouwman2006GisImplementation.md",
|
|
225
|
+
"jsonPath": "models/landAnimalExcretaAndHousing/noxToAirExcreta/stehfestBouwman2006GisImplementation.json",
|
|
226
|
+
"title": "/author ~Guillaume Royer~",
|
|
227
|
+
"createdAt": "2025-04-03T09:49:01.000Z",
|
|
228
|
+
"updatedAt": "2025-04-03T09:49:01.000Z",
|
|
229
|
+
"tags": {
|
|
230
|
+
"author": [
|
|
231
|
+
"Guillaume Royer"
|
|
232
|
+
],
|
|
233
|
+
"group": [
|
|
234
|
+
"Land Animal Excreta and Housing"
|
|
235
|
+
],
|
|
236
|
+
"tab": [
|
|
237
|
+
"Stehfest Bouwman (2006) GIS Implementation"
|
|
238
|
+
],
|
|
239
|
+
"requires": [
|
|
240
|
+
"animal"
|
|
241
|
+
],
|
|
242
|
+
"returns": [
|
|
243
|
+
"Emission"
|
|
244
|
+
]
|
|
245
|
+
}
|
|
246
|
+
}
|
|
247
|
+
}
|
|
67
248
|
]
|
|
68
249
|
}
|
|
69
|
-
|
|
250
|
+
]
|
|
70
251
|
},
|
|
71
252
|
{
|
|
72
253
|
"content": {
|
|
73
|
-
"id": "models-
|
|
74
|
-
"mdPath": "models/
|
|
75
|
-
"jsonPath": "models/
|
|
76
|
-
"title": "
|
|
77
|
-
"createdAt": "
|
|
78
|
-
"updatedAt": "
|
|
79
|
-
|
|
254
|
+
"id": "models-otherGeospatialData",
|
|
255
|
+
"mdPath": "models/otherGeospatialData/content.md",
|
|
256
|
+
"jsonPath": "models/otherGeospatialData/content.json",
|
|
257
|
+
"title": "Other Geospatial Data",
|
|
258
|
+
"createdAt": "2025-04-03T09:49:02.000Z",
|
|
259
|
+
"updatedAt": "2025-04-03T09:49:01.000Z",
|
|
260
|
+
"tags": {}
|
|
261
|
+
},
|
|
262
|
+
"pages": [
|
|
263
|
+
{
|
|
264
|
+
"content": {
|
|
265
|
+
"id": "models-otherGeospatialData-salineWater",
|
|
266
|
+
"mdPath": "models/otherGeospatialData/salineWater/content.md",
|
|
267
|
+
"jsonPath": "models/otherGeospatialData/salineWater/content.json",
|
|
268
|
+
"title": "Saline water",
|
|
269
|
+
"createdAt": "2025-04-03T09:49:01.000Z",
|
|
270
|
+
"updatedAt": "2025-04-03T09:49:01.000Z",
|
|
271
|
+
"tags": {
|
|
272
|
+
"author": [
|
|
273
|
+
"Guillaume Royer"
|
|
274
|
+
],
|
|
275
|
+
"group": [
|
|
276
|
+
"Other Geospatial Data"
|
|
277
|
+
],
|
|
278
|
+
"tab": [
|
|
279
|
+
"Site"
|
|
280
|
+
],
|
|
281
|
+
"returns": [
|
|
282
|
+
"Measurement"
|
|
283
|
+
]
|
|
284
|
+
}
|
|
285
|
+
}
|
|
286
|
+
}
|
|
287
|
+
]
|
|
80
288
|
}
|
|
81
289
|
]
|
|
82
290
|
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"tags": {
|
|
3
|
+
"author": [
|
|
4
|
+
"Guillaume Royer"
|
|
5
|
+
],
|
|
6
|
+
"group": [
|
|
7
|
+
"Climate Measurements"
|
|
8
|
+
],
|
|
9
|
+
"tab": [
|
|
10
|
+
"Geospatial Database"
|
|
11
|
+
],
|
|
12
|
+
"returns": [
|
|
13
|
+
"Measurement"
|
|
14
|
+
]
|
|
15
|
+
},
|
|
16
|
+
"content": "Must be associated with at least 1 `Cycle` that has an\n[endDate](https://hestia.earth/schema/Cycle#endDate) after `1979-01-01` and before `2020-06-01`.\n\n\n\n\n\n<div class=\"collapsibles\">\n <div class=\"collapsible-group\">\n <div class=\"collapsible-header\">Returns</div>\n <div class=\"collapsible-content\"><ul>\n<li>A list of <a href=\"https://hestia.earth/schema/Measurement\">Measurements</a> with:<ul>\n<li><a href=\"https://hestia.earth/schema/Measurement#term\">term</a> with <a href=\"https://hestia.earth/term/precipitationAnnual\">precipitationAnnual</a></li>\n<li><a href=\"https://hestia.earth/schema/Measurement#methodModel\">methodModel</a> with <a href=\"https://hestia.earth/term/\"></a></li>\n<li><a href=\"https://hestia.earth/schema/Measurement#value\">value</a></li>\n<li><a href=\"https://hestia.earth/schema/Measurement#startDate\">startDate</a></li>\n<li><a href=\"https://hestia.earth/schema/Measurement#endDate\">endDate</a></li>\n<li><a href=\"https://hestia.earth/schema/Measurement#methodClassification\">methodClassification</a> with <code>geospatial dataset</code></li>\n</ul>\n</li>\n</ul>\n</div>\n </div>\n\n <div class=\"collapsible-group\">\n <div class=\"collapsible-header\">Requirements</div>\n <div class=\"collapsible-content\"><ul>\n<li>A <a href=\"https://hestia.earth/schema/Site\">Site</a> with:<ul>\n<li>a <a href=\"https://hestia.earth/schema/Site#siteType\">siteType</a> = <code>forest</code> <strong>or</strong> <code>other natural vegetation</code> <strong>or</strong> <code>cropland</code> <strong>or</strong> <code>glass or high accessible cover</code> <strong>or</strong> <code>permanent pasture</code> <strong>or</strong> <code>animal housing</code> <strong>or</strong> <code>pond</code> <strong>or</strong> <code>river or stream</code> <strong>or</strong> <code>lake</code> <strong>or</strong> <code>sea or ocean</code></li>\n<li>either:<ul>\n<li>the following fields:<ul>\n<li><a href=\"https://hestia.earth/schema/Site#latitude\">latitude</a></li>\n<li><a href=\"https://hestia.earth/schema/Site#longitude\">longitude</a></li>\n</ul>\n</li>\n<li>the following fields:<ul>\n<li>a <a href=\"https://hestia.earth/schema/Site#boundary\">boundary</a></li>\n</ul>\n</li>\n<li>the following fields:<ul>\n<li>a <a href=\"https://hestia.earth/schema/Site#region\">region</a> with:<ul>\n<li><a href=\"https://hestia.earth/schema/Term#termType\">termType</a> = <a href=\"https://hestia.earth/glossary?termType=region\">region</a></li>\n</ul>\n</li>\n</ul>\n</li>\n</ul>\n</li>\n</ul>\n</li>\n</ul>\n</div>\n </div>\n <div class=\"collapsible-group\">\n <div class=\"collapsible-header\">Lookups used</div>\n <div class=\"collapsible-content\"><ul>\n<li><a href=\"https://hestia.earth/glossary/lookups/measurement.csv\">measurement.csv</a> -> <code>siteTypesAllowed</code></li>\n</ul>\n</div>\n </div>\n</div>\n"
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"tags": {
|
|
3
|
+
"author": [
|
|
4
|
+
"Guillaume Royer"
|
|
5
|
+
],
|
|
6
|
+
"group": [
|
|
7
|
+
"Climate Measurements"
|
|
8
|
+
],
|
|
9
|
+
"tab": [
|
|
10
|
+
"Site"
|
|
11
|
+
],
|
|
12
|
+
"returns": [
|
|
13
|
+
"Measurement"
|
|
14
|
+
]
|
|
15
|
+
},
|
|
16
|
+
"content": "This model computes Annual value based on Monthly values.\n\n\n\n\n\n<div class=\"collapsibles\">\n <div class=\"collapsible-group\">\n <div class=\"collapsible-header\">Returns</div>\n <div class=\"collapsible-content\"><ul>\n<li>A list of <a href=\"https://hestia.earth/schema/Measurement\">Measurements</a> with:<ul>\n<li><a href=\"https://hestia.earth/schema/Measurement#term\">term</a> with <a href=\"https://hestia.earth/term/precipitationAnnual\">precipitationAnnual</a></li>\n<li><a href=\"https://hestia.earth/schema/Measurement#methodModel\">methodModel</a> with <a href=\"https://hestia.earth/term/\"></a></li>\n<li><a href=\"https://hestia.earth/schema/Measurement#value\">value</a></li>\n<li><a href=\"https://hestia.earth/schema/Measurement#startDate\">startDate</a></li>\n<li><a href=\"https://hestia.earth/schema/Measurement#endDate\">endDate</a></li>\n<li><a href=\"https://hestia.earth/schema/Measurement#methodClassification\">methodClassification</a> with <code>modelled using other measurements</code></li>\n</ul>\n</li>\n</ul>\n</div>\n </div>\n\n <div class=\"collapsible-group\">\n <div class=\"collapsible-header\">Requirements</div>\n <div class=\"collapsible-content\"><ul>\n<li>A <a href=\"https://hestia.earth/schema/Site\">Site</a> with:<ul>\n<li>a <a href=\"https://hestia.earth/schema/Site#siteType\">siteType</a> = <code>forest</code> <strong>or</strong> <code>other natural vegetation</code> <strong>or</strong> <code>cropland</code> <strong>or</strong> <code>glass or high accessible cover</code> <strong>or</strong> <code>permanent pasture</code> <strong>or</strong> <code>animal housing</code> <strong>or</strong> <code>pond</code> <strong>or</strong> <code>river or stream</code> <strong>or</strong> <code>lake</code> <strong>or</strong> <code>sea or ocean</code></li>\n<li>a list of <a href=\"https://hestia.earth/schema/Site#measurements\">measurements</a> with:<ul>\n<li>Data completeness assessment for id: <a href=\"https://hestia.earth/schema/Completeness#id\">term.id</a> must be <code>precipitationMonthly</code></li>\n</ul>\n</li>\n</ul>\n</li>\n</ul>\n</div>\n </div>\n <div class=\"collapsible-group\">\n <div class=\"collapsible-header\">Lookups used</div>\n <div class=\"collapsible-content\"><ul>\n<li><a href=\"https://hestia.earth/glossary/lookups/measurement.csv\">measurement.csv</a> -> <code>siteTypesAllowed</code></li>\n</ul>\n</div>\n </div>\n</div>\n"
|
|
17
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
{
|
|
2
|
+
"tags": {
|
|
3
|
+
"author": [
|
|
4
|
+
"Guillaume Royer"
|
|
5
|
+
],
|
|
6
|
+
"contributor": [
|
|
7
|
+
"Juan Sabuco"
|
|
8
|
+
],
|
|
9
|
+
"group": [
|
|
10
|
+
"Land Animal Excreta and Housing"
|
|
11
|
+
],
|
|
12
|
+
"tab": [
|
|
13
|
+
"Dämmgen (2009)"
|
|
14
|
+
],
|
|
15
|
+
"returns": [
|
|
16
|
+
"Emission"
|
|
17
|
+
]
|
|
18
|
+
},
|
|
19
|
+
"content": "\n\n\n\n\n<div class=\"collapsibles\">\n <div class=\"collapsible-group\">\n <div class=\"collapsible-header\">Returns</div>\n <div class=\"collapsible-content\"><ul>\n<li>A list of <a href=\"https://hestia.earth/schema/Emission\">Emissions</a> with:<ul>\n<li><a href=\"https://hestia.earth/schema/Emission#term\">term</a> with <a href=\"https://hestia.earth/term/noxToAirExcreta\">noxToAirExcreta</a></li>\n<li><a href=\"https://hestia.earth/schema/Emission#methodModel\">methodModel</a> with <a href=\"https://hestia.earth/term/\"></a></li>\n<li><a href=\"https://hestia.earth/schema/Emission#value\">value</a></li>\n<li><a href=\"https://hestia.earth/schema/Emission#methodTier\">methodTier</a> with <code>tier 1</code></li>\n</ul>\n</li>\n</ul>\n</div>\n </div>\n\n <div class=\"collapsible-group\">\n <div class=\"collapsible-header\">Requirements</div>\n <div class=\"collapsible-content\"><ul>\n<li>A <a href=\"https://hestia.earth/schema/Cycle\">Cycle</a> with:<ul>\n<li>a <a href=\"https://hestia.earth/schema/Cycle#site\">site</a> with:<ul>\n<li><a href=\"https://hestia.earth/schema/Site#siteType\">siteType</a> with <code>cropland</code> <strong>or</strong> <code>permanent pasture</code> <strong>or</strong> <code>animal housing</code> <strong>or</strong> <code>pond</code> <strong>or</strong> <code>river or stream</code> <strong>or</strong> <code>lake</code> <strong>or</strong> <code>sea or ocean</code></li>\n</ul>\n</li>\n<li>a list of <a href=\"https://hestia.earth/schema/Cycle#inputs\">inputs</a> with:<ul>\n<li><a href=\"https://hestia.earth/schema/Input#term\">term</a> of <a href=\"https://hestia.earth/schema/Term#termType\">termType</a> = <a href=\"https://hestia.earth/glossary?termType=excreta\">excreta</a></li>\n</ul>\n</li>\n<li>a list of <a href=\"https://hestia.earth/schema/Cycle#practices\">practices</a> with:<ul>\n<li><a href=\"https://hestia.earth/schema/Practice#value\">value</a> and <a href=\"https://hestia.earth/schema/Practice#term\">term</a> of <a href=\"https://hestia.earth/schema/Term#termType\">termType</a> = <a href=\"https://hestia.earth/glossary?termType=excretaManagement\">excretaManagement</a></li>\n</ul>\n</li>\n</ul>\n</li>\n</ul>\n<p>This model works on the following Node type with identical requirements:</p>\n <ul>\n<li><a href=\"https://hestia.earth/schema/Cycle\">Cycle</a></li>\n<li><a href=\"https://hestia.earth/schema/Transformation\">Transformation</a></li>\n</ul></div>\n </div>\n <div class=\"collapsible-group\">\n <div class=\"collapsible-header\">Lookups used</div>\n <div class=\"collapsible-content\"><ul>\n<li><a href=\"https://hestia.earth/glossary/lookups/excretaManagement.csv\">excretaManagement.csv</a> -> <code>EF_NO-N</code></li>\n<li><a href=\"https://hestia.earth/glossary/lookups/emission.csv\">emission.csv</a> -> <code>siteTypesAllowed</code>; <code>inputTermTypesAllowed</code>; <code>typesAllowed</code></li>\n</ul>\n</div>\n </div>\n</div>\n"
|
|
20
|
+
}
|
package/dist/content/models/landAnimalExcretaAndHousing/noxToAirExcreta/stehfestBouwman2006.json
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
{
|
|
2
|
+
"tags": {
|
|
3
|
+
"author": [
|
|
4
|
+
"Guillaume Royer"
|
|
5
|
+
],
|
|
6
|
+
"group": [
|
|
7
|
+
"Land Animal Excreta and Housing"
|
|
8
|
+
],
|
|
9
|
+
"tab": [
|
|
10
|
+
"Stehfest Bouwman (2006)"
|
|
11
|
+
],
|
|
12
|
+
"requires": [
|
|
13
|
+
"animal"
|
|
14
|
+
],
|
|
15
|
+
"returns": [
|
|
16
|
+
"Emission"
|
|
17
|
+
]
|
|
18
|
+
},
|
|
19
|
+
"content": "\n\n\n\n<div class=\"collapsibles\">\n <div class=\"collapsible-group\">\n <div class=\"collapsible-header\">Returns</div>\n <div class=\"collapsible-content\"><ul>\n<li>A list of <a href=\"https://hestia.earth/schema/Emission\">Emissions</a> with:<ul>\n<li><a href=\"https://hestia.earth/schema/Emission#term\">term</a> with <a href=\"https://hestia.earth/term/noxToAirExcreta\">noxToAirExcreta</a></li>\n<li><a href=\"https://hestia.earth/schema/Emission#methodModel\">methodModel</a> with <a href=\"https://hestia.earth/term/\"></a></li>\n<li><a href=\"https://hestia.earth/schema/Emission#value\">value</a></li>\n<li><a href=\"https://hestia.earth/schema/Emission#methodTier\">methodTier</a> with <code>tier 2</code></li>\n</ul>\n</li>\n</ul>\n</div>\n </div>\n\n <div class=\"collapsible-group\">\n <div class=\"collapsible-header\">Requirements</div>\n <div class=\"collapsible-content\"><ul>\n<li>A <a href=\"https://hestia.earth/schema/Cycle\">Cycle</a> with:<ul>\n<li>a <a href=\"https://hestia.earth/schema/Cycle#site\">site</a> with:<ul>\n<li><a href=\"https://hestia.earth/schema/Site#siteType\">siteType</a> with <code>cropland</code> <strong>or</strong> <code>permanent pasture</code> <strong>or</strong> <code>animal housing</code> <strong>or</strong> <code>pond</code> <strong>or</strong> <code>river or stream</code> <strong>or</strong> <code>lake</code> <strong>or</strong> <code>sea or ocean</code> and a list of <a href=\"https://hestia.earth/schema/Site#measurements\">measurements</a> with:<ul>\n<li><a href=\"https://hestia.earth/schema/Measurement#value\">value</a> and <a href=\"https://hestia.earth/schema/Measurement#term\">term</a> with <a href=\"https://hestia.earth/term/totalNitrogenPerKgSoil\">totalNitrogenPerKgSoil</a></li>\n<li><a href=\"https://hestia.earth/schema/Measurement#value\">value</a> and <a href=\"https://hestia.earth/schema/Measurement#term\">term</a> with <a href=\"https://hestia.earth/term/ecoClimateZone\">ecoClimateZone</a></li>\n</ul>\n</li>\n</ul>\n</li>\n<li>a list of <a href=\"https://hestia.earth/schema/Cycle#inputs\">inputs</a> with:<ul>\n<li><a href=\"https://hestia.earth/schema/Input#value\">value</a> and <a href=\"https://hestia.earth/schema/Input#term\">term</a> of <a href=\"https://hestia.earth/schema/Term#units\">units</a> = <code>kg</code> <strong>or</strong> <code>kg N</code> and <a href=\"https://hestia.earth/schema/Input#term\">term</a> of <a href=\"https://hestia.earth/schema/Term#termType\">termType</a> = <a href=\"https://hestia.earth/glossary?termType=excreta\">excreta</a> and a list of <a href=\"https://hestia.earth/schema/Input#properties\">properties</a> with:<ul>\n<li><a href=\"https://hestia.earth/schema/Property#value\">value</a> and <a href=\"https://hestia.earth/schema/Property#term\">term</a> with <a href=\"https://hestia.earth/term/nitrogenContent\">nitrogenContent</a></li>\n</ul>\n</li>\n<li><a href=\"https://hestia.earth/schema/Input#term\">term</a> of <a href=\"https://hestia.earth/schema/Term#termType\">termType</a> = <a href=\"https://hestia.earth/glossary?termType=excreta\">excreta</a></li>\n</ul>\n</li>\n<li>Data completeness assessment for excreta: <a href=\"https://hestia.earth/schema/Completeness#excreta\">completeness.excreta</a> must be <code>True</code></li>\n<li>a list of <a href=\"https://hestia.earth/schema/Cycle#products\">products</a> with:<ul>\n<li><a href=\"https://hestia.earth/schema/Product#value\">value</a> and <a href=\"https://hestia.earth/schema/Product#term\">term</a> of <a href=\"https://hestia.earth/schema/Term#units\">units</a> = <code>kg</code> <strong>or</strong> <code>kg N</code> and <a href=\"https://hestia.earth/schema/Product#term\">term</a> of <a href=\"https://hestia.earth/schema/Term#termType\">termType</a> = <a href=\"https://hestia.earth/glossary?termType=excreta\">excreta</a> and a list of <a href=\"https://hestia.earth/schema/Product#properties\">properties</a> with:<ul>\n<li><a href=\"https://hestia.earth/schema/Property#value\">value</a> and <a href=\"https://hestia.earth/schema/Property#term\">term</a> with <a href=\"https://hestia.earth/term/nitrogenContent\">nitrogenContent</a></li>\n</ul>\n</li>\n</ul>\n</li>\n</ul>\n</li>\n</ul>\n<p>This model works on the following Node type with identical requirements:</p>\n <ul>\n<li><a href=\"https://hestia.earth/schema/Cycle\">Cycle</a></li>\n<li><a href=\"https://hestia.earth/schema/Transformation\">Transformation</a></li>\n</ul></div>\n </div>\n <div class=\"collapsible-group\">\n <div class=\"collapsible-header\">Lookups used</div>\n <div class=\"collapsible-content\"><ul>\n<li><a href=\"https://hestia.earth/glossary/lookups/ecoClimateZone.csv\">ecoClimateZone.csv</a> -> <code>STEHFEST_BOUWMAN_2006_NOX-N_FACTOR</code></li>\n<li><a href=\"https://hestia.earth/glossary/lookups/emission.csv\">emission.csv</a> -> <code>siteTypesAllowed</code>; <code>inputTermTypesAllowed</code>; <code>typesAllowed</code></li>\n</ul>\n</div>\n </div>\n</div>\n\n\n"
|
|
20
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
{
|
|
2
|
+
"tags": {
|
|
3
|
+
"author": [
|
|
4
|
+
"Guillaume Royer"
|
|
5
|
+
],
|
|
6
|
+
"group": [
|
|
7
|
+
"Land Animal Excreta and Housing"
|
|
8
|
+
],
|
|
9
|
+
"tab": [
|
|
10
|
+
"Stehfest Bouwman (2006) GIS Implementation"
|
|
11
|
+
],
|
|
12
|
+
"requires": [
|
|
13
|
+
"animal"
|
|
14
|
+
],
|
|
15
|
+
"returns": [
|
|
16
|
+
"Emission"
|
|
17
|
+
]
|
|
18
|
+
},
|
|
19
|
+
"content": "\n\n\n\n<div class=\"collapsibles\">\n <div class=\"collapsible-group\">\n <div class=\"collapsible-header\">Returns</div>\n <div class=\"collapsible-content\"><ul>\n<li>A list of <a href=\"https://hestia.earth/schema/Emission\">Emissions</a> with:<ul>\n<li><a href=\"https://hestia.earth/schema/Emission#term\">term</a> with <a href=\"https://hestia.earth/term/noxToAirExcreta\">noxToAirExcreta</a></li>\n<li><a href=\"https://hestia.earth/schema/Emission#methodModel\">methodModel</a> with <a href=\"https://hestia.earth/term/\"></a></li>\n<li><a href=\"https://hestia.earth/schema/Emission#value\">value</a></li>\n<li><a href=\"https://hestia.earth/schema/Emission#methodTier\">methodTier</a> with <code>tier 1</code></li>\n</ul>\n</li>\n</ul>\n</div>\n </div>\n\n <div class=\"collapsible-group\">\n <div class=\"collapsible-header\">Requirements</div>\n <div class=\"collapsible-content\"><ul>\n<li>A <a href=\"https://hestia.earth/schema/Cycle\">Cycle</a> with:<ul>\n<li>a <a href=\"https://hestia.earth/schema/Cycle#site\">site</a> with:<ul>\n<li><a href=\"https://hestia.earth/schema/Site#siteType\">siteType</a> with <code>cropland</code> <strong>or</strong> <code>permanent pasture</code> <strong>or</strong> <code>animal housing</code> <strong>or</strong> <code>pond</code> <strong>or</strong> <code>river or stream</code> <strong>or</strong> <code>lake</code> <strong>or</strong> <code>sea or ocean</code> and a <a href=\"https://hestia.earth/schema/Site#country\">country</a> with:<ul>\n<li><a href=\"https://hestia.earth/schema/Term#termType\">termType</a> = <a href=\"https://hestia.earth/glossary?termType=region\">region</a></li>\n</ul>\n</li>\n</ul>\n</li>\n<li>a list of <a href=\"https://hestia.earth/schema/Cycle#inputs\">inputs</a> with:<ul>\n<li><a href=\"https://hestia.earth/schema/Input#value\">value</a> and <a href=\"https://hestia.earth/schema/Input#term\">term</a> of <a href=\"https://hestia.earth/schema/Term#units\">units</a> = <code>kg</code> <strong>or</strong> <code>kg N</code> and <a href=\"https://hestia.earth/schema/Input#term\">term</a> of <a href=\"https://hestia.earth/schema/Term#termType\">termType</a> = <a href=\"https://hestia.earth/glossary?termType=excreta\">excreta</a> and a list of <a href=\"https://hestia.earth/schema/Input#properties\">properties</a> with:<ul>\n<li><a href=\"https://hestia.earth/schema/Property#value\">value</a> and <a href=\"https://hestia.earth/schema/Property#term\">term</a> with <a href=\"https://hestia.earth/term/nitrogenContent\">nitrogenContent</a></li>\n</ul>\n</li>\n<li><a href=\"https://hestia.earth/schema/Input#term\">term</a> of <a href=\"https://hestia.earth/schema/Term#termType\">termType</a> = <a href=\"https://hestia.earth/glossary?termType=excreta\">excreta</a></li>\n</ul>\n</li>\n<li>Data completeness assessment for excreta: <a href=\"https://hestia.earth/schema/Completeness#excreta\">completeness.excreta</a> must be <code>True</code></li>\n<li>a list of <a href=\"https://hestia.earth/schema/Cycle#products\">products</a> with:<ul>\n<li><a href=\"https://hestia.earth/schema/Product#value\">value</a> and <a href=\"https://hestia.earth/schema/Product#term\">term</a> of <a href=\"https://hestia.earth/schema/Term#units\">units</a> = <code>kg</code> <strong>or</strong> <code>kg N</code> and <a href=\"https://hestia.earth/schema/Product#term\">term</a> of <a href=\"https://hestia.earth/schema/Term#termType\">termType</a> = <a href=\"https://hestia.earth/glossary?termType=excreta\">excreta</a> and a list of <a href=\"https://hestia.earth/schema/Product#properties\">properties</a> with:<ul>\n<li><a href=\"https://hestia.earth/schema/Property#value\">value</a> and <a href=\"https://hestia.earth/schema/Property#term\">term</a> with <a href=\"https://hestia.earth/term/nitrogenContent\">nitrogenContent</a></li>\n</ul>\n</li>\n</ul>\n</li>\n</ul>\n</li>\n</ul>\n<p>This model works on the following Node type with identical requirements:</p>\n <ul>\n<li><a href=\"https://hestia.earth/schema/Cycle\">Cycle</a></li>\n<li><a href=\"https://hestia.earth/schema/Transformation\">Transformation</a></li>\n</ul></div>\n </div>\n <div class=\"collapsible-group\">\n <div class=\"collapsible-header\">Lookups used</div>\n <div class=\"collapsible-content\"><ul>\n<li><a href=\"https://hestia.earth/glossary/lookups/region.csv\">region.csv</a> -> <code>EF_NOX</code></li>\n<li><a href=\"https://hestia.earth/glossary/lookups/emission.csv\">emission.csv</a> -> <code>siteTypesAllowed</code>; <code>inputTermTypesAllowed</code>; <code>typesAllowed</code></li>\n</ul>\n</div>\n </div>\n</div>\n\n\n"
|
|
20
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"tags": {
|
|
3
|
+
"author": [
|
|
4
|
+
"Guillaume Royer"
|
|
5
|
+
],
|
|
6
|
+
"group": [
|
|
7
|
+
"Other Geospatial Data"
|
|
8
|
+
],
|
|
9
|
+
"tab": [
|
|
10
|
+
"Site"
|
|
11
|
+
],
|
|
12
|
+
"returns": [
|
|
13
|
+
"Measurement"
|
|
14
|
+
]
|
|
15
|
+
},
|
|
16
|
+
"content": "## Saline water\n\nNaturally occurring water on the Earth’s surface in seas and oceans, characterised by a high concentration (>18,000 parts per million) of dissolved salts, mostly sodium chloride.\n\n\n\n\n\n<div class=\"collapsibles\">\n <div class=\"collapsible-group\">\n <div class=\"collapsible-header\">Returns</div>\n <div class=\"collapsible-content\"><ul>\n<li>A list of <a href=\"https://hestia.earth/schema/Measurement\">Measurements</a> with:<ul>\n<li><a href=\"https://hestia.earth/schema/Measurement#term\">term</a> with <a href=\"https://hestia.earth/term/salineWater\">salineWater</a></li>\n<li><a href=\"https://hestia.earth/schema/Measurement#methodModel\">methodModel</a> with <a href=\"https://hestia.earth/term/\"></a></li>\n<li><a href=\"https://hestia.earth/schema/Measurement#value\">value</a> with <code>100</code></li>\n<li><a href=\"https://hestia.earth/schema/Measurement#methodClassification\">methodClassification</a> with <code>modelled using other measurements</code></li>\n</ul>\n</li>\n</ul>\n</div>\n </div>\n\n <div class=\"collapsible-group\">\n <div class=\"collapsible-header\">Requirements</div>\n <div class=\"collapsible-content\"><ul>\n<li>A <a href=\"https://hestia.earth/schema/Site\">Site</a> with:<ul>\n<li>a <a href=\"https://hestia.earth/schema/Site#siteType\">siteType</a> = <code>pond</code> <strong>or</strong> <code>river or stream</code> <strong>or</strong> <code>lake</code> <strong>or</strong> <code>sea or ocean</code></li>\n<li>a list of <a href=\"https://hestia.earth/schema/Site#measurements\">measurements</a> with:<ul>\n<li><a href=\"https://hestia.earth/schema/Measurement#term\">term</a> with <a href=\"https://hestia.earth/term/waterSalinity\">waterSalinity</a> and <a href=\"https://hestia.earth/schema/Measurement#value\">value</a> <code>> 18000</code></li>\n</ul>\n</li>\n</ul>\n</li>\n</ul>\n</div>\n </div>\n <div class=\"collapsible-group\">\n <div class=\"collapsible-header\">Lookups used</div>\n <div class=\"collapsible-content\"><ul>\n<li><a href=\"https://hestia.earth/glossary/lookups/measurement.csv\">measurement.csv</a> -> <code>siteTypesAllowed</code></li>\n</ul>\n</div>\n </div>\n</div>\n"
|
|
17
|
+
}
|
package/dist/index.d.ts
CHANGED
|
@@ -10,6 +10,7 @@ export interface IGuideIndexPageContent {
|
|
|
10
10
|
export interface IGuideIndexPage {
|
|
11
11
|
content?: IGuideIndexPageContent;
|
|
12
12
|
pages?: IGuideIndexPage[];
|
|
13
|
+
tabs?: IGuideIndexPage[];
|
|
13
14
|
}
|
|
14
15
|
export declare const loadIndex: () => IGuideIndexPage;
|
|
15
16
|
export declare const listPages: () => IGuideIndexPageContent[];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hestia-earth/guide",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.11",
|
|
4
4
|
"description": "Hestia Guide pages",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"typings": "dist/index.d.ts",
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
"test": "node scripts/check-content.js",
|
|
9
9
|
"build": "rm -rf dist && tsc -p tsconfig.dist.json",
|
|
10
10
|
"build:www": "node scripts/build.js",
|
|
11
|
-
"build:content": "rimraf content && node scripts/build-content.js && node scripts/build-index.js",
|
|
11
|
+
"build:content": "rimraf content && node scripts/build-models.js && node scripts/build-content.js && node scripts/build-index.js",
|
|
12
12
|
"release": "standard-version -a",
|
|
13
13
|
"postrelease": "git push origin master --follow-tags"
|
|
14
14
|
},
|
|
@@ -30,12 +30,21 @@
|
|
|
30
30
|
"devDependencies": {
|
|
31
31
|
"@commitlint/cli": "^19.5.0",
|
|
32
32
|
"@commitlint/config-conventional": "^19.5.0",
|
|
33
|
+
"@hestia-earth/glossary": "^0.66.0",
|
|
34
|
+
"@hestia-earth/schema": "^31.0.0",
|
|
35
|
+
"axios": "^1.8.4",
|
|
36
|
+
"camelcase": "^5.3.1",
|
|
37
|
+
"dotenv": "^16.4.7",
|
|
33
38
|
"git-date-extractor": "^4.0.1",
|
|
34
39
|
"husky": "^4.3.8",
|
|
40
|
+
"js-yaml": "^4.1.0",
|
|
41
|
+
"lodash.groupby": "^4.6.0",
|
|
42
|
+
"lodash.mapvalues": "^4.6.0",
|
|
43
|
+
"lodash.merge": "^4.6.2",
|
|
44
|
+
"marked": "^15.0.7",
|
|
45
|
+
"pluralize": "^8.0.0",
|
|
35
46
|
"rimraf": "^6.0.1",
|
|
36
|
-
"standard-version": "^9.5.0"
|
|
37
|
-
},
|
|
38
|
-
"dependencies": {
|
|
47
|
+
"standard-version": "^9.5.0",
|
|
39
48
|
"typescript": "^5.6.3"
|
|
40
49
|
}
|
|
41
50
|
}
|