I have a set of points (X,Y,Z) across a river. Is there a way to present them as a cross section?
I'm attaching a cross section I made in Excel: The X axis are the longtitude and the Y axis, the Z elevation data.
I want to make such a cross section in QGIS. 
Asked
Active
Viewed 3,228 times
2
H.Wiener
- 1,009
- 2
- 15
- 23
-
1Can you add a drawing to illustrate what you want to achieve? – AndreJ Aug 11 '14 at 07:54
-
You need a general plotting library for this - so you could either use R or Python, and then write a script for the Processing module to get the data from your layer and plot. – Spacedman Nov 03 '16 at 08:45
1 Answers
1
In a first step, you should convert your point layer into a DEM raster: Creating raster or vector raster from DEM point file? or How to rasterize a vector map?
Then you can follow this advice: Drawing cross section in QGIS?
-
Thanks Andre, but this is exactly what I'm trying to avoid. The data points I have are too few and too scattered for creating a reasonable raster. – H.Wiener Aug 12 '14 at 12:35
-
1If they are not part of the cross-section cutline, QGIS has to interpolate between them. And the rasterize tool does exactly the same. – AndreJ Aug 12 '14 at 12:41