Important

Translation is a community effort you can join. This page is currently translated at 44.52%.

28.1.6. Interpolarea

28.1.6.1. Heatmap (kernel density estimation)

Creates a density (heatmap) raster of an input point vector layer using kernel density estimation.

The density is calculated based on the number of points in a location, with larger numbers of clustered points resulting in larger values. Heatmaps allow easy identification of hotspots and clustering of points.

Parametri

Etichetă

Nume

Tipul

Descriere

Point layer

INPUT

[vector: punct]

Point vector layer to use for the heatmap

Radius

RADIUS

[număr]

Implicit: 100.0

Heatmap search radius (or kernel bandwidth) in map units. The radius specifies the distance around a point at which the influence of the point will be felt. Larger values result in greater smoothing, but smaller values may show finer details and variation in point density.

Output raster size

PIXEL_SIZE

[număr]

Implicit: 0.1

Pixel size of the output raster layer in layer units.

In the GUI, the size can be specified by the number of rows (Number of rows) / columns (Number of columns) or the pixel size( Pixel Size X / Pixel Size Y). Increasing the number of rows or columns will decrease the cell size and increase the file size of the output raster. The values in Rows, Columns, Pixel Size X and Pixel Size Y will be updated simultaneously - doubling the number of rows will double the number of columns, and the cell size will be halved. The extent of the output raster will remain the same (approximately).

Radius from field

Opţional

RADIUS_FIELD

[tablefield: numeric]

Sets the search radius for each feature from an attribute field in the input layer.

Weight from field

Opţional

WEIGHT_FIELD

[tablefield: numeric]

Allows input features to be weighted by an attribute field. This can be used to increase the influence certain features have on the resultant heatmap.

Kernel shape

KERNEL

[enumerare]

Implicit: 0

Controls the rate at which the influence of a point decreases as the distance from the point increases. Different kernels decay at different rates, so a triweight kernel gives features greater weight for distances closer to the point then the Epanechnikov kernel does. Consequently, triweight results in “sharper” hotspots and Epanechnikov results in “smoother” hotspots.

There are many shapes available (please see the Wikipedia page for further information):

  • 0 — Quartic

  • 1 — Triunghiular

  • 2 — Uniform

  • 3 — Triweight

  • 4 — Epanechnikov

Decay ratio (Triangular kernels only)

Opţional

DECAY

[număr]

Implicit: 0.0

Can be used with Triangular kernels to further control how heat from a feature decreases with distance from the feature.

  • A value of 0 (=minimum) indicates that the heat will be concentrated in the center of the given radius and completely extinguished at the edge.

  • A value of 0.5 indicates that pixels at the edge of the radius will be given half the heat as pixels at the center of the search radius.

  • A value of 1 means the heat is spread evenly over the whole search radius circle. (This is equivalent to the ‘Uniform’ kernel.)

  • A value greater than 1 indicates that the heat is higher towards the edge of the search radius than at the center.

Output value scaling

OUTPUT_VALUE

[enumerare]

Implicit: Raw

Allow to change the values of the output heatmap raster. One of:

  • 0 — Brut

  • 1 — Scalat

Heatmap

OUTPUT

[raster]

Implicit: [Salvare într-un fișier temporar]

Specify the output raster layer with kernel density values. One of:

  • Salvare într-un Fișier Temporar

  • Salvare în Fișier…

Rezultat

Etichetă

Nume

Tipul

Descriere

Heatmap

OUTPUT

[raster]

Raster layer with kernel density values

Example: Creating a Heatmap

For the following example, we will use the airports vector point layer from the QGIS sample dataset (see Descărcarea datelor demonstrative). Another excellent QGIS tutorial on making heatmaps can be found at http://qgistutorials.com.

In Fig. 28.2, the airports of Alaska are shown.

../../../../_images/heatmap_start.png

Fig. 28.2 Airports of Alaska

  1. Open the Heatmap (Kernel Density Estimation) algorithm from the QGIS Interpolation group

  2. In the Point layer selectString field, select airports from the list of point layers loaded in the current project.

  3. Change the Radius to 1000000 meters.

  4. Change the Pixel size X to 1000. The Pixel size Y, Rows and Columns will be automatically updated.

  5. Click on Run to create and load the airports heatmap (see Fig. 28.4).

../../../../_images/heatmap_dialog.png

Fig. 28.3 The Heatmap Dialog

QGIS will generate the heatmap and add it to your map window. By default, the heatmap is shaded in greyscale, with lighter areas showing higher concentrations of airports. The heatmap can now be styled in QGIS to improve its appearance.

../../../../_images/heatmap_loaded_grey.png

Fig. 28.4 The heatmap after loading looks like a grey surface

  1. Open the properties dialog of the heatmap_airports layer (select the layer heatmap_airports, open the context menu with the right mouse button and select Properties).

  2. Select the Symbology tab.

  3. Change the Render type selectString to «Singleband pseudocolor».

  4. Select a suitable Color ramp selectString, for instance YlOrRd.

  5. Click the Classify button.

  6. Press OK to update the layer.

