Skip to content

Commit a9b447e

Browse files
authored
Merge pull request #27 from Rafnuss/v0.5
V0.5
2 parents 6cf2faa + 86b3bc3 commit a9b447e

3 files changed

Lines changed: 23 additions & 12 deletions

File tree

edges-table-schema.json

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,16 @@
1313
},
1414
"example": "18LX"
1515
},
16+
{
17+
"name": "type",
18+
"description": "Same as [`paths.type`](/GeoLocator-DP/geopressurer/paths#type). One of: `tag`, `most_likely`, `simulation` or `geopressureviz`.",
19+
"type": "string",
20+
"constraints": {
21+
"required": true,
22+
"enum": ["tag", "most_likely", "simulation", "geopressureviz"]
23+
},
24+
"example": "tag"
25+
},
1626
{
1727
"name": "stap_s",
1828
"description": "Identifier of the SOURCE stationary period. Foreign key to [`staps.stap_id`](/GeoLocator-DP/geopressurer/staps#stap_id)",
@@ -101,7 +111,7 @@
101111
},
102112
{
103113
"name": "j",
104-
"description": "Unique identifier for each simulated trajectory, integer from `1` to `nj` as defined in [`GeoPressureR::graph_simulation()`](https://raphaelnussbaumer.com/GeoPressureR/reference/graph_simulation)`.",
114+
"description": "Same as [`paths.j`](geopressurer/paths#j). Unique identifier for each trajectory. Only useful for `edges.type='simulation'`. Integer from `1` to `nj` as defined in [`GeoPressureR::graph_simulation()`](https://raphaelnussbaumer.com/GeoPressureR/reference/graph_simulation)`.",
105115
"type": "integer",
106116
"constraints": {
107117
"required": false,

geolocator-dp-profile.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -273,7 +273,8 @@
273273
"RRID",
274274
"UPC",
275275
"URN",
276-
"w3id"
276+
"w3id",
277+
"Other"
277278
]
278279
},
279280
"resourceTypeGeneral": {

paths-table-schema.json

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,6 @@
1313
},
1414
"example": "18LX"
1515
},
16-
{
17-
"name": "stap_id",
18-
"description": "Identifier of the stationary period. Foreign key to [`staps.stap_id`](/GeoLocator-DP/geopressurer/staps#stap_id)",
19-
"type": "number",
20-
"constraints": {
21-
"required": true
22-
},
23-
"example": "3"
24-
},
2516
{
2617
"name": "type",
2718
"description": "One of:\n - `tag`: Create with [`tag2path()`](https://raphaelnussbaumer.com/GeoPressureR/reference/tag2path) from a likelihood map.\n - `most_likely`: Created with [`graph_most_likely()`](https://raphaelnussbaumer.com/GeoPressureR/reference/graph_most_likely.html)\n- `simulation`: created by [`graph_simulation()`](https://raphaelnussbaumer.com/GeoPressureR/reference/graph_simulation): \n- `geopressureviz`: created by [`geopressureviz()`](https://raphaelnussbaumer.com/GeoPressureR/reference/geopressureviz).",
@@ -30,6 +21,15 @@
3021
"required": true,
3122
"enum": ["tag", "most_likely", "simulation", "geopressureviz"]
3223
},
24+
"example": "most_likely"
25+
},
26+
{
27+
"name": "stap_id",
28+
"description": "Identifier of the stationary period. Foreign key to [`staps.stap_id`](/GeoLocator-DP/geopressurer/staps#stap_id)",
29+
"type": "number",
30+
"constraints": {
31+
"required": true
32+
},
3333
"example": "3"
3434
},
3535
{
@@ -68,7 +68,7 @@
6868
},
6969
{
7070
"name": "j",
71-
"description": "Only useful for `paths.type='simulation'`. Unique identifier for each trajectory, integer from `1` to `nj` as defined in [`GeoPressureR::graph_simulation()`](https://raphaelnussbaumer.com/GeoPressureR/reference/graph_simulation)`.",
71+
"description": "Unique identifier for each trajectory. Only useful for `paths.type='simulation'`. Integer from `1` to `nj` as defined in [`GeoPressureR::graph_simulation()`](https://raphaelnussbaumer.com/GeoPressureR/reference/graph_simulation)`.",
7272
"type": "integer",
7373
"constraints": {
7474
"required": false,

0 commit comments

Comments
 (0)