Skip to content

Commit 82d5210

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 888fb96 commit 82d5210

File tree

1 file changed

+21
-10
lines changed
  • src/posts/scientific-data-viewer

1 file changed

+21
-10
lines changed

src/posts/scientific-data-viewer/index.md

Lines changed: 21 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ authors:
77
summary: 'Scientific Data Viewer is a VS Code extension that lets you explore NetCDF, Zarr, HDF5, GRIB, GeoTIFF, and other scientific data files directly in your editor.'
88
---
99

10-
1110
## TL;DR
1211

1312
Scientific Data Viewer is a VS Code extension that lets you explore NetCDF, Zarr, HDF5, GRIB, GeoTIFF, and other scientific data files directly in your editor. Built on Xarray, it displays the familiar HTML and text representations you know from Jupyter notebooks, making it easy to inspect file structure, dimensions, coordinates, and attributes without leaving your development environment.
@@ -40,37 +39,49 @@ The extension uses Xarray under the hood to open files and extract metadata. It
4039
<tbody>
4140
<tr>
4241
<td>NetCDF</td>
43-
<td><code>.nc</code>, <code>.netcdf</code>, <code>.nc4</code></td>
42+
<td>
43+
<code>.nc</code>, <code>.netcdf</code>, <code>.nc4</code>
44+
</td>
4445
</tr>
4546
<tr>
4647
<td>CDF (NASA)</td>
47-
<td><code>.cdf</code></td>
48+
<td>
49+
<code>.cdf</code>
50+
</td>
4851
</tr>
4952
<tr>
5053
<td>Zarr</td>
51-
<td><code>.zarr</code></td>
54+
<td>
55+
<code>.zarr</code>
56+
</td>
5257
</tr>
5358
<tr>
5459
<td>HDF5</td>
55-
<td><code>.h5</code>, <code>.hdf5</code></td>
60+
<td>
61+
<code>.h5</code>, <code>.hdf5</code>
62+
</td>
5663
</tr>
5764
<tr>
5865
<td>GRIB</td>
59-
<td><code>.grib</code>, <code>.grib2</code>, <code>.grb</code></td>
66+
<td>
67+
<code>.grib</code>, <code>.grib2</code>, <code>.grb</code>
68+
</td>
6069
</tr>
6170
<tr>
6271
<td>GeoTIFF</td>
63-
<td><code>.tif</code>, <code>.tiff</code>, <code>.geotiff</code></td>
72+
<td>
73+
<code>.tif</code>, <code>.tiff</code>, <code>.geotiff</code>
74+
</td>
6475
</tr>
6576
<tr>
6677
<td>JPEG-2000</td>
67-
<td><code>.jp2</code>, <code>.jpeg2000</code></td>
78+
<td>
79+
<code>.jp2</code>, <code>.jpeg2000</code>
80+
</td>
6881
</tr>
6982
</tbody>
7083
</table>
7184

72-
73-
7485
## What You Can Do
7586

7687
### Browse Structure Without Code

0 commit comments

Comments
 (0)