Files
school_compare/pipeline/transform/models/marts/dim_location.sql
Tudor b7cc01f26f
Some checks failed
Build and Push Docker Images / Build Backend (FastAPI) (push) Successful in 33s
Build and Push Docker Images / Build Integrator (push) Has been cancelled
Build and Push Docker Images / Build Kestra Init (push) Has been cancelled
Build and Push Docker Images / Build Pipeline (Meltano + dbt + Airflow) (push) Has been cancelled
Build and Push Docker Images / Trigger Portainer Update (push) Has been cancelled
Build and Push Docker Images / Build Frontend (Next.js) (push) Has been cancelled
fix(dbt): schema-qualify PostGIS functions in dim_location
PostGIS extension lives in public schema; marts schema can't resolve
unqualified ST_MakePoint/ST_Transform calls.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-26 21:45:03 +00:00

25 lines
803 B
SQL

-- Mart: School location dimension — one row per URN, PostGIS-enabled
-- Geometry derived from GIAS easting/northing (British National Grid → WGS84).
-- For schools missing easting/northing, the geocode script backfills via Postcodes.io.
select
s.urn,
s.address_line1,
s.address_line2,
s.town,
s.county,
s.postcode,
s.local_authority_code,
s.local_authority_name,
s.parliamentary_constituency,
s.urban_rural,
s.easting,
s.northing,
case
when s.easting is not null and s.northing is not null
then public.ST_Transform(public.ST_SetSRID(public.ST_MakePoint(s.easting::double precision, s.northing::double precision), 27700), 4326)
else null
end as geom
from {{ ref('stg_gias_establishments') }} s
where s.status = 'Open'