Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
122 changes: 78 additions & 44 deletions docs/source/user_guide/classification.ipynb

Large diffs are not rendered by default.

101 changes: 64 additions & 37 deletions docs/source/user_guide/focal.ipynb

Large diffs are not rendered by default.

141 changes: 109 additions & 32 deletions docs/source/user_guide/local.ipynb

Large diffs are not rendered by default.

719 changes: 458 additions & 261 deletions docs/source/user_guide/multispectral.ipynb

Large diffs are not rendered by default.

72 changes: 50 additions & 22 deletions docs/source/user_guide/pathfinding.ipynb

Large diffs are not rendered by default.

167 changes: 115 additions & 52 deletions docs/source/user_guide/proximity.ipynb

Large diffs are not rendered by default.

296 changes: 186 additions & 110 deletions docs/source/user_guide/surface.ipynb

Large diffs are not rendered by default.

110 changes: 72 additions & 38 deletions docs/source/user_guide/zonal.ipynb

Large diffs are not rendered by default.

72 changes: 63 additions & 9 deletions examples/Pathfinding_Austin_Road_Network.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,14 @@
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"metadata": {
"execution": {
"iopub.execute_input": "2026-01-23T19:13:31.469085Z",
"iopub.status.busy": "2026-01-23T19:13:31.468977Z",
"iopub.status.idle": "2026-01-23T19:13:32.421379Z",
"shell.execute_reply": "2026-01-23T19:13:32.420650Z"
}
},
"outputs": [],
"source": [
"import datashader as ds\n",
Expand Down Expand Up @@ -62,12 +69,17 @@
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"metadata": {
"execution": {
"iopub.execute_input": "2026-01-23T19:13:32.423409Z",
"iopub.status.busy": "2026-01-23T19:13:32.422938Z",
"iopub.status.idle": "2026-01-23T19:13:34.034515Z",
"shell.execute_reply": "2026-01-23T19:13:34.033712Z"
}
},
"outputs": [],
"source": [
"streets = geopandas.read_file(\n",
" \"data/geo_export_9c395dda-0b29-41ec-89b4-a51a898f7104.shp\"\n",
")\n",
"streets = geopandas.read_file(\"../xrspatial-examples/data/geo_export_9c395dda-0b29-41ec-89b4-a51a898f7104.shp\")\n",
"streets = streets.to_crs(\"EPSG:4326\")\n",
"streets = streets.explode(\"geometry\").reset_index(drop=True)\n",
"streets_spd = spatialpandas.GeoDataFrame(streets, geometry=\"geometry\")"
Expand All @@ -92,7 +104,14 @@
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"metadata": {
"execution": {
"iopub.execute_input": "2026-01-23T19:13:34.036027Z",
"iopub.status.busy": "2026-01-23T19:13:34.035787Z",
"iopub.status.idle": "2026-01-23T19:13:34.054300Z",
"shell.execute_reply": "2026-01-23T19:13:34.053635Z"
}
},
"outputs": [],
"source": [
"xmin, ymin, xmax, ymax = (\n",
Expand All @@ -109,7 +128,14 @@
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"metadata": {
"execution": {
"iopub.execute_input": "2026-01-23T19:13:34.072052Z",
"iopub.status.busy": "2026-01-23T19:13:34.071884Z",
"iopub.status.idle": "2026-01-23T19:13:36.136717Z",
"shell.execute_reply": "2026-01-23T19:13:36.136054Z"
}
},
"outputs": [],
"source": [
"H, W = 600, 800\n",
Expand Down Expand Up @@ -153,7 +179,14 @@
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"metadata": {
"execution": {
"iopub.execute_input": "2026-01-23T19:13:36.137998Z",
"iopub.status.busy": "2026-01-23T19:13:36.137876Z",
"iopub.status.idle": "2026-01-23T19:13:37.131601Z",
"shell.execute_reply": "2026-01-23T19:13:37.131064Z"
}
},
"outputs": [],
"source": [
"# find the path from start to goal,\n",
Expand All @@ -166,11 +199,32 @@
"path_shaded = dynspread(shade(path_agg, cmap=[\"green\"]), threshold=1, max_px=1)\n",
"set_background(stack(street_shaded, path_shaded, start_shaded, goal_shaded), \"black\")"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": []
}
],
"metadata": {
"kernelspec": {
"display_name": "Python 3 (ipykernel)",
"language": "python",
"name": "python3"
},
"language_info": {
"name": "python"
"codemirror_mode": {
"name": "ipython",
"version": 3
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.14.2"
}
},
"nbformat": 4,
Expand Down
225 changes: 0 additions & 225 deletions examples/cloudless-mosaic-sentinel2.ipynb

This file was deleted.

Loading