Commit b04f25eb authored by Dorchies David's avatar Dorchies David
Browse files

fix: hydraulic length should be in km for airGR

Refs #2
Showing with 3 additions and 1 deletion
+3 -1
......@@ -30,7 +30,9 @@ Create the ginet object
```{r}
# Specify that all nodes are of run-off type
seine_nodes$runoff = TRUE
seine_nodes$runoff <- TRUE
# Convert distance in km as it the unit used by airGR
seine_nodes$distance_aval <- seine_nodes$distance_aval / 1000
# Generate the ginet object
ginet <- Ginet(seine_nodes, list(id = "id_sgl", down = "id_aval", length = "distance_aval"))
```
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment