2

I have a point dataset with XYZ values.

I inserted this layer in QGIS 3.6 via layer > add layer > add delimited layer.

Then, I interpolated these points to a raster via interpolation > TIN interpolation.

However, now the data are interpolated over the whole domain, even in areas where no data are present in the original file. How can I clip out the interpolated raster with the original shape of the point dataset?

The xyz file can be downloaded from:

https://wetransfer.com/downloads/4ae4ce51072dceef93486314d161509920191021213532/48e4ee68c17269bd6f7a72c1384b3c9a20191021213532/60b04d

Interpolated raster:

example1

Interpolated raster with original point dataset on top:

example2

Taras
  • 32,823
  • 4
  • 66
  • 137
user152287
  • 157
  • 3

1 Answers1

0

I had a similar problem and this is how I got a polygon shape file from the original point dataset:

  1. Vector > Geoprocessing tools > Buffer: set a buffer value so that the polygons will cover the whole area.
  2. Vector Geoprocessing tools > Dissolve: so that all the individual polygons become a single one.
  3. Optional: Vector > Greoprocessing tools > Buffer: to add a negative buffer so that the final polygon's boundaries as as close to the original points as possible.
tukanium
  • 191
  • 7