---
title: "Fiskeri og fangst"
subtitle: "Fangst og indhandling af fisk og skaldyr"
icon: bi-tsunami
listing:
- id: fish-links
template: ../../../../ejs/subtopics.ejs
- id: fish-publications
contents: ../../../releases/*.qmd
date-format: "YYYY-MM-DD"
include:
tag: Fiskeri
- id: fi-contact
contents: ../../../../staff.yml
template: ../../../../ejs/staff.ejs
include:
topics: FI
release-date: 2026-04-30
next-release: 2026-06-30
---
### Nøgletal
```{r}
library (tidyverse)
library (statgl)
# KPI 1: Samlet fangst, seneste fulde år (alle kvartaler)
catch_df <- statgl_fetch ("FID010" , quarter = "*" , .col_code = TRUE ) %>%
filter (! is.na (value), value != 0 ) %>%
filter (n_distinct (quarter) == 4 L, .by = time) %>%
filter (time == max (time)) %>%
summarise (value = sum (value), .by = time)
catch_val <- format (round (catch_df$ value), big.mark = "." , decimal.mark = "," )
catch_tid <- catch_df$ time
# KPI 2: Samlet indhandlingsværdi, seneste fulde år
trade_df <- statgl_fetch ("FID012" , enhed = "DKK" , month = "*" , .col_code = TRUE , .val_code = "month" ) %>%
filter (! is.na (value), value > 0 ) %>%
filter (n_distinct (month) == 12 L, .by = time) %>%
filter (time == max (time)) %>%
summarise (value = sum (value), .by = time)
trade_val <- format (round (trade_df$ value / 1000 , 0 ), big.mark = "." , decimal.mark = "," )
trade_tid <- trade_df$ time
# KPI 3: Aktive fartøjer i alt, seneste år
fleet_df <- statgl_fetch ("FIDFLEET" , taar = px_top (), .col_code = TRUE ) %>%
summarise (value = sum (value, na.rm = TRUE ), .by = taar)
fleet_val <- format (fleet_df$ value, big.mark = "." , decimal.mark = "," )
fleet_tid <- fleet_df$ taar
# KPI 4: Prisindeks rejer – ændring seneste kvartal ift. samme kvartal året før
idx_df <- statgl_fetch (
"FID009" ,
suussusaa = "Saarullik, Katillugit" ,
` kvartal-i ` = c ("Kv1" , "Kv2" , "Kv3" , "Kv4" ),
.col_code = TRUE
) %>%
filter (! is.na (value)) %>%
arrange (ukioq, ` kvartal-i ` )
periods <- idx_df %>% distinct (ukioq, ` kvartal-i ` ) %>% tail (2 )
latest_period <- paste (periods$ ` kvartal-i ` [2 ], periods$ ukioq[2 ])
idx_pct <- (idx_df %>% slice (n ()) %>% pull (value) - idx_df %>% slice (n ()- 1 ) %>% pull (value)) /
(idx_df %>% slice (n ()- 1 ) %>% pull (value)) * 100
idx_val <- glue:: glue ("{ifelse(idx_pct >= 0, '▲ ', '▼ ')}{format(abs(idx_pct), digits = 3, decimal.mark = ',')} %" )
```
::: {.grid}
::: {.g-col-12 .g-col-md-6}
{{< kpicard
value = '`r catch_val` ton'
title = "Samlet fangst"
subtitle = '`r catch_tid` '
link = "fish-catch.html"
>}}
:::
::: {.g-col-12 .g-col-md-6}
{{< kpicard
value = '`r trade_val` mio. kr.'
title = "Indhandlingsværdi"
subtitle = '`r trade_tid` '
link = "fish-trade.html"
>}}
:::
::: {.g-col-12 .g-col-md-6}
{{< kpicard
value = '`r fleet_val` '
title = "Aktive fartøjer"
subtitle = '`r fleet_tid` '
link = "ships.html"
>}}
:::
::: {.g-col-12 .g-col-md-6}
{{< kpicard
value = '`r idx_val` '
title = "Prisindeks rejer (1 år)"
subtitle = '`r latest_period` '
link = "fish-index.html"
>}}
:::
:::
Fiskeriet er grundstenen i den grønlandske økonomi. Statistikken dækker den kvartalsvise fangst, månedlig indhandling af fisk og skaldyr, prisudviklingen på nøglearter samt flåden af aktive fiskefartøjer.
### Emner
::: {#fish-links}
:::
### Se også
{{< feature
eyebrow = "Statistikbanken"
title = "Se tallene i Statistikbanken"
subtitle = "Her finder du alle bagvedliggende tal og serier for fiskeristatistikken."
icon = "bi-safe"
link = "https://bank.stat.gl/pxweb/da/Greenland/Greenland__FI/"
>}}
{{< feature
eyebrow = "Relateret"
title = "Udenrigshandel"
subtitle = "Eksport og import af varer, herunder fisk og fiskeprodukter."
icon = "bi-arrow-left-right"
link = "../UH/index.html"
>}}
### Seneste udgivelser
::: {#fish-publications}
:::
### Kontakt
::: {#fi-contact}
:::