Sea ice¶
Compares sea ice concentration data from the NOAA G02135 dataset for August 15th in 1989 and 2023.
Highlights:
- Downloads images directly from the NSIDC FTP server.
 - Uses 
connectto concatenate the two homogeneous streams together (same keyword arguments, different resources). - Uses 
patternto filter for only the sea ice concentration images. - Uses 
intro_titleandintro_subtitleto provide context at the beginning of the animation. 
from streamjoy import stream, connect
connect(
    [
        stream(
            f"https://noaadata.apps.nsidc.org/NOAA/G02135/north/daily/images/{year}/08_Aug/",
            pattern=f"N_*_conc_v3.0.png",
            intro_title=f"August 15, {year}",
            intro_subtitle="Sea Ice Concentration",
            max_files=31,
        )
        for year in [1989, 2023]
    ]
).write("sea_ice.mp4")