Skip to main content

Distrikt summary

Atlas view

Distrikt summary

api_v1.distrikt_summary

One row per regional chapter (Red Cross "distrikt" level, and the equivalent regional tier for any other NGO with a hierarchy).

First 5 rows · api_v1.distrikt_summary
snapshot 2026-05-12
chapter_idnamekommune_nrkommune_namengo_orgnrchild_countkommune_coverage_count
redcross-D018Agder Røde Kors4204Kristiansand8641394421712
redcross-D002Akershus Røde Kors3205Lillestrøm8641394421916
redcross-D006Buskerud Røde Kors3301Drammen8641394421915
redcross-D017Finnmark Røde Kors5607Vadsø8641394421713
redcross-D004Hedmark Røde Kors3403Hamar8641394422116

Built from

This Atlas view joins data from the following upstream sources. Click through for provenance, methodology, and citation.

Showing direct dbt parents. See full lineage in /lineage/ →

Columns

ColumnDescription
chapter_idComposite slug for the regional chapter (e.g. 'redcross-oslo'). Stable across refreshes. Unique within this view.
nameDisplay name for the regional chapter (e.g. 'Oslo Røde Kors').
kommune_nr4-digit kommune code where the regional chapter is headquartered. NULL for distrikter without a single HQ kommune. Note: kommune_coverage_count tells you how many *child* kommuner the distrikt covers — that's the operational footprint, not where the office sits.
kommune_nameJoined from dim_kommune. NULL when kommune_nr is NULL.
ngo_orgnr9-digit Brreg organisasjonsnummer of the NGO this distrikt belongs to.
child_countCount of active local chapters whose parent_chapter_id equals this distrikt's chapter_id. The "lokalforeninger" total shown in the UI.
kommune_coverage_countCount of distinct kommuner served by this distrikt's active children (kommune_nr IS NOT NULL). The operational footprint; may be smaller than child_count when multiple children share a kommune.

Sample query

Live PostgREST query that returns the first 5 rows. URL adapts to the current host — local dev shows api-atlas.localhost; the deployed site shows api-atlas.sovereignsky.no.

https://api-atlas.sovereignsky.no/distrikt_summary?limit=5

About this view

One row per regional chapter (Red Cross "distrikt" level, and the equivalent regional tier for any other NGO with a hierarchy). Each row carries denormalised counts of how many child chapters the distrikt has and how many distinct kommuner those children cover. Backs atlas-frontend /ngo/[slug]/distrikter and the individual /distrikt/[id] pages; equivalent to the listDistrikter() inline query. Counts come from dim_chapter joined back to itself by parent_chapter_id, filtered to active children. PostgREST consumers filter via ?ngo_orgnr=eq.X (or ?chapter_id=eq.Y for the single-distrikt case).