-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
60 additions
and
0 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
--- | ||
social_image: img/card_social/hfc_blog.png | ||
draft: true | ||
date: 2024-07-27 | ||
authors: | ||
- pigreco | ||
categories: | ||
- espressioni | ||
tags: | ||
- blog | ||
- array | ||
- precisione | ||
- coordinate | ||
--- | ||
|
||
# Statistiche su punti sovrapposti | ||
|
||
## Introduzione | ||
|
||
Ho un file vettore di punti molti dei quali sono sovrapposti. | ||
come creare una etichetta che mostri il valore massimo, minimo o medio di un campo, calcolandolo ovviamente solo per i punti sovrapposti. | ||
|
||
!!! Abstract "Array_agg" | ||
**Restituisce un array di valori aggregati da un campo o espressione.** | ||
|
||
<!-- more --> | ||
|
||
## Espressione | ||
|
||
l'espressione da usare è: | ||
|
||
``` | ||
array_max( | ||
array_agg( | ||
expression:= "E" , | ||
group_by:=geom_to_wkt($geometry,2)) | ||
) | ||
``` | ||
|
||
- massimo [array_max](https://hfcqgis.opendatasicilia.it/gr_funzioni/array/array_unico/#array_max) | ||
|
||
[![](./img_01.png)](./img_01.png) | ||
|
||
- minimo [array_min](https://hfcqgis.opendatasicilia.it/gr_funzioni/array/array_unico/#array_min) | ||
|
||
[![](./img_02.png)](./img_02.png) | ||
|
||
- media [array_mean](https://hfcqgis.opendatasicilia.it/gr_funzioni/array/array_unico/#array_mean) | ||
|
||
[![](./img_03.png)](./img_03.png) | ||
|
||
## Approfondimenti | ||
|
||
La funzione [array_agg](https://hfcqgis.opendatasicilia.it/gr_funzioni/aggrega/aggrega_unico/#array_agg) aggrega valori dell’attributo E (che è un campo del vettore puntuale), con il `group_by` raggruppiamo per posizione usando `geom_to_wkt($geometry,2)`. | ||
La funzione [◙geom_to_wkt](https://hfcqgis.opendatasicilia.it/gr_funzioni/geometria/geometria_unico/#geom_to_wkt) permette di inserire una precisione sulla posizione. | ||
|
||
## Riferimento | ||
|
||
[discourse](https://discourse.osgeo.org/t/uso-di-array-aggregate-e-dintorni/31003?u=pigreco) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters