Skip to content

Commit 660a172

Browse files
authored
Clarify relationship between body text and figures (#10346)
2 parents b70907a + 80966be commit 660a172

6 files changed

Lines changed: 49 additions & 48 deletions

File tree

docs/gentle_gis_introduction/authors_and_contributors.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,11 @@ About the authors & contributors
2424
| | the goal of helping people to learn and use opensource GIS software. |
2525
| | **Web**: https://kartoza.com **Email**: marcelle@kartoza.com |
2626
+----------------+----------------------------------------------------------------------+
27-
| |lerato| | Lerato Nsibande -- Video Presenter. Lerato is a grade 12 scholar |
27+
| |lerato| | Lerato Nsibande --- Video Presenter. Lerato is a grade 12 scholar |
2828
| | living in Pretoria. Lerato learns Geography at school and has |
2929
| | enjoyed learning GIS with us! |
3030
+----------------+----------------------------------------------------------------------+
31-
| |sibongile| | Sibongile Mthombeni -- Video Presenter. Sibongile lives near |
31+
| |sibongile| | Sibongile Mthombeni --- Video Presenter. Sibongile lives near |
3232
| | Johannesburg with her young daughter. Her goal is to continue her |
3333
| | studies and become a nurse. Working on this project was the first |
3434
| | time Sibongile used a computer. |

docs/gentle_gis_introduction/data_capture.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ of a vector feature describes its **shape** and **position**, while the
1919
etc.).
2020

2121
In this section we will look more closely at the process of creating and editing
22-
vector data -- both the geometry and attributes of vector features.
22+
vector data --- both the geometry and attributes of vector features.
2323

2424
How does GIS digital data get stored?
2525
=====================================
@@ -152,7 +152,7 @@ sample site. So we may end up with an attribute table that looks something like
152152
Drawing a table like :numref:`table_river_attributes` before you create your vector
153153
layer will let you decide what attribute fields (columns) you will need. Note
154154
that the geometry (positions where samples were taken) is not shown in the
155-
attribute table -- the GIS Application stores it separately!
155+
attribute table --- the GIS Application stores it separately!
156156

157157
Creating an empty shapefile
158158
===========================
@@ -179,15 +179,15 @@ Next you will add fields to the attribute table. Normally we give field names th
179179
are short, have no spaces and indicate what type of information is being stored
180180
in that field. Example field names may be 'pH', 'RoofColour', 'RoadType' and so
181181
on. As well as choosing a name for each field, you need to indicate how the
182-
information should be stored in that field -- i.e. is it a number, a word or a
182+
information should be stored in that field --- i.e. is it a number, a word or a
183183
sentence, or a date?
184184

185185
Computer programs usually call information that is made up of words or sentences
186186
'**strings**', so if you need to store something like a street name or the name
187187
of a river, you should use 'String' for the field type.
188188

189189
The shapefile format allows you to store the numeric field information as either
190-
a whole number (**integer**) or a decimal number (**floating point**) -- so you
190+
a whole number (**integer**) or a decimal number (**floating point**) --- so you
191191
need to think before hand whether the numeric data you are going to capture will
192192
have decimal places or not.
193193

docs/gentle_gis_introduction/introducing_gis.rst

Lines changed: 37 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,11 @@ on a computer. GIS stands for **'Geographical Information System'**.
1818

1919
A GIS consists of:
2020

21-
* **Digital Data** -- the geographical information that you will view and
21+
* **Digital Data** --- the geographical information that you will view and
2222
analyse using computer hardware and software.
23-
* **Computer Hardware** -- computers used for storing data, displaying graphics
23+
* **Computer Hardware** --- computers used for storing data, displaying graphics
2424
and processing data.
25-
* **Computer Software** -- computer programs that run on the computer hardware
25+
* **Computer Software** --- computer programs that run on the computer hardware
2626
and allow you to work with digital data. A software program that forms part of
2727
the GIS is called a GIS Application.
2828

@@ -78,7 +78,7 @@ GIS is a relatively new field --- it started in the 1970's. It used to be that
7878
computerised GIS was only available to companies and universities that had
7979
expensive computer equipment. These days, anyone with a personal computer or
8080
laptop can use GIS software. Over time GIS Applications have also become easier
81-
to use -- it used to require a lot of training to use a GIS Application, but now
81+
to use --- it used to require a lot of training to use a GIS Application, but now
8282
it is much easier to get started in GIS even for amateurs and casual users. As we
8383
described above, GIS is more than just software, it refers to all aspects of
8484
managing and using digital geographical data. In the tutorials that follow we
@@ -87,25 +87,27 @@ will be focusing on GIS Software.
8787
What is GIS Software / a GIS Application?
8888
=========================================
8989

