Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions content/tutorials/modeling_movement/GRASS_movement.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -366,7 +366,7 @@ To create a LCP in GRASS, we will use [r.path](https://grass.osgeo.org/grass-sta
:::

::: g-col-6
2. Input the **coordinates of the hiker** as the starting point for the LCP. (We could also use a pre-defined vector point).
2. Input the **coordinates of the hiker** (477476,3914951) as the starting point for the LCP. (We could also use a pre-defined vector point).

![](img_movement/GRASS_movement_18.webp)
:::
Expand All @@ -383,7 +383,7 @@ To create a LCP in GRASS, we will use [r.path](https://grass.osgeo.org/grass-sta
#### Command line

```{bash}
r.path input=FMC_directions format=auto vector_path=LCP_cumulative start_coordinates=477476,13914951
r.path input=FMC_directions format=auto vector_path=LCP_cumulative start_coordinates=477476,3914951
```

#### Python
Expand All @@ -393,7 +393,7 @@ gs.run_command("r.path",
input="FMC_directions",
format="auto",
vector_path="LCP_cumulative",
start_coordinates=[477476, 13914951])
start_coordinates=[477476, 3914951])
```
::::::::

Expand Down
2 changes: 1 addition & 1 deletion content/tutorials/modeling_movement/GRASS_movement_pt.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -356,7 +356,7 @@ Para criar um LCP no GRASS, usaremos [r.path](https://grass.osgeo.org/grass-stab
:::

::: g-col-6
2. Insira as **coordenadas do caminhante** *(starting point)* como ponto de partida para o LCP. (Também podemos usar um ponto vetorial predefinido).
2. Insira as **coordenadas do caminhante** *(starting point)* (477476,3914951) como ponto de partida para o LCP. (Também podemos usar um ponto vetorial predefinido).

![](img_movement/GRASS_movement_18.webp)
:::
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading