Skip to content

Commit bf16840

Browse files
committed
Use the .lightbox class to make images clickable
1 parent 1768dc5 commit bf16840

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

content/tutorials/get_started/fast_track.qmd

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ Just double click on the GRASS ![](images/grass-32x32.png) icon.
4343
You will get the GUI and terminal. You can use GRASS tools in either.
4444
It's a matter of taste, task on hand and habit, too.
4545

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

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

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

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

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

9191
## Step 4: Import your data
9292

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

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

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

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

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

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

125125
## Step 5: Set the computational region
126126

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

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

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

148148
* Interactive:
149149

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

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

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

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

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

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

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

167167
* From the console tab or in the terminal:
168168

0 commit comments

Comments
 (0)