Skip to content

Instantly share code, notes, and snippets.

@rorymalcolm
Created May 1, 2023 14:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rorymalcolm/ecd9003400d70c243304f523dfe901ab to your computer and use it in GitHub Desktop.
Save rorymalcolm/ecd9003400d70c243304f523dfe901ab to your computer and use it in GitHub Desktop.
create or replace table uk_geo
as
select
ST_FlipCoordinates(ST_GeomFromWKB(wkb_geometry)) as county_geo
, LAD13NM as county_name
from st_read('/lad.json');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment