Skip to content

Instantly share code, notes, and snippets.

@afcotroneo
Created March 29, 2021 17:36
Show Gist options
  • Save afcotroneo/68244599f5f333f97731799c2346f569 to your computer and use it in GitHub Desktop.
Save afcotroneo/68244599f5f333f97731799c2346f569 to your computer and use it in GitHub Desktop.
create table la_street_buffer as (
select
osm_id,
st_buffer(geometry, 10) as omnisci_geo
from
la_streets
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment