rasteret.core.collection¶
The central Collection class: Arrow dataset wrapper with filtering, output adapters, and persistence.
Most-used read APIs on Collection:
get_numpy(...)-> NumPy arrays ([N, H, W]single-band,[N, C, H, W]multi-band)get_xarray(...)->xarray.Datasetget_gdf(...)->geopandas.GeoDataFramesample_points(...)->pyarrow.Table(point-value table)to_torchgeo_dataset(...)-> TorchGeo-compatible dataset
collection
¶
Classes¶
Collection
¶
Collection(
dataset: Dataset | None = None,
hf_streaming: HFStreamingSource | None = None,
collection_path: str | None = None,
record_index_path: str | None = None,
record_index_field_roles: dict[str, str] | None = None,
record_index_column_map: dict[str, str] | None = None,
record_index_href_column: str | None = None,
record_index_band_index_map: dict[str, int]
| None = None,
record_index_url_rewrite_patterns: dict[str, str]
| None = None,
record_index_filesystem: Any | None = None,
surface_fields: dict[str, list[str]] | None = None,
filter_capabilities: dict[str, list[str]] | None = None,
record_index_filter_expr: Expression | None = None,
wide_filter_expr: Expression | None = None,
name: str = "",
description: str = "",
data_source: str = "",
start_date: datetime | None = None,
end_date: datetime | None = None,
)
A collection of raster data with flexible initialization.
Collections can be created from: - Local partitioned datasets - Single Arrow tables
Collections maintain efficient partitioned storage when using files.
Examples:
From partitioned dataset¶
Filter and process¶
Initialize a Collection.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
dataset
|
Dataset
|
Backing Arrow dataset. |
None
|
hf_streaming
|
HFStreamingSource
|
Hugging Face streaming-backed metadata source. |
None
|
name
|
str
|
Human-readable collection name. |
''
|
description
|
str
|
Free-text description. |
''
|
data_source
|
str
|
Data source identifier (e.g. |
''
|
start_date
|
datetime
|
Collection temporal start. |
None
|
end_date
|
datetime
|
Collection temporal end. |
None
|
Source code in src/rasteret/core/collection.py
299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 | |
Attributes¶
bounds
property
¶
Spatial extent as (minx, miny, maxx, maxy) or None.
Functions¶
from_parquet
classmethod
¶
from_parquet(
path: str | Path,
name: str = "",
*,
data_source: str = "",
defer_dataset_open: bool = False,
record_index_path: str | None = None,
record_index_field_roles: dict[str, str] | None = None,
record_index_column_map: dict[str, str] | None = None,
record_index_href_column: str | None = None,
record_index_band_index_map: dict[str, int]
| None = None,
record_index_url_rewrite_patterns: dict[str, str]
| None = None,
record_index_filesystem: Any | None = None,
surface_fields: dict[str, list[str]] | None = None,
filter_capabilities: dict[str, list[str]] | None = None,
) -> Collection
Load a Collection from any Parquet file or directory.
Accepts local paths and cloud URIs (s3://, gs://).
Tries Hive-style partitioning first (year/month), falls back to
plain Parquet. Validates that the core contract columns are present.
See the Schema Contract <../explanation/schema-contract/>_ docs page.
Source code in src/rasteret/core/collection.py
904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 | |
subset
¶
subset(
*,
cloud_cover_lt: float | None = None,
date_range: tuple[str, str] | None = None,
bbox: tuple[float, float, float, float] | None = None,
geometries: Any = None,
split: str | Sequence[str] | None = None,
split_column: str = "split",
) -> Collection
Return a filtered view of this Collection.
All provided criteria are combined with AND.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
cloud_cover_lt
|
float
|
Keep records with |
None
|
date_range
|
tuple of str
|
|
None
|
bbox
|
tuple of float
|
|
None
|
geometries
|
bbox tuple, pa.Array, Shapely, WKB bytes, or GeoJSON dict
|
Spatial filter; records whose bbox overlaps any geometry are kept.
Accepts |
None
|
split
|
str or sequence of str
|
Keep only rows matching the given split value(s). |
None
|
split_column
|
str
|
Column name holding split labels. Defaults to |
'split'
|
Returns:
| Type | Description |
|---|---|
Collection
|
A new Collection with the filtered dataset view. |
Source code in src/rasteret/core/collection.py
1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 | |
select_split
¶
select_split(
split: str | Sequence[str],
*,
split_column: str = "split",
) -> Collection
Return a split-filtered view of this Collection.
This is a convenience wrapper around subset(split=...) to keep the
intent obvious in training code.
Source code in src/rasteret/core/collection.py
where
¶
where(expr: Expression) -> Collection
Return a filtered view using a raw Arrow dataset expression.
Source code in src/rasteret/core/collection.py
head
¶
Return the first n metadata rows as a PyArrow table.
Source code in src/rasteret/core/collection.py
list_collections
classmethod
¶
List cached collections with summary metadata.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
workspace_dir
|
Path
|
Directory to scan for cached collections. Defaults to
|
None
|
Returns:
| Type | Description |
|---|---|
list of dict
|
Each dict contains |
Source code in src/rasteret/core/collection.py
1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 | |
export
¶
Export the collection as a partitioned Parquet dataset.
Use this to produce a portable copy of the collection that can
be shared with teammates via :func:rasteret.load.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
path
|
str or Path
|
Output directory. Accepts local paths and cloud URIs
( |
required |
partition_by
|
sequence of str
|
Columns to partition by. Defaults to |
('year', 'month')
|
Source code in src/rasteret/core/collection.py
1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 | |
iterate_rasters
async
¶
iterate_rasters(
data_source: str | None = None,
bands: list[str] | None = None,
) -> AsyncIterator[RasterAccessor]
Iterate through raster records in this Collection.
Each Parquet row becomes a :class:RasterAccessor that provides
async band-loading methods.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
data_source
|
str
|
Data source identifier for band mapping. Defaults to
|
None
|
Yields:
| Type | Description |
|---|---|
RasterAccessor
|
|
Source code in src/rasteret/core/collection.py
1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 | |
get_first_raster
async
¶
get_first_raster() -> RasterAccessor
Return the first raster record in the collection.
Returns:
| Type | Description |
|---|---|
RasterAccessor
|
|
Source code in src/rasteret/core/collection.py
to_table
¶
Materialize the collection metadata as a :class:pyarrow.Table.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
columns
|
list of str
|
Selected columns to include. |
None
|
Returns:
| Type | Description |
|---|---|
Table
|
|
Source code in src/rasteret/core/collection.py
to_batches
¶
Iterate the collection metadata as a stream of Arrow batches.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
columns
|
list of str
|
Selected columns to include. |
None
|
Returns:
| Type | Description |
|---|---|
Iterator[RecordBatch]
|
|
Source code in src/rasteret/core/collection.py
to_reader
¶
to_reader(
columns: list[str] | None = None,
requested_schema: Schema | None = None,
) -> RecordBatchReader
Return a :class:pyarrow.RecordBatchReader for the collection metadata.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
columns
|
list of str
|
Selected columns to include. |
None
|
requested_schema
|
Schema
|
If provided, attempt to cast the stream to this schema. |
None
|
Returns:
| Type | Description |
|---|---|
RecordBatchReader
|
|
Source code in src/rasteret/core/collection.py
from_arrow
classmethod
¶
from_arrow(data: Any, **kwargs: Any) -> Collection
Create a Collection from an Arrow-compatible object.
This is the official constructor for wrapping Arrow-native objects (Tables, Datasets, Readers) as a Rasteret Collection.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
data
|
Arrow-compatible object
|
Object implementing the Arrow PyCapsule protocol or a native PyArrow type. |
required |
**kwargs
|
Any
|
Forwarded to :func: |
{}
|
Returns:
| Type | Description |
|---|---|
Collection
|
|
Source code in src/rasteret/core/collection.py
describe
¶
Summary of this collection.
Returns a :class:~rasteret.core.display.DescribeResult that renders
as a clean table in terminals and as styled HTML in notebooks
(Jupyter, marimo, Colab).
The underlying data is accessible via .data or ["key"].
Examples:
>>> collection.describe() # pretty table in REPL
>>> collection.describe()["bands"] # programmatic access
>>> collection.describe().data # full dict
Source code in src/rasteret/core/collection.py
compare_to_catalog
¶
Compare this collection against its catalog source.
Shows collection properties side-by-side with the catalog entry (bands coverage, date range vs source range, spatial coverage, auth requirements).
Raises :class:ValueError if the collection has no catalog match.
Returns a :class:~rasteret.core.display.DescribeResult that renders
as a table in terminals and styled HTML in notebooks.
Examples:
>>> collection.compare_to_catalog() # pretty comparison table
>>> collection.compare_to_catalog().data # full dict with catalog info
Source code in src/rasteret/core/collection.py
create_name
classmethod
¶
Create a standardized collection name.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
custom_name
|
str
|
User-chosen name component. Underscores are normalised to dashes. |
required |
date_range
|
tuple of str
|
|
required |
data_source
|
str
|
Data source identifier (e.g. |
required |
Returns:
| Type | Description |
|---|---|
str
|
Name in the format |
Source code in src/rasteret/core/collection.py
parse_name
classmethod
¶
Parse a standardized collection name into its components.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
name
|
str
|
Collection name created by :meth: |
required |
Returns:
| Type | Description |
|---|---|
dict
|
Keys: |
Source code in src/rasteret/core/collection.py
to_torchgeo_dataset
¶
to_torchgeo_dataset(
*,
bands: list[str],
chip_size: int | None = None,
is_image: bool = True,
allow_resample: bool = False,
cloud_cover_lt: float | None = None,
date_range: tuple[str, str] | None = None,
bbox: tuple[float, float, float, float] | None = None,
split: str | Sequence[str] | None = None,
split_column: str = "split",
label_field: str | None = None,
geometries: Any = None,
geometries_crs: int = 4326,
transforms: Any = None,
max_concurrent: int = 50,
cloud_config: Any = None,
backend: Any = None,
time_series: bool = False,
target_crs: int | None = None,
) -> RasteretGeoDataset
Create a TorchGeo GeoDataset backed by this Collection.
This integration is optional and requires torchgeo and its
dependencies.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
bands
|
list of str
|
Band codes to load (e.g. |
required |
chip_size
|
int
|
Spatial extent of each chip in pixels. |
None
|
is_image
|
bool
|
If |
True
|
allow_resample
|
bool
|
If |
False
|
cloud_cover_lt
|
float
|
Keep only records with |
None
|
date_range
|
tuple of str
|
Keep only records whose |
None
|
bbox
|
tuple of float
|
Spatial bbox filter applied before constructing the TorchGeo dataset. |
None
|
split
|
str or sequence of str
|
Filter to the given split(s) before creating the dataset. |
None
|
split_column
|
str
|
Column holding split labels. Defaults to |
'split'
|
label_field
|
str
|
Column name to include as |
None
|
geometries
|
bbox tuple, pa.Array, Shapely, WKB bytes, or GeoJSON dict
|
Spatial extent for the dataset. Accepts |
None
|
geometries_crs
|
int
|
EPSG code for geometries. Defaults to |
4326
|
transforms
|
callable
|
TorchGeo-compatible transforms applied to each sample. |
None
|
max_concurrent
|
int
|
Maximum concurrent HTTP requests. |
50
|
cloud_config
|
CloudConfig
|
Cloud configuration for URL rewriting. |
None
|
backend
|
StorageBackend
|
Pluggable I/O backend (e.g. |
None
|
time_series
|
bool
|
When |
False
|
target_crs
|
int
|
Reproject all records to this EPSG code at read time. |
None
|
Returns:
| Type | Description |
|---|---|
RasteretGeoDataset
|
A standard TorchGeo |
Source code in src/rasteret/core/collection.py
2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 | |
get_xarray
¶
get_xarray(
geometries: Any,
bands: list[str],
*,
max_concurrent: int = 50,
progress: bool | None = None,
cloud_config: Any = None,
data_source: str | None = None,
backend: Any = None,
target_crs: int | None = None,
geometry_crs: GeometryCrsInput = AUTO_CRS,
geometry_column: str | None = None,
all_touched: bool = False,
xr_combine: str = "combine_first",
**filters: Any,
) -> Dataset
Load selected bands into an xarray Dataset.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
geometries
|
bbox tuple, pa.Array, Shapely, WKB bytes, GeoJSON dict, or table
|
Area(s) of interest to load. Accepts |
required |
bands
|
list of str
|
Band codes to load. |
required |
max_concurrent
|
int
|
Maximum concurrent HTTP requests. |
50
|
cloud_config
|
CloudConfig
|
Cloud configuration for URL rewriting. |
None
|
data_source
|
str
|
Override the inferred data source. |
None
|
backend
|
StorageBackend
|
Pluggable I/O backend. |
None
|
target_crs
|
int
|
Reproject all records to this CRS before merging. |
None
|
geometry_column
|
str
|
Geometry column to read when |
None
|
all_touched
|
bool
|
Passed through to polygon masking behavior. |
False
|
xr_combine
|
str
|
Strategy for merging per-record xarray Datasets.
|
'combine_first'
|
progress
|
bool
|
If |
None
|
filters
|
kwargs
|
Additional keyword arguments passed to :meth: |
{}
|
Returns:
| Type | Description |
|---|---|
Dataset
|
Band arrays in native COG dtype (e.g. |
Source code in src/rasteret/core/collection.py
2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 | |
get_gdf
¶
get_gdf(
geometries: Any,
bands: list[str],
*,
max_concurrent: int = 50,
progress: bool | None = None,
cloud_config: Any = None,
data_source: str | None = None,
backend: Any = None,
target_crs: int | None = None,
geometry_crs: GeometryCrsInput = AUTO_CRS,
geometry_column: str | None = None,
all_touched: bool = False,
**filters: Any,
) -> GeoDataFrame
Load selected bands into a GeoDataFrame.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
geometries
|
bbox tuple, pa.Array, Shapely, WKB bytes, GeoJSON dict, or table
|
Area(s) of interest to load. Accepts |
required |
bands
|
list of str
|
Band codes to load. |
required |
max_concurrent
|
int
|
Maximum concurrent HTTP requests. |
50
|
cloud_config
|
CloudConfig
|
Cloud configuration for URL rewriting. |
None
|
data_source
|
str
|
Override the inferred data source. |
None
|
backend
|
StorageBackend
|
Pluggable I/O backend. |
None
|
target_crs
|
int
|
Reproject all records to this CRS before building the GeoDataFrame. |
None
|
geometry_column
|
str
|
Geometry column to read when |
None
|
all_touched
|
bool
|
Passed through to polygon masking behavior. |
False
|
progress
|
bool
|
If |
None
|
filters
|
kwargs
|
Additional keyword arguments passed to :meth: |
{}
|
Returns:
| Type | Description |
|---|---|
GeoDataFrame
|
Band arrays in native COG dtype. Each row is a geometry-record pair with pixel data and the read-window transform as columns. |
Source code in src/rasteret/core/collection.py
2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 | |
get_numpy
¶
get_numpy(
geometries: Any,
bands: list[str],
*,
max_concurrent: int = 50,
progress: bool | None = None,
cloud_config: Any = None,
data_source: str | None = None,
backend: Any = None,
target_crs: int | None = None,
geometry_crs: GeometryCrsInput = AUTO_CRS,
geometry_column: str | None = None,
all_touched: bool = False,
**filters: Any,
)
Load selected bands into NumPy arrays.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
geometries
|
bbox tuple, pa.Array, Shapely, WKB bytes, GeoJSON dict, or table
|
Area(s) of interest to load. |
required |
bands
|
list of str
|
Band codes to load. |
required |
max_concurrent
|
int
|
Maximum concurrent HTTP requests. |
50
|
cloud_config
|
CloudConfig
|
Cloud configuration for URL rewriting. |
None
|
data_source
|
str
|
Override the inferred data source. |
None
|
backend
|
StorageBackend
|
Pluggable I/O backend. |
None
|
target_crs
|
int
|
Reproject all records to this CRS before assembly. |
None
|
geometry_column
|
str
|
Geometry column to read when |
None
|
all_touched
|
bool
|
Passed through to polygon masking behavior. |
False
|
progress
|
bool
|
If |
None
|
filters
|
kwargs
|
Additional keyword arguments passed to :meth: |
{}
|
Returns:
| Type | Description |
|---|---|
ndarray
|
Single-band queries return |
Source code in src/rasteret/core/collection.py
2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 | |
sample_points
¶
sample_points(
points: Any,
bands: list[str],
*,
geometry_column: str | None = None,
x_column: str | None = None,
y_column: str | None = None,
max_concurrent: int = 50,
progress: bool | None = None,
cloud_config: Any = None,
data_source: str | None = None,
backend: Any = None,
geometry_crs: GeometryCrsInput = AUTO_CRS,
match: str = "all",
max_distance_pixels: int = 0,
return_neighbourhood: Literal[
"off", "always", "if_center_nodata"
] = "off",
**filters: Any,
) -> Table
Sample point values into an Arrow table.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
points
|
Any
|
Point input as Arrow/GeoArrow/WKB/Shapely/GeoJSON, or tabular input (Arrow table, pandas/GeoPandas, Polars, DuckDB/SedonaDB relation). |
required |
bands
|
list of str
|
Band codes to sample. |
required |
geometry_column
|
str
|
Geometry column name when points is tabular. Column may contain WKB, GeoArrow points, or Shapely Point objects. |
None
|
x_column
|
str
|
Coordinate column names when points is tabular. |
None
|
y_column
|
str
|
Coordinate column names when points is tabular. |
None
|
max_concurrent
|
int
|
Maximum concurrent HTTP requests. |
50
|
progress
|
bool
|
If |
None
|
cloud_config
|
CloudConfig
|
Cloud configuration for URL rewriting. |
None
|
data_source
|
str
|
Override the inferred data source. |
None
|
backend
|
StorageBackend
|
Pluggable I/O backend. |
None
|
geometry_crs
|
int
|
CRS EPSG code of input points. Defaults to EPSG:4326. |
AUTO_CRS
|
match
|
('all', 'latest')
|
|
"all"
|
max_distance_pixels
|
int
|
Maximum pixel distance for nodata fallback search, measured in Chebyshev distance (square rings). Rasteret samples the base pixel containing the point first; when that pixel is nodata and this is
|
0
|
return_neighbourhood
|
('off', 'always', 'if_center_nodata')
|
Controls whether a neighbourhood window is returned:
|
"off"
|
filters
|
kwargs
|
Additional keyword arguments passed to :meth: |
{}
|
Returns:
| Type | Description |
|---|---|
Table
|
Table with sampled values and metadata columns. |
Source code in src/rasteret/core/collection.py
2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 | |