Skip to content

Commit 3c3e07e

Browse files
authored
Merge branch 'main' into favicon-5
2 parents cb93c31 + 2f3452b commit 3c3e07e

27 files changed

+12069
-955
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,5 @@ _site
22
.sass-cache
33
.jekyll-metadata
44
.DS_Store
5+
.swp
56
*~

.readthedocs.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# .readthedocs.yml
2+
# Read the Docs configuration file
3+
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
4+
5+
# Required
6+
version: 2
7+
8+
# Set the version of Python and other tools you might need
9+
build:
10+
os: ubuntu-22.04
11+
commands:
12+
- gpg --keyserver hkp://keyserver.ubuntu.com --recv-keys 409b6b1796c275462a1703113804bb82d39dc0e3 7d2baf1cf37b13e2069d6956105bd0e739499bdb && curl -sSL https://get.rvm.io | bash -s stable
13+
- ~/.rvm/bin/rvm autolibs disable && ~/.rvm/bin/rvm install ruby 3.1.2
14+
- PATH="$HOME/.rvm/rubies/ruby-3.1.2/bin:$PATH" gem install bundler
15+
- PATH="$HOME/.rvm/rubies/ruby-3.1.2/bin:$PATH" bundle install
16+
- PATH="$HOME/.rvm/rubies/ruby-3.1.2/bin:$PATH" bundle exec jekyll build --destination _readthedocs/html --baseurl $(echo -n "$READTHEDOCS_CANONICAL_URL" | cut -d '/' -f 4-)

Gemfile.lock

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
GEM
22
remote: https://rubygems.org/
33
specs:
4-
activesupport (6.0.4.4)
4+
activesupport (6.0.6.1)
55
concurrent-ruby (~> 1.0, >= 1.0.2)
66
i18n (>= 0.7, < 2)
77
minitest (~> 5.1)
@@ -16,7 +16,7 @@ GEM
1616
colorator (1.1.0)
1717
commonmarker (0.17.13)
1818
ruby-enum (~> 0.5)
19-
concurrent-ruby (1.1.9)
19+
concurrent-ruby (1.2.0)
2020
dnsruby (1.61.9)
2121
simpleidn (~> 0.1)
2222
em-websocket (0.5.3)
@@ -226,14 +226,14 @@ GEM
226226
rb-fsevent (~> 0.10, >= 0.10.3)
227227
rb-inotify (~> 0.9, >= 0.9.10)
228228
mercenary (0.3.6)
229-
mini_portile2 (2.8.0)
229+
mini_portile2 (2.8.1)
230230
minima (2.5.1)
231231
jekyll (>= 3.5, < 5.0)
232232
jekyll-feed (~> 0.9)
233233
jekyll-seo-tag (~> 2.1)
234-
minitest (5.15.0)
234+
minitest (5.17.0)
235235
multipart-post (2.1.1)
236-
nokogiri (1.13.4)
236+
nokogiri (1.14.3)
237237
mini_portile2 (~> 2.8.0)
238238
racc (~> 1.4)
239239
octokit (4.22.0)
@@ -242,7 +242,7 @@ GEM
242242
pathutil (0.16.2)
243243
forwardable-extended (~> 2.6)
244244
public_suffix (4.0.6)
245-
racc (1.6.0)
245+
racc (1.6.2)
246246
rb-fsevent (0.11.1)
247247
rb-inotify (0.10.1)
248248
ffi (~> 1.0)
@@ -268,14 +268,14 @@ GEM
268268
thread_safe (0.3.6)
269269
typhoeus (1.4.0)
270270
ethon (>= 0.9.0)
271-
tzinfo (1.2.9)
271+
tzinfo (1.2.11)
272272
thread_safe (~> 0.1)
273273
unf (0.1.4)
274274
unf_ext
275275
unf_ext (0.0.8)
276276
unicode-display_width (1.8.0)
277277
webrick (1.7.0)
278-
zeitwerk (2.5.4)
278+
zeitwerk (2.6.6)
279279

