Skip to content

Commit 61530a5

Browse files
committed
version 0.11.2
1 parent 93bd519 commit 61530a5

File tree

3 files changed

+60
-2
lines changed

3 files changed

+60
-2
lines changed

docs/examples/Untitled.ipynb

Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
{
2+
"cells": [
3+
{
4+
"cell_type": "code",
5+
"execution_count": 1,
6+
"id": "655c7ed0-7a85-4b24-807f-0885a6b4eeeb",
7+
"metadata": {},
8+
"outputs": [],
9+
"source": [
10+
"import xarray\n",
11+
"import rioxarray"
12+
]
13+
},
14+
{
15+
"cell_type": "code",
16+
"execution_count": 2,
17+
"id": "8ac767b9-c65f-4481-a39c-8fc2ce327357",
18+
"metadata": {},
19+
"outputs": [
20+
{
21+
"data": {
22+
"text/plain": [
23+
"(-0.5, -0.5, 4.5, 4.5)"
24+
]
25+
},
26+
"execution_count": 2,
27+
"metadata": {},
28+
"output_type": "execute_result"
29+
}
30+
],
31+
"source": [
32+
"ds = xarray.Dataset(None, {\"x\": range(5), \"y\": range(5)})\n",
33+
"ds.rio.bounds()"
34+
]
35+
}
36+
],
37+
"metadata": {
38+
"kernelspec": {
39+
"display_name": "Python 3 (ipykernel)",
40+
"language": "python",
41+
"name": "python3"
42+
},
43+
"language_info": {
44+
"codemirror_mode": {
45+
"name": "ipython",
46+
"version": 3
47+
},
48+
"file_extension": ".py",
49+
"mimetype": "text/x-python",
50+
"name": "python",
51+
"nbconvert_exporter": "python",
52+
"pygments_lexer": "ipython3",
53+
"version": "3.10.5"
54+
}
55+
},
56+
"nbformat": 4,
57+
"nbformat_minor": 5
58+
}

docs/history.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
History
22
=======
33

4-
Latest
4+
0.11.2
55
------
66
- BUG: Fix reading file handle with dask (issue #550)
77
- BUG: Fix reading cint16 files with dask (issue #542)

rioxarray/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
"""rioxarray version"""
2-
__version__ = "0.11.2.dev0"
2+
__version__ = "0.11.2"

0 commit comments

Comments
 (0)