Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
10 changes: 5 additions & 5 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 Expand Up @@ -550,7 +550,7 @@ We can create a new LCP from the stranded hiker to FMC over terrain where land c
#### Command line

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

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

Expand Down
10 changes: 5 additions & 5 deletions 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 All @@ -373,7 +373,7 @@ Para criar um LCP no GRASS, usaremos [r.path](https://grass.osgeo.org/grass-stab
#### Linha de comando

```{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 @@ -383,7 +383,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 Expand Up @@ -537,7 +537,7 @@ Podemos criar um novo LCP do caminhante encalhado para o FMC em terrenos onde a
#### Linha de comando

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

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

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