280280
PLATFORMS
281281
ruby

_config.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,19 @@ baseurl: "" # the subpath of your site, e.g. /blog
2828

2929
url: "" # the base hostname & protocol for your site, e.g. http://example.com
3030

31+
analytics:
32+
provider: "google"
33+
google:
34+
tracking_id: "G-BCRR9QE7Z0"
35+
anonymize_ip: true
36+
3137
github_username: zarr-developers
3238
gitter_url: https://gitter.im/zarr-developers/community
3339

3440
# Build settings
3541
markdown: kramdown
3642
remote_theme: "mmistakes/minimal-mistakes@4.24.0"
43+
minimal_mistakes_skin: "dirt"
3744

3845
plugins:
3946
- jekyll-feed

_data/navigation.yml

Lines changed: 16 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -17,17 +17,23 @@ sidebar:
1717
url: '#features'
1818
- title: "Sponsorship"
1919
url: "#sponsorship"
20-
- title: "Slides"
21-
url: "/slides"
2220
- title: "Videos"
2321
url: "#videos"
24-
- title: "Community Meetings"
25-
url: '#community-meetings'
26-
- title: "Blog"
27-
url: '#blog'
28-
- title: Other sites
22+
- title: Subpages
2923
children:
30-
- title: "Specification"
31-
url: https://zarr-specs.readthedocs.io/en/core-protocol-v3.0-dev/
24+
- title: "Adopters"
25+
url: "/adopters"
26+
- title: "Blog"
27+
url: '/blog'
28+
- title: "Community"
29+
url: '/community'
3230
- title: "Implementations"
33-
url: https://github.com/zarr-developers/zarr_implementations
31+
url: '/implementations'
32+
- title: "Office Hours"
33+
url: "/office-hours"
34+
- title: "Slides"
35+
url: "/slides"
36+
- title: "Specification"
37+
url: https://zarr-specs.readthedocs.io/
38+
- title: "ZEPs"
39+
url: '/zeps'

adopters/adopters.md

