From 172399fde88e1a6c8334caee91fc3d8f4b3922a3 Mon Sep 17 00:00:00 2001 From: Adrienn Szabo Date: Thu, 19 Sep 2024 09:52:42 +0200 Subject: [PATCH] Fix example docs after moving sample files to different folder --- docs/example.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/example.md b/docs/example.md index 591b0f1b..934cb62a 100644 --- a/docs/example.md +++ b/docs/example.md @@ -9,11 +9,11 @@ LOAD spatial; LOAD parquet; CREATE TABLE rides AS SELECT * -FROM './spatial/test/data/nyc_taxi/yellow_tripdata_2010-01-limit1mil.parquet'; +FROM './test/data/nyc_taxi/yellow_tripdata_2010-01-limit1mil.parquet'; -- Load the NYC taxi zone data from a shapefile using the gdal-based st_read function -CREATE TABLE zones AS SELECT zone, LocationId, borough, ST_GeomFromWKB(wkb_geometry) AS geom -FROM st_read('./spatial/test/data/nyc_taxi/taxi_zones/taxi_zones.shx'); +CREATE TABLE zones AS SELECT zone, LocationId, borough, geom +FROM st_read('./test/data/nyc_taxi/taxi_zones/taxi_zones.shp'); ```