90-
You can see an example of what a **GIS Application** looks like :numref:`figure_gis_application`.
90+
You can see an example of what a **GIS Application** looks like in :numref:`figure_gis_application`.
9191
GIS Applications are normally programs with a graphical user interface that can
9292
be manipulated using the mouse and keyboard. The application provides **menus**
9393
near to the top of the window (:guilabel:`Project`, :guilabel:`Edit`, etc.) which,
9494
when clicked using the mouse, show a panel of **actions**.
9595
These actions provide a way for you to tell the GIS Application what you want to do.
96-
For example you may use the menus to tell the GIS Application to add a new layer to the display output.
96+
For example you may use the menus to tell the GIS Application to add a new layer to the display output, as in :numref:`figure_gis_menus`.
9797

98+
.. _figure_gis_menus:
9899

99100
.. figure:: img/menus.png
100101
:align: center
101102

102103
Application menus, when clicked with the mouse, expand to show a list of
103104
actions that can be carried out.
104105

105-
**Toolbars** (rows of small pictures that can be clicked with the mouse) normally
106-
sit just below the menus and provide a quicker way to use frequently needed
107-
actions.
106+
As seen in :numref:`figure_gis_toolbars`, **toolbars** (rows of small pictures
107+
that can be clicked with the mouse) normally sit just below the menus and
108+
provide a quicker way to use frequently needed actions.
108109

110+
.. _figure_gis_toolbars:
109111

110112
.. figure:: img/toolbars.png
111113
:align: center
@@ -115,7 +117,7 @@ actions.
115117

116118
A common function of GIS Applications is to display **map layers**. Map layers
117119
are stored as files on a disk or as records in a database. Normally each map
118-
layer will represent something in the real world -- a roads layer for example
120+
layer will represent something in the real world --- a roads layer for example
119121
will have data about the street network.
120122

121123
When you open a layer in the GIS Application it will appear in the **map view**.
@@ -124,64 +126,63 @@ layer to a map view, the layers are overlaid on top of each other. Look at
124126
figures :numref:`figure_map_view_towns`, :numref:`figure_map_view_schools`,
125127
:numref:`figure_map_view_railways` and :numref:`figure_map_view_rivers`
126128
to see a map view that has several layers being added to it.
127-
An important function of the map view is to allow you to zoom in to magnify,
128-
zoom out to see a greater area and move around (panning) in the map.
129129

130130
.. _figure_map_view_towns:
131131

132132
.. figure:: img/map_view_towns.png
133133
:align: center
134134
:width: 30em
135135

136-
A map view with several layers being added to it. A towns layer added to the
137-
map view.
136+
A towns layer added to the map view
138137

139138
.. _figure_map_view_schools:
140139

141140
.. figure:: img/map_view_schools.png
142141
:align: center
143142
:width: 30em
144143

145-
A map view with several layers being added to it. A schools layer added to
146-
the map view
147-
144+
A schools layer added to the map view
148145

149146
.. _figure_map_view_railways:
150147

151148
.. figure:: img/map_view_railways.png
152149
:align: center
153150
:width: 30em
154151

155-
A map view with several layers being added to it. A railways layer added to
156-
the map view
152+
A railways layer added to the map view
157153

158154
.. _figure_map_view_rivers:
159155

160156
.. figure:: img/map_view_rivers.png
161157
:align: center
162158
:width: 30em
163159

164-
A map view with several layers being added to it. A rivers layer added to the
165-
map view
160+
A rivers layer added to the map view
166161

167-
Another common feature of GIS Applications is the **map legend**. The map legend
168-
provides a list of layers that have been loaded in the GIS Application. Unlike a
169-
paper map legend, the map legend or 'layers list' in the GIS Application provides
170-
a way to re-order, hide, show and group layers. Changing the layer order is done
171-
by clicking on a layer in the legend, holding the mouse button down and then
172-
dragging the layer to a new position. In figures :numref:`figure_map_legend_before` and
173-
:numref:`figure_map_legend_after` the map legend is shown as the area to the left of the GIS
174-
Application window. By changing the layer order, the way that layers are drawn
175-
can be adjusted –-- in this case so that rivers are drawn below the roads instead
176-
of over them.
162+
An important function of the map view is to allow you to zoom in to magnify,
163+
zoom out to see a greater area and move around (panning) in the map. GIS
164+
software also lets you easily change symbology --- the way information is
165+
displayed. :numref:`figure_map_symbology` shows the map view after panning to
166+
the side and changing the symbology of the layers.
177167

178168
.. _figure_map_symbology:
179169

180170
.. figure:: img/symbology.png
181171
:align: center
182172
:width: 30em
183173

184-
GIS Software lets you easily change symbology --- the way information is displayed.
174+
A map view after moving around (panning) and changing the symbology
175+
176+
Another common feature of GIS Applications is the **map legend**. The map legend
177+
provides a list of layers that have been loaded in the GIS Application. Unlike a
178+
paper map legend, the map legend or 'layers list' in the GIS Application provides
179+
a way to re-order, hide, show and group layers. Changing the layer order is done
180+
by clicking on a layer in the legend, holding the mouse button down and then
181+
dragging the layer to a new position. In :numref:`figure_map_legend_before` and
182+
:numref:`figure_map_legend_after`, the map legend is shown as the area to the left of the GIS
183+
Application window. By changing the layer order, the way that layers are drawn
184+
can be adjusted --- in this case so that rivers are drawn below the roads instead
185+
of over them.
185186

