|
30 | 30 | "items = await stacrs.search(\n", |
31 | 31 | " \"https://stac.eoapi.dev\",\n", |
32 | 32 | " collections=\"openaerialmap\",\n", |
33 | | - " bbox=[-125, 25, -67, 49], # CONUS\n", |
| 33 | + " bbox=[-125, 25, -67, 49], # CONUS\n", |
34 | 34 | " sortby=\"-properties.datetime\",\n", |
35 | 35 | " max_items=1000,\n", |
36 | 36 | ")\n", |
37 | | - "await stacrs.write(\"items.parquet\", items) # compressed stac-geoparquet" |
| 37 | + "await stacrs.write(\"items.parquet\", items) # compressed stac-geoparquet" |
38 | 38 | ] |
39 | 39 | }, |
40 | 40 | { |
|
490 | 490 | "from stacrs import DuckdbClient\n", |
491 | 491 | "\n", |
492 | 492 | "client = DuckdbClient()\n", |
493 | | - "items = client.search_to_arrow(\"items.parquet\", datetime=\"2020-01-01T00:00:00Z/..\")# you can search a parquet file with DuckDB\n", |
| 493 | + "items = client.search_to_arrow(\n", |
| 494 | + " \"items.parquet\", datetime=\"2020-01-01T00:00:00Z/..\"\n", |
| 495 | + ") # you can search a parquet file with DuckDB\n", |
494 | 496 | "data_frame = GeoDataFrame.from_arrow(items)\n", |
495 | 497 | "data_frame" |
496 | 498 | ] |
@@ -546720,7 +546722,7 @@ |
546720 | 546722 | " \"items.parquet\",\n", |
546721 | 546723 | " \"https://stac.eoapi.dev\",\n", |
546722 | 546724 | " collections=\"openaerialmap\",\n", |
546723 | | - " bbox=[-125, 25, -67, 49], # CONUS\n", |
| 546725 | + " bbox=[-125, 25, -67, 49], # CONUS\n", |
546724 | 546726 | " sortby=\"-properties.datetime\",\n", |
546725 | 546727 | " max_items=1000,\n", |
546726 | 546728 | ")" |
|
0 commit comments