Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 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
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ following packages for install (switching from "Skip" to the version number):
* `python3-jupyterlab`
* `python3-ipywidgets`

![Install GRASS with OSGeo4W installer](images/osgeo4w_install_grass.png){width=60%}
![Install GRASS with OSGeo4W installer](images/osgeo4w_install_grass.png){width=60% .lightbox}

#### 3. Go make a cup of tea

Expand Down
22 changes: 11 additions & 11 deletions content/tutorials/get_started/fast_track.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ Just double click on the GRASS ![](images/grass-32x32.png) icon.
You will get the GUI and terminal. You can use GRASS tools in either.
It's a matter of taste, task on hand and habit, too.

![GRASS Graphical User Interface and terminal](images/grass_gui_first_time_and_cli_combined.png){width=60%}
![GRASS Graphical User Interface and terminal](images/grass_gui_first_time_and_cli_combined.png){width=60% fig-align="center" .lightbox}

GRASS GUI has a single window layout by default, but it is also possible to
minimize and/or dock/undock the panels. On the right, you can find the **data**
Expand All @@ -59,7 +59,7 @@ simple **Python console** where you can use the GRASS Python API.
::: {.callout-note}
See this example of the GRASS single window GUI with multiple map displays:

![](images/grass_gui_multiple_map_displays.png){.preview-image width=50%}
![](images/grass_gui_multiple_map_displays.png){.preview-image width=50% .lightbox}
:::

## Step 3: Create a project
Expand All @@ -86,7 +86,7 @@ name, EPSG code or take it from your input data. Let's see a simple way to
create a project in GRASS GUI. You can either click over "Create new project"
in the info bar or use ![](images/project-add.png) icon.

![Create a new GRASS project](images/create_new_project_gui.png){width=75%}
![Create a new GRASS project](images/create_new_project_gui.png){width=75% .lightbox}

## Step 4: Import your data

Expand All @@ -111,16 +111,16 @@ scenes that can be found
Note that we can import all files within a directory if we specify the
extension of such files, `jp2` in this case.

![](images/import_raster.png){width=50%}
![](images/import_raster.png){width=50% .lightbox}

In another example, we import a GeoPackage with different CRS. Data will be
automatically reprojected.

![](images/import_vector_with_reprojection.png){width=55%}
![](images/import_vector_with_reprojection.png){width=55% .lightbox}

Maps will be added to the layer tree and displayed automatically.

![](images/raster_and_vector_imported.png){width=75%}
![](images/raster_and_vector_imported.png){width=75% .lightbox}

## Step 5: Set the computational region

Expand All @@ -139,30 +139,30 @@ smaller computational region allows you to test your algorithms and parameter
values without the need to clip input maps, so once you are happy with the
result, you can run the process for the whole raster extent.

![](images/region.png){width=60%}
![](images/region.png){width=60% .lightbox}

The computational region can be changed interactively from the map display
by selecting a region with your mouse, or using the `g.region` tool both
from the GUI and command line.

* Interactive:

![](images/set_region_interactively.png){width=65%}
![](images/set_region_interactively.png){width=65% .lightbox}

* Using `g.region` from the contextual menu after right click on a layer:

![](images/grass_gui_set_region_contextual_menu.png){width=70%}
![](images/grass_gui_set_region_contextual_menu.png){width=70% .lightbox}

* Using `g.region` from the main menu in the GUI:

![](images/set_region_gui.png){width=70%}
![](images/set_region_gui.png){width=70% .lightbox}

Note how commands are formed when you select options in the GUI. If you use
the <Copy> button, you can then paste these in a text file and set the basis
of your protocol, which can then be generalized into a script or even your own
GRASS tool.

![](images/region_set.png){width=60%}
![](images/region_set.png){width=60% .lightbox}

* From the console tab or in the terminal:

Expand Down
Loading