The final result is shown in Fig. 28.5.

../../../../_images/heatmap_loaded_colour.png

Fig. 28.5 Styled heatmap of airports of Alaska

Cod Python

Algorithm ID: qgis:heatmapkerneldensityestimation

import processing
processing.run("algorithm_id", {parameter_dictionary})

ID-ul algoritmului se afișează atunci când treceți peste algoritmul din caseta instrumentelor de procesare. Dicționarul parametrilor furnizează valorile și NUMELE parametrilor. Pentru detalii despre rularea algoritmilor de procesare din consola Python, parcurgeți Utilizarea algoritmilor de procesare din consolă.

28.1.6.2. Interpolare IDW

Generates an Inverse Distance Weighted (IDW) interpolation of a point vector layer.

Sample points are weighted during interpolation such that the influence of one point relative to another declines with distance from the unknown point you want to create.

The IDW interpolation method also has some disadvantages: the quality of the interpolation result can decrease, if the distribution of sample data points is uneven.

Furthermore, maximum and minimum values in the interpolated surface can only occur at sample data points.

Parametri

Etichetă

Nume

Tipul

Descriere

Strat(uri) de intrare

INTERPOLATION_DATA

[string]

Vector layer(s) and field(s) to use for the interpolation, coded in a string (see the ParameterInterpolationData class in InterpolationWidgets for more details).

The following GUI elements are provided to compose the interpolation data string:

  • Strat vectorial [vector: oricare]

  • Interpolation attribute [tablefield: numeric]: Attribute to use in the interpolation

  • Use Z-coordinate for interpolation [boolean]: Uses the layer’s stored Z values (Default: False)

For each of the added layer-field combinations, a type can be chosen:

  • Points

  • Structured lines

  • Break lines

In the string, the layer-field elements are separated by '::|::'. The sub-elements of the layer-field elements are separated by '::~::'.

Distance coefficient P

DISTANCE_COEFFICIENT

[număr]

Implicit: 2.0

Sets the distance coefficient for the interpolation. Minimum: 0.0, maximum: 100.0.

Extent (xmin, xmax, ymin, ymax)

EXTENT

[extent]

Extent of the output raster layer.

Metodele disponibile sunt:

  • Calculate from layer…: uses extent of a layer loaded in the current project

  • Calculate from layout map…: uses extent of a layout map item in the active project

  • Calculate from bookmark…: uses extent of a saved bookmark

  • Use map canvas extent

  • Draw on canvas: click and drag a rectangle delimiting the area to take into account

  • Enter the coordinates as xmin, xmax, ymin, ymax

Output raster size

PIXEL_SIZE

[număr]

Implicit: 0.1

Pixel size of the output raster layer in layer units.

In the GUI, the size can be specified by the number of rows (Number of rows) / columns (Number of columns) or the pixel size( Pixel Size X / Pixel Size Y). Increasing the number of rows or columns will decrease the cell size and increase the file size of the output raster. The values in Rows, Columns, Pixel Size X and Pixel Size Y will be updated simultaneously - doubling the number of rows will double the number of columns, and the cell size will be halved. The extent of the output raster will remain the same (approximately).

Interpolated

OUTPUT

[raster]

Implicit: [Salvare într-un fișier temporar]

Raster layer of interpolated values. One of:

  • Salvare într-un Fișier Temporar

  • Salvare în Fișier…

Rezultat

Etichetă

Nume

Tipul

Descriere

Interpolated

OUTPUT

[raster]

Raster layer of interpolated values

Cod Python

Algorithm ID: qgis:idwinterpolation

import processing
processing.run("algorithm_id", {parameter_dictionary})

ID-ul algoritmului se afișează atunci când treceți peste algoritmul din caseta instrumentelor de procesare. Dicționarul parametrilor furnizează valorile și NUMELE parametrilor. Pentru detalii despre rularea algoritmilor de procesare din consola Python, parcurgeți Utilizarea algoritmilor de procesare din consolă.

28.1.6.3. Line Density

Calculates for each raster cell, the density measure of linear features within a circular neighbourhood. This measure is obtained by summing all the line segments intersecting the circular neighbourhood and dividing this sum by the area of such neighbourhood. A weighting factor can be applied to the line segments.

../../../../_images/linedensity.png

Fig. 28.6 Line density example. Input layer source: Roads Overijssel - The Netherlands (OSM).

Parametri

Etichetă

Nume

Tipul

Descriere

Stratul liniar de intrare

INPUT

[vector: oricare]

Input vector layer containing line features

Weight field

WEIGHT

[număr]

Field of the layer containing the weight factor to use during the calculation

Search Radius

RADIUS

