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
3 changes: 2 additions & 1 deletion examples/plane_wave_compound.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,8 @@
print("📂 Downloading PICMUS challenge dataset...")

# Download the UFF data file (cached locally after first download)
url = "http://www.ustb.no/datasets/PICMUS_experiment_resolution_distortion.uff"
# Source: https://unioslo.github.io/USTB/datasets.html
url = "https://zenodo.org/records/20261898/files/PICMUS_experiment_resolution_distortion.uff"
uff_path = cached_download(
url,
expected_size=145_518_524,
Expand Down
3 changes: 2 additions & 1 deletion marimo/plane_wave_compound.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,8 @@ def _():
@app.cell
def _(cached_download, hashlib):
# Download PICMUS Challenge Dataset (runs once, cached)
url = "http://www.ustb.no/datasets/PICMUS_experiment_resolution_distortion.uff"
# Source: https://unioslo.github.io/USTB/datasets.html
url = "https://zenodo.org/records/20261898/files/PICMUS_experiment_resolution_distortion.uff"
uff_path = cached_download(
url,
expected_size=145_518_524,
Expand Down
3 changes: 2 additions & 1 deletion tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,8 @@ def xp(request):
@pytest.fixture(scope="session")
def picmus_phantom_resolution_uff() -> Uff:
"""Download the UFF data of the Picmus phantom resolution UFF file."""
url = "http://www.ustb.no/datasets/PICMUS_experiment_resolution_distortion.uff"
# Source: https://unioslo.github.io/USTB/datasets.html
url = "https://zenodo.org/records/20261898/files/PICMUS_experiment_resolution_distortion.uff"
uff_path = cached_download(
url,
expected_size=145_518_524,
Expand Down
Loading