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
2 changes: 2 additions & 0 deletions docs/examples.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,5 @@ Examples
:maxdepth: 1

examples/plotting
examples/skycoord
examples/specialized_quantities
6 changes: 5 additions & 1 deletion docs/examples/skycoord.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,11 @@
"source": [
"# serializable layout\n",
"dds = skycoord_to_dataset(\n",
" sky_direction, coords={\"field_label\": (\"field\", [0, 1, 2, 3])}\n",
" sky_direction,\n",
" coords={\n",
" \"timestamp\": (\"time\", Time([1.7e9], format=\"unix\")),\n",
" \"field_label\": (\"field\", [0, 1, 2, 3]),\n",
" },\n",
").astropy.dequantify()\n",
"dds"
]
Expand Down
3 changes: 2 additions & 1 deletion docs/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
astropy>=5.0.0
astropy==7.1.0
xarray>=2022.06.0
pooch
netCDF4
msgpack-numpy>=0.4.8
cf-xarray>=0.6
sphinx>=8.0.0,<9.0.0
sphinx_rtd_theme>=1.0
Expand Down
Loading