186187

187188
.. _figure_map_legend_before:
@@ -237,16 +238,16 @@ date columns hold **non-geographical data**.
237238
A common feature of GIS is that they allow you to associate information
238239
(non-geographical data) with places (geographical data). In fact, the GIS
239240
Application can store many pieces of information which are associated with each
240-
place -- something that paper maps are not very good at. For example, our health
241+
place --- something that paper maps are not very good at. For example, our health
241242
care worker could store the person's age and gender on her table. When the GIS
242243
Application draws the layer, you can tell it to draw the layer based on gender,
243244
or based on disease type, and so on. So, with a GIS Application we have a way to
244245
easily change the appearance of the maps we created based on the non-geographical
245246
data associated with places.
246247

247-
GIS Systems work with many different types of data. **Vector data** is stored as
248+
GIS Systems work with many different types of data. **Vector data** are stored as
248249
a series of ``X, Y`` coordinate pairs inside the computer's memory. Vector data
249-
are used to represent points, lines and areas. Illustration :numref:`figure_vector_data`
250+
are used to represent points, lines and areas. :numref:`figure_vector_data`
250251
shows different types of vector data being viewed in a GIS application. In the
251252
tutorials that follow we will be exploring vector data in more detail.
252253

@@ -263,7 +264,7 @@ tutorials that follow we will be exploring vector data in more detail.
263264
the earth and the photographs they take are a kind of raster data that can be
264265
viewed in a GIS. One important difference between raster and vector data is that
265266
if you zoom in too much on a raster image, it will start to appear 'blocky' (see
266-
illustrations :numref:`figure_raster_data` and :numref:`figure_raster_data_zoom`). In fact these
267+
:numref:`figure_raster_data` and :numref:`figure_raster_data_zoom`). In fact these
267268
blocks are the individual cells of the data grid that makes up the raster image.
268269
We will be looking at raster data in greater detail in later tutorials.
269270

docs/gentle_gis_introduction/raster_data.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ greatly increase the amount of storage needed.
200200

201201
Sometimes using a low spatial resolution is useful when you want to work with a
202202
large area and are not interested in looking at any one area in a lot of detail.
203-
The cloud maps you see on the weather report, are an example of this -- it's
203+
The cloud maps you see on the weather report, are an example of this --- it's
204204
useful to see the clouds across the whole country. Zooming in to one particular
205205
cloud in high resolution will not tell you very much about the upcoming weather!
206206

docs/gentle_gis_introduction/vector_attribute_data.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ the house pictures in :numref:`figure_house`.
4545
The geometry of these house features is a polygon (based on the floor plan of the
4646
house), the attributes we have recorded are roof colour, whether there is a
4747
balcony, and the year the house was built. Note that attributes don't have to be
48-
visible things -- they can describe things we know about the feature such as the
48+
visible things --- they can describe things we know about the feature such as the
4949
year it was built. In a GIS Application, we can represent this feature type in a
5050
houses polygon layer, and the attributes in an attribute table (see :numref:`figure_house_gis`).
5151

@@ -149,7 +149,7 @@ table.
149149
| Record 3 | 2001 | Silver | Yes |
150150
+-----------------+---------------------+---------------------+------------------+
151151

152-
Each field in the attribute table contains a specific type of data --
152+
Each field in the attribute table contains a specific type of data ---
153153
text, numeric or date. Deciding what attributes to use for a feature requires some
154154
thought and planning. In our house example earlier on in this topic, we chose roof
155155
colour, presence of a balcony and year of construction as attributes of interest.

docs/gentle_gis_introduction/vector_data.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ Polygon features are **enclosed areas** like dams, islands, country boundaries
160160
and so on. Like polyline features, polygons are created from a series of vertices
161161
that are connected with a continuous line. However because a polygon always
162162
describes an enclosed area, the first and last vertices should always be at the
163-
same place! Polygons often have **shared geometry** -- boundaries that are in
163+
same place! Polygons often have **shared geometry** --- boundaries that are in
164164
common with a neighbouring polygon. Many GIS applications have the capability to
165165
ensure that the boundaries of neighbouring polygons exactly coincide. We will
166166
explore this in the :ref:`gentle_gis_topology` topic later in this tutorial.
@@ -186,12 +186,12 @@ Editing vector data
186186
===================
187187

188188
The GIS application will allow you to create and modify the geometry data in a
189-
layer -- a process called **digitising** -- which we will look at more closely
189+
layer --- a process called **digitising** --- which we will look at more closely
190190
in a later tutorial. If a layer contains polygons (e.g. farm dams), the GIS
191191
application will only allow you to create new polygons in that layer. Similarly
192192
if you want to change the shape of a feature, the application will only allow you
193193
to do it if the changed shape is correct. For example it won't allow you to edit
194-
a line in such a way that it has only one vertex -- remember in our discussion
194+
a line in such a way that it has only one vertex --- remember in our discussion
195195
of lines above that all lines must have at least two vertices.
196196

197197
Creating and editing vector data is an important function of a GIS since it is

0 commit comments

Comments
 (0)