Calculating Line Lengths and Statistics (QGIS3) - QGIS Tutorials and Tips
Calculating Line Lengths and Statistics (QGIS3) - QGIS Tutorials and Tips
Ujaval Gandhi
Follow @spatialthoughts
Check out more QGIS learning materials, including free full-length QGIS courses from Spatial Thoughts Academy
(https://spatialthoughts.com/resources).
Subscribe to my list
Email address
Subscribe
Change Language
English
For convenience, you may directly download a copy of the dataset from the link below:
ne_10m_railroads_north_america..zip (http://www.qgistutorials.com/downloads/ne_10m_railroads_north_america.zip)
2. You will see a new layer ne_10m_railroads_north_america loaded in the Layers panel. You will see that the layer
has lines representing railroads for all of North America. Now, let’s calculate the lengths of each line feature. Go to
Processing ‣ Toolbox.
3. Search for and locate the Vector geometry ‣ Add geometry attributes algorithm. Double-click to launch it.
4. In the Add Geometry Attributes dialog, select ne_10m_railroads_north_america as the Input layer. The input layer’s
Coordinate Reference System (CRS) is EPSG:4326 WGS84. This is a Geographic CRS with Latitude and Longitude as
coordinates, WGS84 as ellipsoid and degrees as units. Because latitude and longitude don’t have a standard length,
you can’t measure distances or areas accurately using planar geometry functions. Fortunately, QGIS provides a bet-
ter way to compute distances using ellipsoidal geometry, which is the most accurate method for layers spanning
large areas such as this. Pick Ellipsoidal as the Calculate using option. Click Run. Once the process nishes, click
Close.
Note
If your input layer is in a Projected CRS, you may choose Layer CRS option for calculation. Local or Regional projected
coordinate systems are designed to minimize distortions over their region of interest, so are more accurate for such
computation.
5. You will see a new layer Added geom info loaded in the Layers panel. This is a copy of the input layer with a new
column added for distance. Right-click the Added geom info layer and select Open Attribute Table.
Note
The Add Geometry Attribute tool adds di erent set of attributes depending on whether the input layer is points, lines
or polygons. See QGIS documentation
(https://docs.qgis.org/testing/en/docs/user_manual/processing_algs/qgis/vectorgeometry.html#add-geometry-attrib-
utes) for more details.
6. In the Attribute Table, you will see a new column called distance. This contains the length of each line feature in
meters. Also note that the sov_a3 attribute which contains the country code for each feature. Close the Attribute
Table window.
7. Now that we have lengths of individual railroad line segments, we can add them up to nd the total length of rail-
roads. But as the problem statement demands we need total railroad length in the United States, we must use only
the segments contained within USA. We can use the country code value in the sov_a3 column to lter the layer.
Right-click the Added geom info layer and select Filter.
8. In the Query Builder dialog, enter the following expression and click OK.
"sov_a3" = 'USA'
9. You will see a Filter icon appear next to the Added geom info layer in the Layers panel indicating that a lter is ap-
plied to the layer. You can also visually con rm that the layer now contains line segments only for United States.
Now we are ready to calculate the sum. Click the Show statistical summary button on the Attributes Toolbar.
10. A new Statistics panel will open. Select Added geom info layer and length column.
11. You will see various statistics displayed in the panel. The unit of the statistics is the same as the units of length
column - meters. Let’s change the computation to use kilometers instead. Click the Expression icon next to the
elds drop-down menu in the Statistics panel.
12. Enter the following expression in the Expression Dialog that converts the length to kilometers.
length / 1000
13. The Sum value displayed is the total length of railroads in USA.
16 Comments QGIS Tutorials and Tips 🔒 Disqus' Privacy Policy
1 Login
LOG IN WITH
OR SIGN UP WITH DISQUS ?
Name