Skip to content

Instantly share code, notes, and snippets.

@rorymalcolm
Created May 1, 2023 08:40
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/b40a668a892d658b8ae53647df2de924 to your computer and use it in GitHub Desktop.
Save rorymalcolm/b40a668a892d658b8ae53647df2de924 to your computer and use it in GitHub Desktop.
load spatial;
create or replace table location_history
as
select
*
, ST_Point(latitude, longitude) as geo_location
from 'output.csv';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment