Date: September 2023
This landing page details how to download the imaging data associated with the OzBarley Elite Panel phenotyping experiment performed at The Plant Accelerator.
A list of all files is avaliable at at the following link: https://projects.pawsey.org.au/appf-tpa-ozbarley/elite_panel.ndjson
The file is Newline-Delimited JSON and contains the metadata for each zip file. Each zip will have a name like this: [camera_label]_[id_tag].zip
Where:
Each zip contains a time series of PNG images taken throughout the experiment.
The following python snippet can be used to download all of the snapshot zip files, or you can browse the files on this page.
import requests
from tqdm import tqdm
from pathlib import Path
import urllib.request
import pandas as pd
= 'appf-tpa-ozbarley'
bucket_name = 'elite_panel'
experiment_name = f"{Path.home()}/Downloads/{bucket_name}"
local_base_dir
= f"https://projects.pawsey.org.au/{bucket_name}/{experiment_name}.ndjson"
manifest_url
= pd.read_json(manifest_url, lines=True)
df
for r, row in tqdm(df.iterrows(),total=df.shape[0]):
= f"https://projects.pawsey.org.au/{bucket_name}/{urllib.parse.quote(row['key'])}"
url = Path(f"{local_base_dir}/{row['key']}")
local urllib.request.urlretrieve(url, local)