significant improvement to the readme and verification that all the examples work

This commit is contained in:
Ari Brown 2024-01-31 16:18:32 -05:00
parent e3c11fb1aa
commit 5dccce53e9
9 changed files with 275 additions and 109 deletions

View file

@ -8,8 +8,11 @@ red = m.redshift("s3://haystac-te-athena/",
db = "train",
workgroup = "phase1-trial2")
query = red.query("select agent, st_astext(geom), datetime from public.baseline where agent = 4 limit 200")
query = red.query("""select agent, st_astext(geom), timestamp from
public.baseline_v1 where agent = 44 limit 200""")
data = query.results()
pp.pprint(data.head(10))
print(query.runtime)
print(query.cost)