Lines changed: 93 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,93 @@
1+
---
2+
layout: single
3+
author_profile: false
4+
title: Zarr Adopters
5+
permalink: /adopters/
6+
sidebar:
7+
title: "Content"
8+
nav: sidebar
9+
---
10+
11+
<p style="font-family:Trebuchet MS"><font size="4">💡 If you're using Zarr in any way and would like to be added on this page, please drop your logo and blurb <a href="https://github.com/zarr-developers/community/issues/60">here</a>.</font></p>
12+
13+
<p style="font-family:Trebuchet MS"><font size="4"> Thanks to the amazing community, Zarr is widely adopted and used by these groups. Here are the logos (in alphabetical order):</font></p>
14+
15+
<a href="https://carbonplan.org/"><img src="../adopters/logos/carbonplan.svg" alt="Carbonplan" width="600" height="300"></a>
16+
17+
<font size="3">→ Zarr is used by <a href="https://carbonplan.org/">CarbonPlan</a> as a storage format for analysis and visualization of climate data.</font>
18+
19+
---
20+
21+
<a href="https://www.columbia.edu/"><img src="../adopters/logos/columbia.png" alt="Columbia" width="700" height="300"></a>
22+
23+
---
24+
25+
<a href="https://lamont.columbia.edu/"><img src="../adopters/logos/ldeo.png" alt="LDEO" width="700" height="400"></a>
26+
27+
---
28+
29+
<a href="https://dandiarchive.org/"><img src="../adopters/logos/dandi.svg" alt="DANDI" width="500" height="300"></a>
30+
31+
<font size="3">→ Zarr is currently used by DANDI for lightsheet microscopy and some ex vivo MRI datasets, and is being considered as a backend for Neurodata Without Borders (NWB) neurophysiology datasets.</font>
32+
33+
---
34+
35+
<a href="https://www.janelia.org/"><img src="../adopters/logos/hhmi.png" alt="HHMI" width="600" height="300"></a>
36+
37+
<font size="3">→ Zarr is used extensively within Janelia Research Campus for efficiently storing and accessing large imaging datasets</font>
38+
39+
---
40+
41+
<a href="https://leap.columbia.edu/"><img src="../adopters/logos/leap.webp" alt="LEAP" width="550" height="300"></a>
42+
43+
<font size="3">→ Zarr is used by the <a href="https://leap.columbia.edu/">LEAP Project</a> (Learning the Earth with Artificial Intelligence and Physics) at Columbia University as the data format for the LEAP-Pangeo data library. LEAP researchers use Zarr to perform data analytics and machine learning for climate modeling.</font>
44+
45+
---
46+
47+
<a href="https://planetarycomputer.microsoft.com/catalog?filter=zarr"><img src="../adopters/logos/microsoft.png" alt="Microsoft" width="600" height="300"></a>
48+
49+
<font size="3">→ Zarr is used by the <a href="https://planetarycomputer.microsoft.com/">Microsoft Planetary Computer</a> as a cloud-native storage format for chunked, N-dimensional arrays of geospatial data.</font>
50+
51+
---
52+
53+
<a href="https://www.nasa.gov/"><img src="../adopters/logos/nasa.webp" alt="NASA" width="600" height="300"></a>
54+
55+
<font size="3">→ Zarr is used by NASA as an analysis-ready data store for chunked, N-dimensional arrays of geospatial data.</font>
56+
57+
---
58+
59+
<a href="https://ncar.ucar.edu/"><img src="../adopters/logos/ncar.svg" alt="NCAR" width="600" height="300"></a>
60+
61+
---
62+
63+
<a href="https://www.openmicroscopy.org/"><img src="../adopters/logos/ome_logo.svg" alt="OME" width="600" height="300"></a>
64+
65+
<font size="3">→ The <a href="https://www.openmicroscopy.org/">Open Microscopy Environment (OME)</a> community is developing a format, OME-Zarr, using Zarr to store large, n-dimensional biological images as part of the <a href="https://ngff.openmicroscopy.org/">Next-generation file format (NGFF)</a> effort."
66+
67+
OME logo used by <a href="https://www.openmicroscopy.org/artwork/">permission</a>, trademarked <a href="https://www.glencoesoftware.com/">Glencoe Software, Inc.</a></font>
68+
69+
---
70+
71+
<a href="https://pangeo.io/"><img src="../adopters/logos/pangeo.png" alt="Pangeo" width="550" height="300"></a>
72+
73+
<font size="3">→ Zarr is used extensively within the <a href="https://pangeo.io/">Pangeo Project</a> as a cloud native storage format for ocean, weather, climate, and geospatial data.</font>
74+
75+
---
76+
77+
<a href="https://scalableminds.com/"><img src="../adopters/logos/scalableminds.svg" alt="scalableminds" width="500" height="250"></a>
78+
79+
<font size="3">→ scalable minds uses Zarr to store and process peta-scale 3D images of brain tissue for Connectomics analyses.</font>
80+
81+
---
82+
83+
<a href="https://www.unidata.ucar.edu/"><img src="../adopters/logos/unidata.png" alt="Unidata" width="600" height="300"></a>
84+
85+
<font size="3">→ <a href="https://www.unidata.ucar.edu/">Unidata</a> is developing its netCDF libaries to support Zarr datasets amongst the atmospheric and geoscientific community.</font>
86+
87+
---
88+
89+
<a href="https://webknossos.org/"><img src="../adopters/logos/webknossos.svg" alt="Webknossos" width="600" height="300"></a>
90+
91+
<font size="3">→ WEBKNOSSOS is a web-based platform for visualizing, collaboratively annotating and sharing large 3D images. Zarr is used for accessing remotely stored images as well as securely streaming annotation data to client applications.</font>
92+
93+
---

adopters/logos/carbonplan.svg

Lines changed: 75 additions & 0 deletions
Loading

adopters/logos/columbia.png

21.7 KB
Loading

0 commit comments

Comments
 (0)