[număr]

Implicit: 10

Radius of the circular neighbourhood. Units can be specified here.

Dimensiune pixel

PIXEL_SIZE

[număr]

Implicit: 10

Pixel size of the output raster layer in layer units. The raster has square pixels.

Line density raster

OUTPUT

[raster]

Implicit: [Salvare într-un fișier temporar]

The output as a raster layer. One of:

  • Salvare într-un Fișier Temporar

  • Salvare în Fișier…

Rezultat

Etichetă

Nume

Tipul

Descriere

Line density raster

OUTPUT

[raster]

The output line density raster layer.

Cod Python

ID Algorithm: nativ:linedensity

import processing
processing.run("algorithm_id", {parameter_dictionary})

ID-ul algoritmului se afișează atunci când treceți peste algoritmul din caseta instrumentelor de procesare. Dicționarul parametrilor furnizează valorile și NUMELE parametrilor. Pentru detalii despre rularea algoritmilor de procesare din consola Python, parcurgeți Utilizarea algoritmilor de procesare din consolă.

28.1.6.4. TIN Interpolation

Generează o interpolare de tip Rețea Neregulată Triangulată (TIN) pentru un strat vectorial de tip punct.

With the TIN method you can create a surface formed by triangles of nearest neighbor points. To do this, circumcircles around selected sample points are created and their intersections are connected to a network of non overlapping and as compact as possible triangles. The resulting surfaces are not smooth.

The algorithm creates both the raster layer of the interpolated values and the vector line layer with the triangulation boundaries.

Parametri

Etichetă

Nume

Tipul

Descriere

Strat(uri) de intrare

INTERPOLATION_DATA

[string]

Vector layer(s) and field(s) to use for the interpolation, coded in a string (see the ParameterInterpolationData class in InterpolationWidgets for more details).

The following GUI elements are provided to compose the interpolation data string:

  • Strat vectorial [vector: oricare]

  • Interpolation attribute [tablefield: numeric]: Attribute to use in the interpolation

  • Use Z-coordinate for interpolation [boolean]: Uses the layer’s stored Z values (Default: False)

For each of the added layer-field combinations, a type can be chosen:

  • Points

  • Structured lines

  • Break lines

In the string, the layer-field elements are separated by '::|::'. The sub-elements of the layer-field elements are separated by '::~::'.

Interpolation method

METHOD

[enumerare]

Implicit: 0

Set the interpolation method to be used. One of:

  • Linear

  • Clough-Toucher (cubic)

Extent (xmin, xmax, ymin, ymax)

EXTENT

[extent]

Extent of the output raster layer.

Metodele disponibile sunt:

  • Calculate from layer…: uses extent of a layer loaded in the current project

  • Calculate from layout map…: uses extent of a layout map item in the active project

  • Calculate from bookmark…: uses extent of a saved bookmark

  • Use map canvas extent

  • Draw on canvas: click and drag a rectangle delimiting the area to take into account

  • Enter the coordinates as xmin, xmax, ymin, ymax

Output raster size

PIXEL_SIZE

[număr]

Implicit: 0.1

Pixel size of the output raster layer in layer units.

In the GUI, the size can be specified by the number of rows (Number of rows) / columns (Number of columns) or the pixel size( Pixel Size X / Pixel Size Y). Increasing the number of rows or columns will decrease the cell size and increase the file size of the output raster. The values in Rows, Columns, Pixel Size X and Pixel Size Y will be updated simultaneously - doubling the number of rows will double the number of columns, and the cell size will be halved. The extent of the output raster will remain the same (approximately).

Interpolated

OUTPUT

[raster]

Implicit: [Salvare într-un fișier temporar]

The output TIN interpolation as a raster layer. One of:

  • Salvare într-un Fișier Temporar

  • Salvare în Fișier…

Triangulation

TRIANGULATION

[vector: linie]

Implicit: [Omitere rezultat]

The output TIN as a vector layer. One of:

  • Skip Output

  • Create Temporary Layer (TEMPORARY_OUTPUT)

  • Salvare în Fișier…

  • Salvare în Geopackage…

  • Salvare în Tabela Bazei de Date…

The file encoding can also be changed here.

Rezultat

Etichetă

Nume

Tipul

Descriere

Interpolated

OUTPUT

[raster]

The output TIN interpolation as a raster layer

Triangulation

TRIANGULATION

[vector: linie]

The output TIN as a vector layer.

Cod Python

Algorithm ID: qgis:tininterpolation

import processing
processing.run("algorithm_id", {parameter_dictionary})

ID-ul algoritmului se afișează atunci când treceți peste algoritmul din caseta instrumentelor de procesare. Dicționarul parametrilor furnizează valorile și NUMELE parametrilor. Pentru detalii despre rularea algoritmilor de procesare din consola Python, parcurgeți Utilizarea algoritmilor de procesare din consolă.