Matchups of in situ data with satellite data using the ThoMaS match-up toolkit

Matchups of in situ data with satellite data using the ThoMaS match-up toolkit#

Authors: Anna Windle (NASA, SSAI), James Allen (NASA, Morgan State University), Juan Ignacio Gossn (EUMETSAT)
Notebook modified from Copernicus Marine Training Service Jupyter Notebook developed by Ben Loveday (EUMETSAT/Innoflair UG), Hayley Evers-King (EUMETSAT), Juan Ignacio-Gossn (EUMETSAT)

Summary#

In this example we will conduct matchups of in situ data with PACE OCI satellite data using the ThoMaS (Tool to generate Matchups for OC products with Sentinel-3/OLCI) package. This package provides a comprehensive set of tools to help with the validation of satellite products, supporting many common workflows including:

  • satellite data acquisition

  • mini file extraction

  • in situ data management

  • bidirectional reflectance distribution function (BRDF) correction

ThoMaS is written in Python and is made available through a EUMETSAT Gitlab repository. The package can be used from the command line, or imported as a Python library, as done here. This notebook contains an example of how to use ThoMaS, but the capability shown is not exhaustive. Many more command-line examples are included in the repository, and we encourage users to familiarise themselves with both the project README and example README for more information.

Learning Objectives#

At the end of this notebook you will know:

  • How to create a configuration file for the ThoMaS matchup toolkit

  • How to run ThoMaS for a full matchup exercise: satellite extractions + minifiles + extraction statistics + matchup statistics

  • Use standard matchup protocols to apply statistics and plot matchup data

Contents#

  1. Setup

  2. Create configuration file for ThoMaS

  3. Run ThoMaS

1. Setup#

Begin by importing all of the packages used in this notebook.

import sys
import os

We also need to retrieve the toolkit itself. For the hackweek, we have already saved the ThoMaS toolkit under shared/pace-hackweek-2024/lib/ThoMaS.

ThoMaS can be used from the command line, but here we will use it as a Python library. Lets import ThoMaS into our notebook.

sys.path.insert(1, 'shared/pace-hackweek-2024/lib/ThoMaS')
from main import ThoMaS_main as ThoMaS

We also need to save our Earthdata login credentials in our home directory.

Copy your username and password and store them in a JSON file under ~/.obpg_credentials.json (~ stands for your home directory)”
{“username”: “john.doe”, “password”: “jd_1234”}

back to top

2. Create configuration file for ThoMaS#

In this example we will conduct matchups of in situ AERONET-OC Rrs data with PACE OCI Rrs data. The Aerosol Robotic Network (AERONET) was developed to sustain atmospheric studies at various scales with measurements from worldwide distributed autonomous sun-photometers. This has been extended to support marine applications, called AERONET – Ocean Color (AERONET-OC), and provides the additional capability of measuring the radiance emerging from the sea (i.e., water-leaving radiance) with modified sun-photometers installed on offshore platforms like lighthouses, oceanographic and oil towers. AERONET-OC is instrumental in satellite ocean color validation activities.

In this tutorial, we will be collecting Rrs data from the Casablanca Platform AERONET-OC site located at 40.7N, 1.4W in the western Mediterranean Sea which is typically characterized as oligotrophic/mesotrophic (ocean color signals tend to strongly covary with chlorophyll a).

Below are our requirements for this workflow:

  1. I want to test the performance of PACE OCI at the AERONET-OC station Casablanca_Platform during July 2024.

  2. I wish to get matchups between this Casablanca_Platform subset and PACE/OCI Rrs using the standard extraction protocol from Bailey and Werdell, 2006, using an extraction window of 5x5.

  3. I want to apply the Lee et al. 2011 BRDF correction to both satellite and in situ data.

  4. Store all outputs in the “Casablanca_Platform” directory.

Let’s define a quick function that helps us to write our configuration options to a file.

# Write config_params sections into config_file.ini
def write_config_file(path_to_config_file,config_params):
    with open(path_to_config_file, 'w') as text_file:
        for section,section_params in config_params.items():
            text_file.write('\n[%s]\n' % (section))
            for param, value in section_params.items():
                text_file.write('%s: %s\n' % (param, value))

Let’s first define and create the pathto our main output directory

output_path = os.path.join(os.getcwd(), "Casablanca_Platform")
if not os.path.exists(output_path):
    os.mkdir(output_path)

Let’s now define out configuration file.

path_to_config_file = os.path.join(output_path, 'config_file.ini')
config_params = {}

# global
config_params['global'] = {}
config_params['global']['path_output'] = output_path
config_params['global']['SetID'] = 'Casablanca_Platform'
config_params['global']['workflow'] = 'insitu, SatData, minifiles, EDB, MDB'


# AERONETOC
config_params['AERONETOC'] = {}
config_params['AERONETOC']['AERONETOC_pathRaw'] = os.path.join(output_path, 'Casablanca_Platform', 'AERONET_OC_raw')
config_params['AERONETOC']['AERONETOC_dateStart'] = '2024-03-01T00:00:00'
config_params['AERONETOC']['AERONETOC_dateEnd'] = '2024-08-01T00:00:00'
config_params['AERONETOC']['AERONETOC_dataLevel'] = 1.5
config_params['AERONETOC']['AERONETOC_station'] = 'Casablanca_Platform'

# insitu
config_params['insitu'] = {}
config_params['insitu']['insitu_data2OCDBfile'] = 'AERONETOC'
config_params['insitu']['insitu_input'] = os.path.join(output_path, 'Casablanca_Platform_OCDB.csv')
config_params['insitu']['insitu_satelliteTimeToleranceSeconds'] = 3600
config_params['insitu']['insitu_getAncillary'] = False 
config_params['insitu']['insitu_BRDF'] = 'M02' 

# satellite
config_params['satellite'] = {}
config_params['satellite']['satellite_path-to-SatData'] = os.path.join(output_path, 'SatData')
config_params['satellite']['satellite_source'] = 'NASA_OBPG'
config_params['satellite']['satellite_collections'] = 'operational'
config_params['satellite']['satellite_platforms'] = 'PACE'
config_params['satellite']['satellite_resolutions'] = 'FR'
config_params['satellite']['satellite_BRDF'] = 'M02'

# minifiles
config_params['minifiles'] = {}
config_params['minifiles']['minifiles_winSize'] = 5

# EDB
config_params['EDB'] = {}
config_params['EDB']['EDB_protocols_L2'] = 'Bailey_and_Werdell_2006'
config_params['EDB']['EDB_winSizes'] = 5

# MDB
config_params['MDB'] = {}
config_params['MDB']['MDB_time-interpolation'] = 'insitu2satellite_NN'
config_params['MDB']['MDB_stats_plots'] = True
config_params['MDB']['MDB_stats_protocol'] = 'EUMETSAT_standard_L2'

# Write config_params sections into config_file.ini
write_config_file(path_to_config_file, config_params)

back to top

3. Run ThoMaS#

Now, let’s run this configuration and check our outputs

ThoMaS(path_to_config_file)
Running Casablanca_Platform

Building satellite_datasets file from specified options in config_file...

Step insitu
Creating IDB (in situ database) netcdf file and calculating timeRanges and satellite datasets from input SeaBASS/OCDB file (in situ)
Downloading AERONET-OC data from https://aeronet.gsfc.nasa.gov/data_push/V3/LWN/LWN_Level15_All_Points_V3.tar.gz and converting to OCDB/SeaBASS format!
Sanitised file successfully saved: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/Casablanca_Platform_OCDB_sanitised.csv
Spectral matching not supported for multispectral sza, skipping...
Spectral matching not supported for multispectral saa, skipping...
Spectral matching not supported for multispectral Lt, skipping...
Spectral matching not supported for multispectral Lsky, skipping...
Spectral matching not supported for multispectral Rho, skipping...
Spectral matching not supported for multispectral aot, skipping...
Spectral matching not supported for multispectral o3ot, skipping...
Spectral matching not supported for multispectral rot, skipping...
Spectral matching not supported for multispectral no2ot, skipping...
Spectral matching not supported for multispectral wvot, skipping...
Spectral matching not supported for multispectral Lw, skipping...
Spectral matching not supported for multispectral Lwnex, skipping...
Casablanca_Platform_OCDB_sanitised.csv: BRDF correction M02 already applied to in situ data according to SeaBASS header.

Step SatData
Downloading and/or creating lists of satellite data
Downloading /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240305T113721.L2.OC_AOP.V2_0.NRT.nc   100%
PACE_OCI.20240305T113721.L2.OC_AOP.V2_0.NRT.nc: Successfully downloaded
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240305T113721.L2.OC_AOP.V2_0.NRT.nc
Downloading /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240305T131541.L2.OC_AOP.V2_0.NRT.nc   100%
PACE_OCI.20240305T131541.L2.OC_AOP.V2_0.NRT.nc: Successfully downloaded
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240305T131541.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240305T131541.L2.OC_AOP.V2_0.NRT.nc
Downloading /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240306T121228.L2.OC_AOP.V2_0.NRT.nc   100%
PACE_OCI.20240306T121228.L2.OC_AOP.V2_0.NRT.nc: Successfully downloaded
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240306T121228.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240306T121228.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240306T121228.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240306T121228.L2.OC_AOP.V2_0.NRT.nc
Downloading /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240311T115122.L2.OC_AOP.V2_0.NRT.nc   100%
PACE_OCI.20240311T115122.L2.OC_AOP.V2_0.NRT.nc: Successfully downloaded
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240311T115122.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240311T115122.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240311T115122.L2.OC_AOP.V2_0.NRT.nc
Downloading /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240311T132943.L2.OC_AOP.V2_0.NRT.nc   100%
PACE_OCI.20240311T132943.L2.OC_AOP.V2_0.NRT.nc: Successfully downloaded
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240311T132943.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240311T132943.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240311T132943.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240311T132943.L2.OC_AOP.V2_0.NRT.nc
Downloading /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240312T122629.L2.OC_AOP.V2_0.NRT.nc   100%
PACE_OCI.20240312T122629.L2.OC_AOP.V2_0.NRT.nc: Successfully downloaded
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240312T122629.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240312T122629.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240312T122629.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240312T122629.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240312T122629.L2.OC_AOP.V2_0.NRT.nc
Downloading /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240316T113013.L2.OC_AOP.V2_0.NRT.nc   100%
PACE_OCI.20240316T113013.L2.OC_AOP.V2_0.NRT.nc: Successfully downloaded
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240316T113013.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240316T113013.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240316T113013.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240316T113013.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240316T113013.L2.OC_AOP.V2_0.NRT.nc
Downloading /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240316T130333.L2.OC_AOP.V2_0.NRT.nc   100%
PACE_OCI.20240316T130333.L2.OC_AOP.V2_0.NRT.nc: Successfully downloaded
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240316T130333.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240316T130333.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240316T130333.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240316T130333.L2.OC_AOP.V2_0.NRT.nc
Downloading /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240319T113709.L2.OC_AOP.V2_0.NRT.nc   100%
PACE_OCI.20240319T113709.L2.OC_AOP.V2_0.NRT.nc: Successfully downloaded
Downloading /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240319T131030.L2.OC_AOP.V2_0.NRT.nc   100%
PACE_OCI.20240319T131030.L2.OC_AOP.V2_0.NRT.nc: Successfully downloaded
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240319T131030.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240319T131030.L2.OC_AOP.V2_0.NRT.nc
Downloading /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240322T114404.L2.OC_AOP.V2_0.NRT.nc   100%
PACE_OCI.20240322T114404.L2.OC_AOP.V2_0.NRT.nc: Successfully downloaded
Downloading /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240401T123447.L2.OC_AOP.V2_0.NRT.nc   100%
PACE_OCI.20240401T123447.L2.OC_AOP.V2_0.NRT.nc: Successfully downloaded
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240401T123447.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240401T123447.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240401T123447.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240401T123447.L2.OC_AOP.V2_0.NRT.nc
Downloading /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240403T120633.L2.OC_AOP.V2_0.NRT.nc   100%
PACE_OCI.20240403T120633.L2.OC_AOP.V2_0.NRT.nc: Successfully downloaded
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240403T120633.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240403T120633.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240403T120633.L2.OC_AOP.V2_0.NRT.nc
Downloading /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240404T124136.L2.OC_AOP.V2_0.NRT.nc   100%
PACE_OCI.20240404T124136.L2.OC_AOP.V2_0.NRT.nc: Successfully downloaded
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240404T124136.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240404T124136.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240404T124136.L2.OC_AOP.V2_0.NRT.nc
Downloading /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240409T122008.L2.OC_AOP.V2_0.NRT.nc   100%
PACE_OCI.20240409T122008.L2.OC_AOP.V2_0.NRT.nc: Successfully downloaded
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240409T122008.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240409T122008.L2.OC_AOP.V2_0.NRT.nc
Downloading /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240410T111650.L2.OC_AOP.V2_0.NRT.nc   100%
PACE_OCI.20240410T111650.L2.OC_AOP.V2_0.NRT.nc: Successfully downloaded
Downloading /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240411T115152.L2.OC_AOP.V2_0.NRT.nc   100%
PACE_OCI.20240411T115152.L2.OC_AOP.V2_0.NRT.nc: Successfully downloaded
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240411T115152.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240411T115152.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240411T115152.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240411T115152.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240411T115152.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240411T115152.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240411T115152.L2.OC_AOP.V2_0.NRT.nc
Downloading /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240412T122654.L2.OC_AOP.V2_0.NRT.nc   100%
PACE_OCI.20240412T122654.L2.OC_AOP.V2_0.NRT.nc: Successfully downloaded
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240412T122654.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240412T122654.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240412T122654.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240412T122654.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240412T122654.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240412T122654.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240412T122654.L2.OC_AOP.V2_0.NRT.nc
Downloading /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240413T112336.L2.OC_AOP.V2_0.NRT.nc   100%
PACE_OCI.20240413T112336.L2.OC_AOP.V2_0.NRT.nc: Successfully downloaded
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240413T112336.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240413T112336.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240413T112336.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240413T112336.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240413T112336.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240413T112336.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240413T112336.L2.OC_AOP.V2_0.NRT.nc
Downloading /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240413T130156.L2.OC_AOP.V2_0.NRT.nc   100%
PACE_OCI.20240413T130156.L2.OC_AOP.V2_0.NRT.nc: Successfully downloaded
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240413T112336.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240413T130156.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240413T130156.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240413T130156.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240413T130156.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240413T130156.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240413T130156.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240413T130156.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240413T130156.L2.OC_AOP.V2_0.NRT.nc
Downloading /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240414T115838.L2.OC_AOP.V2_0.NRT.nc   100%
PACE_OCI.20240414T115838.L2.OC_AOP.V2_0.NRT.nc: Successfully downloaded
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240414T115838.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240414T115838.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240414T115838.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240414T115838.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240414T115838.L2.OC_AOP.V2_0.NRT.nc
Downloading /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240416T113018.L2.OC_AOP.V2_0.NRT.nc   100%
PACE_OCI.20240416T113018.L2.OC_AOP.V2_0.NRT.nc: Successfully downloaded
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240416T113018.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240416T113018.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240416T113018.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240416T113018.L2.OC_AOP.V2_0.NRT.nc
Downloading /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240416T130838.L2.OC_AOP.V2_0.NRT.nc   100%
PACE_OCI.20240416T130838.L2.OC_AOP.V2_0.NRT.nc: Successfully downloaded
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240416T113018.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240416T130838.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240416T113018.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240416T130838.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240416T130838.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240416T130838.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240416T130838.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240416T130838.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240416T130838.L2.OC_AOP.V2_0.NRT.nc
Downloading /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240417T120519.L2.OC_AOP.V2_0.NRT.nc   100%
PACE_OCI.20240417T120519.L2.OC_AOP.V2_0.NRT.nc: Successfully downloaded
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240417T120519.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240417T120519.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240417T120519.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240417T120519.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240417T120519.L2.OC_AOP.V2_0.NRT.nc
Downloading /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240418T124020.L2.OC_AOP.V2_0.NRT.nc   100%
PACE_OCI.20240418T124020.L2.OC_AOP.V2_0.NRT.nc: Successfully downloaded
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240418T124020.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240418T124020.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240418T124020.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240418T124020.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240418T124020.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240418T124020.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240418T124020.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240418T124020.L2.OC_AOP.V2_0.NRT.nc
Downloading /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240419T113701.L2.OC_AOP.V2_0.NRT.nc   100%
PACE_OCI.20240419T113701.L2.OC_AOP.V2_0.NRT.nc: Successfully downloaded
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240419T113701.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240419T113701.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240419T113701.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240419T113701.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240419T113701.L2.OC_AOP.V2_0.NRT.nc
Downloading /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240419T131521.L2.OC_AOP.V2_0.NRT.nc   100%
PACE_OCI.20240419T131521.L2.OC_AOP.V2_0.NRT.nc: Successfully downloaded
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240419T113701.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240419T131521.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240419T131521.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240419T131521.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240419T131521.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240419T131521.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240419T131521.L2.OC_AOP.V2_0.NRT.nc
Downloading /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240420T121201.L2.OC_AOP.V2_0.NRT.nc   100%
PACE_OCI.20240420T121201.L2.OC_AOP.V2_0.NRT.nc: Successfully downloaded
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240420T121201.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240420T121201.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240420T121201.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240420T121201.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240420T121201.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240420T121201.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240420T121201.L2.OC_AOP.V2_0.NRT.nc
Downloading /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240421T124702.L2.OC_AOP.V2_0.NRT.nc   100%
PACE_OCI.20240421T124702.L2.OC_AOP.V2_0.NRT.nc: Successfully downloaded
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240421T124702.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240421T124702.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240421T124702.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240421T124702.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240421T124702.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240421T124702.L2.OC_AOP.V2_0.NRT.nc
Downloading /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240422T132158.L2.OC_AOP.V2_0.NRT.nc   100%
PACE_OCI.20240422T132158.L2.OC_AOP.V2_0.NRT.nc: Successfully downloaded
Downloading /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240424T125337.L2.OC_AOP.V2_0.NRT.nc   100%
PACE_OCI.20240424T125337.L2.OC_AOP.V2_0.NRT.nc: Successfully downloaded
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240424T125337.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240424T125337.L2.OC_AOP.V2_0.NRT.nc
Downloading /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240430T112316.L2.OC_AOP.V2_0.NRT.nc   90%
PACE_OCI.20240430T112316.L2.OC_AOP.V2_0.NRT.nc: Successfully downloaded
Downloading /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240430T130135.L2.OC_AOP.V2_0.NRT.nc   100%
PACE_OCI.20240430T130135.L2.OC_AOP.V2_0.NRT.nc: Successfully downloaded
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240430T130135.L2.OC_AOP.V2_0.NRT.nc
Downloading /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240501T120312.L2.OC_AOP.V2_0.NRT.nc   100%
PACE_OCI.20240501T120312.L2.OC_AOP.V2_0.NRT.nc: Successfully downloaded
Downloading /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240502T123808.L2.OC_AOP.V2_0.NRT.nc   100%
PACE_OCI.20240502T123808.L2.OC_AOP.V2_0.NRT.nc: Successfully downloaded
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240502T123808.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240502T123808.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240502T123808.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240502T123808.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240502T123808.L2.OC_AOP.V2_0.NRT.nc
Downloading /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240503T113444.L2.OC_AOP.V2_0.NRT.nc   100%
PACE_OCI.20240503T113444.L2.OC_AOP.V2_0.NRT.nc: Successfully downloaded
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240503T113444.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240503T113444.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240503T113444.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240503T113444.L2.OC_AOP.V2_0.NRT.nc
Downloading /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240503T130804.L2.OC_AOP.V2_0.NRT.nc   100%
PACE_OCI.20240503T130804.L2.OC_AOP.V2_0.NRT.nc: Successfully downloaded
Downloading /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240504T120939.L2.OC_AOP.V2_0.NRT.nc   100%
PACE_OCI.20240504T120939.L2.OC_AOP.V2_0.NRT.nc: Successfully downloaded
Downloading /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240507T121107.L2.OC_AOP.V2_0.NRT.nc   100%
PACE_OCI.20240507T121107.L2.OC_AOP.V2_0.NRT.nc: Successfully downloaded
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240507T121107.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240507T121107.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240507T121107.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240507T121107.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240507T121107.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240507T121107.L2.OC_AOP.V2_0.NRT.nc
Downloading /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240508T124602.L2.OC_AOP.V2_0.NRT.nc   100%
PACE_OCI.20240508T124602.L2.OC_AOP.V2_0.NRT.nc: Successfully downloaded
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240508T124602.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240508T124602.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240508T124602.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240508T124602.L2.OC_AOP.V2_0.NRT.nc
Downloading /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240509T114737.L2.OC_AOP.V2_0.NRT.nc   100%
PACE_OCI.20240509T114737.L2.OC_AOP.V2_0.NRT.nc: Successfully downloaded
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240509T114737.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240509T114737.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240509T114737.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240509T114737.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240509T114737.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240509T114737.L2.OC_AOP.V2_0.NRT.nc
Downloading /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240509T132056.L2.OC_AOP.V2_0.NRT.nc   100%
PACE_OCI.20240509T132056.L2.OC_AOP.V2_0.NRT.nc: Successfully downloaded
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240509T132056.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240509T132056.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240509T132056.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240509T132056.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240509T132056.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240509T132056.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240509T132056.L2.OC_AOP.V2_0.NRT.nc
Downloading /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240511T125225.L2.OC_AOP.V2_0.NRT.nc   100%
PACE_OCI.20240511T125225.L2.OC_AOP.V2_0.NRT.nc: Successfully downloaded
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240511T125225.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240511T125225.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240511T125225.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240511T125225.L2.OC_AOP.V2_0.NRT.nc
Downloading /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240512T114900.L2.OC_AOP.V2_0.NRT.nc   100%
PACE_OCI.20240512T114900.L2.OC_AOP.V2_0.NRT.nc: Successfully downloaded
Downloading /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240514T125848.L2.OC_AOP.V2_0.NRT.nc   100%
PACE_OCI.20240514T125848.L2.OC_AOP.V2_0.NRT.nc: Successfully downloaded
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240514T125848.L2.OC_AOP.V2_0.NRT.nc
Downloading /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240516T123015.L2.OC_AOP.V2_0.NRT.nc   100%
PACE_OCI.20240516T123015.L2.OC_AOP.V2_0.NRT.nc: Successfully downloaded
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240516T123015.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240516T123015.L2.OC_AOP.V2_0.NRT.nc
Downloading /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240517T112648.L2.OC_AOP.V2_0.NRT.nc   100%
PACE_OCI.20240517T112648.L2.OC_AOP.V2_0.NRT.nc: Successfully downloaded
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240517T112648.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240517T112648.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240517T112648.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240517T112648.L2.OC_AOP.V2_0.NRT.nc
Downloading /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240517T130508.L2.OC_AOP.V2_0.NRT.nc   100%
PACE_OCI.20240517T130508.L2.OC_AOP.V2_0.NRT.nc: Successfully downloaded
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240517T130508.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240517T130508.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240517T130508.L2.OC_AOP.V2_0.NRT.nc
Downloading /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240518T120141.L2.OC_AOP.V2_0.NRT.nc   100%
PACE_OCI.20240518T120141.L2.OC_AOP.V2_0.NRT.nc: Successfully downloaded
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240518T120141.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240518T120141.L2.OC_AOP.V2_0.NRT.nc
Downloading /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240520T113306.L2.OC_AOP.V2_0.NRT.nc   100%
PACE_OCI.20240520T113306.L2.OC_AOP.V2_0.NRT.nc: Successfully downloaded
Downloading /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240520T131126.L2.OC_AOP.V2_0.NRT.nc   100%
PACE_OCI.20240520T131126.L2.OC_AOP.V2_0.NRT.nc: Successfully downloaded
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240520T131126.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240520T131126.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240520T131126.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240520T131126.L2.OC_AOP.V2_0.NRT.nc
Downloading /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240521T120758.L2.OC_AOP.V2_0.NRT.nc   100%
PACE_OCI.20240521T120758.L2.OC_AOP.V2_0.NRT.nc: Successfully downloaded
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240521T120758.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240521T120758.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240521T120758.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240521T120758.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240521T120758.L2.OC_AOP.V2_0.NRT.nc
Downloading /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240522T124250.L2.OC_AOP.V2_0.NRT.nc   100%
PACE_OCI.20240522T124250.L2.OC_AOP.V2_0.NRT.nc: Successfully downloaded
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240522T124250.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240522T124250.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240522T124250.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240522T124250.L2.OC_AOP.V2_0.NRT.nc
Downloading /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240523T113912.L2.OC_AOP.V2_0.NRT.nc   100%
PACE_OCI.20240523T113912.L2.OC_AOP.V2_0.NRT.nc: Successfully downloaded
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240523T113912.L2.OC_AOP.V2_0.NRT.nc
Downloading /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240523T131732.L2.OC_AOP.V2_0.NRT.nc   100%
PACE_OCI.20240523T131732.L2.OC_AOP.V2_0.NRT.nc: Successfully downloaded
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240523T131732.L2.OC_AOP.V2_0.NRT.nc
Downloading /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240602T123212.L2.OC_AOP.V2_0.NRT.nc   100%
PACE_OCI.20240602T123212.L2.OC_AOP.V2_0.NRT.nc: Successfully downloaded
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240602T123212.L2.OC_AOP.V2_0.NRT.nc
Downloading /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240603T113341.L2.OC_AOP.V2_0.NRT.nc   100%
PACE_OCI.20240603T113341.L2.OC_AOP.V2_0.NRT.nc: Successfully downloaded
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240603T113341.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240603T113341.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240603T113341.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240603T113341.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240603T113341.L2.OC_AOP.V2_0.NRT.nc
Downloading /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240603T130701.L2.OC_AOP.V2_0.NRT.nc   100%
PACE_OCI.20240603T130701.L2.OC_AOP.V2_0.NRT.nc: Successfully downloaded
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240603T130701.L2.OC_AOP.V2_0.NRT.nc
Downloading /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240604T120329.L2.OC_AOP.V2_0.NRT.nc   100%
PACE_OCI.20240604T120329.L2.OC_AOP.V2_0.NRT.nc: Successfully downloaded
Downloading /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240605T123815.L2.OC_AOP.V2_0.NRT.nc   100%
PACE_OCI.20240605T123815.L2.OC_AOP.V2_0.NRT.nc: Successfully downloaded
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240605T123815.L2.OC_AOP.V2_0.NRT.nc
Downloading /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240613T122123.L2.OC_AOP.V2_0.NRT.nc   100%
PACE_OCI.20240613T122123.L2.OC_AOP.V2_0.NRT.nc: Successfully downloaded
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240613T122123.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240613T122123.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240613T122123.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240613T122123.L2.OC_AOP.V2_0.NRT.nc
Downloading /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240614T125608.L2.OC_AOP.V2_0.NRT.nc   100%
PACE_OCI.20240614T125608.L2.OC_AOP.V2_0.NRT.nc: Successfully downloaded
Downloading /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240616T122717.L2.OC_AOP.V2_0.NRT.nc   100%
PACE_OCI.20240616T122717.L2.OC_AOP.V2_0.NRT.nc: Successfully downloaded
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240616T122717.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240616T122717.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240616T122717.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240616T122717.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240616T122717.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240616T122717.L2.OC_AOP.V2_0.NRT.nc
Downloading /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240617T112341.L2.OC_AOP.V2_0.NRT.nc   100%
PACE_OCI.20240617T112341.L2.OC_AOP.V2_0.NRT.nc: Successfully downloaded
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240617T112341.L2.OC_AOP.V2_0.NRT.nc
Downloading /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240618T115824.L2.OC_AOP.V2_0.NRT.nc   100%
PACE_OCI.20240618T115824.L2.OC_AOP.V2_0.NRT.nc: Successfully downloaded
Downloading /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240620T130751.L2.OC_AOP.V2_0.NRT.nc   100%
PACE_OCI.20240620T130751.L2.OC_AOP.V2_0.NRT.nc: Successfully downloaded
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240620T130751.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240620T130751.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240620T130751.L2.OC_AOP.V2_0.NRT.nc
Downloading /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240621T120415.L2.OC_AOP.V2_0.NRT.nc   100%
PACE_OCI.20240621T120415.L2.OC_AOP.V2_0.NRT.nc: Successfully downloaded
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240621T120415.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240621T120415.L2.OC_AOP.V2_0.NRT.nc
Downloading /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240623T131340.L2.OC_AOP.V2_0.NRT.nc   100%
PACE_OCI.20240623T131340.L2.OC_AOP.V2_0.NRT.nc: Successfully downloaded
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240623T131340.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240623T131340.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240623T131340.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240623T131340.L2.OC_AOP.V2_0.NRT.nc
Downloading /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240624T121003.L2.OC_AOP.V2_0.NRT.nc   100%
PACE_OCI.20240624T121003.L2.OC_AOP.V2_0.NRT.nc: Successfully downloaded
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240624T121003.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240624T121003.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240624T121003.L2.OC_AOP.V2_0.NRT.nc
Downloading /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240626T114108.L2.OC_AOP.V2_0.NRT.nc   100%
PACE_OCI.20240626T114108.L2.OC_AOP.V2_0.NRT.nc: Successfully downloaded
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240626T114108.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240626T114108.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240626T114108.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240626T114108.L2.OC_AOP.V2_0.NRT.nc
Downloading /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240626T131927.L2.OC_AOP.V2_0.NRT.nc   100%
PACE_OCI.20240626T131927.L2.OC_AOP.V2_0.NRT.nc: Successfully downloaded
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240626T131927.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240626T131927.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240626T131927.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240626T131927.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240626T131927.L2.OC_AOP.V2_0.NRT.nc
Downloading /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240628T125031.L2.OC_AOP.V2_0.NRT.nc   100%
PACE_OCI.20240628T125031.L2.OC_AOP.V2_0.NRT.nc: Successfully downloaded
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240628T125031.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240628T125031.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240628T125031.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240628T125031.L2.OC_AOP.V2_0.NRT.nc
Downloading /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240629T114654.L2.OC_AOP.V2_0.NRT.nc   100%
PACE_OCI.20240629T114654.L2.OC_AOP.V2_0.NRT.nc: Successfully downloaded
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240629T114654.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240629T114654.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240629T114654.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240629T114654.L2.OC_AOP.V2_0.NRT.nc
Downloading /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240629T132513.L2.OC_AOP.V2_0.NRT.nc   100%
PACE_OCI.20240629T132513.L2.OC_AOP.V2_0.NRT.nc: Successfully downloaded
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240629T114654.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240629T132513.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240629T132513.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240629T132513.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240629T132513.L2.OC_AOP.V2_0.NRT.nc
Downloading /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240630T122135.L2.OC_AOP.V2_0.NRT.nc   100%
PACE_OCI.20240630T122135.L2.OC_AOP.V2_0.NRT.nc: Successfully downloaded
Downloading /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240702T115238.L2.OC_AOP.V2_0.NRT.nc   100%
PACE_OCI.20240702T115238.L2.OC_AOP.V2_0.NRT.nc: Successfully downloaded
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240702T115238.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240702T115238.L2.OC_AOP.V2_0.NRT.nc
Downloading /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240704T112340.L2.OC_AOP.V2_0.NRT.nc   100%
PACE_OCI.20240704T112340.L2.OC_AOP.V2_0.NRT.nc: Successfully downloaded
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240704T112340.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240704T112340.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240704T112340.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240704T112340.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240704T112340.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240704T112340.L2.OC_AOP.V2_0.NRT.nc
Downloading /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240704T130159.L2.OC_AOP.V2_0.NRT.nc   100%
PACE_OCI.20240704T130159.L2.OC_AOP.V2_0.NRT.nc: Successfully downloaded
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240704T112340.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240704T130159.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240704T130159.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240704T130159.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240704T130159.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240704T130159.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240704T130159.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240704T130159.L2.OC_AOP.V2_0.NRT.nc
Downloading /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240705T115820.L2.OC_AOP.V2_0.NRT.nc   100%
PACE_OCI.20240705T115820.L2.OC_AOP.V2_0.NRT.nc: Successfully downloaded
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240705T115820.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240705T115820.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240705T115820.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240705T115820.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240705T115820.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240705T115820.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240705T115820.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240705T115820.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240705T115820.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240705T115820.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240705T115820.L2.OC_AOP.V2_0.NRT.nc
Downloading /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240706T123300.L2.OC_AOP.V2_0.NRT.nc   100%
PACE_OCI.20240706T123300.L2.OC_AOP.V2_0.NRT.nc: Successfully downloaded
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240706T123300.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240706T123300.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240706T123300.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240706T123300.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240706T123300.L2.OC_AOP.V2_0.NRT.nc
Downloading /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240707T112922.L2.OC_AOP.V2_0.NRT.nc   100%
PACE_OCI.20240707T112922.L2.OC_AOP.V2_0.NRT.nc: Successfully downloaded
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240707T112922.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240707T112922.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240707T112922.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240707T112922.L2.OC_AOP.V2_0.NRT.nc
Downloading /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240707T130740.L2.OC_AOP.V2_0.NRT.nc   100%
PACE_OCI.20240707T130740.L2.OC_AOP.V2_0.NRT.nc: Successfully downloaded
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240707T130740.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240707T130740.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240707T130740.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240707T130740.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240707T130740.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240707T130740.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240707T130740.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240707T130740.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240707T130740.L2.OC_AOP.V2_0.NRT.nc
Downloading /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240708T120355.L2.OC_AOP.V2_0.NRT.nc   100%
PACE_OCI.20240708T120355.L2.OC_AOP.V2_0.NRT.nc: Successfully downloaded
Downloading /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240709T123834.L2.OC_AOP.V2_0.NRT.nc   100%
PACE_OCI.20240709T123834.L2.OC_AOP.V2_0.NRT.nc: Successfully downloaded
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240709T123834.L2.OC_AOP.V2_0.NRT.nc
Downloading /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240710T113454.L2.OC_AOP.V2_0.NRT.nc   100%
PACE_OCI.20240710T113454.L2.OC_AOP.V2_0.NRT.nc: Successfully downloaded
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240710T113454.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240710T113454.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240710T113454.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240710T113454.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240710T113454.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240710T113454.L2.OC_AOP.V2_0.NRT.nc
Downloading /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240710T131312.L2.OC_AOP.V2_0.NRT.nc   100%
PACE_OCI.20240710T131312.L2.OC_AOP.V2_0.NRT.nc: Successfully downloaded
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240710T113454.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240710T131312.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240710T113454.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240710T131312.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240710T113454.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240710T131312.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240710T131312.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240710T131312.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240710T131312.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240710T131312.L2.OC_AOP.V2_0.NRT.nc
Downloading /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240711T120932.L2.OC_AOP.V2_0.NRT.nc   100%
PACE_OCI.20240711T120932.L2.OC_AOP.V2_0.NRT.nc: Successfully downloaded
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240711T120932.L2.OC_AOP.V2_0.NRT.nc
Downloading /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240712T124410.L2.OC_AOP.V2_0.NRT.nc   100%
PACE_OCI.20240712T124410.L2.OC_AOP.V2_0.NRT.nc: Successfully downloaded
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240712T124410.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240712T124410.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240712T124410.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240712T124410.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240712T124410.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240712T124410.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240712T124410.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240712T124410.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240712T124410.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240712T124410.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240712T124410.L2.OC_AOP.V2_0.NRT.nc
Downloading /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240713T114030.L2.OC_AOP.V2_0.NRT.nc   100%
PACE_OCI.20240713T114030.L2.OC_AOP.V2_0.NRT.nc: Successfully downloaded
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240713T114030.L2.OC_AOP.V2_0.NRT.nc
Downloading /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240713T131848.L2.OC_AOP.V2_0.NRT.nc   100%
PACE_OCI.20240713T131848.L2.OC_AOP.V2_0.NRT.nc: Successfully downloaded
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240713T114030.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240713T131848.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240713T114030.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240713T131848.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240713T131848.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240713T131848.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240713T131848.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240713T131848.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240713T131848.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240713T131848.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240713T131848.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240713T131848.L2.OC_AOP.V2_0.NRT.nc
Downloading /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240714T121508.L2.OC_AOP.V2_0.NRT.nc   100%
PACE_OCI.20240714T121508.L2.OC_AOP.V2_0.NRT.nc: Successfully downloaded
Downloading /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240715T124945.L2.OC_AOP.V2_0.NRT.nc   100%
PACE_OCI.20240715T124945.L2.OC_AOP.V2_0.NRT.nc: Successfully downloaded
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240715T124945.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240715T124945.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240715T124945.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240715T124945.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240715T124945.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240715T124945.L2.OC_AOP.V2_0.NRT.nc
Downloading /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240716T114603.L2.OC_AOP.V2_0.NRT.nc   100%
PACE_OCI.20240716T114603.L2.OC_AOP.V2_0.NRT.nc: Successfully downloaded
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240716T114603.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240716T114603.L2.OC_AOP.V2_0.NRT.nc
Downloading /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240716T132422.L2.OC_AOP.V2_0.NRT.nc   100%
PACE_OCI.20240716T132422.L2.OC_AOP.V2_0.NRT.nc: Successfully downloaded
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240716T114603.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240716T132422.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240716T132422.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240716T132422.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240716T132422.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240716T132422.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240716T132422.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240716T132422.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240716T132422.L2.OC_AOP.V2_0.NRT.nc
Downloading /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240717T122040.L2.OC_AOP.V2_0.NRT.nc   100%
PACE_OCI.20240717T122040.L2.OC_AOP.V2_0.NRT.nc: Successfully downloaded
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240717T122040.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240717T122040.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240717T122040.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240717T122040.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240717T122040.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240717T122040.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240717T122040.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240717T122040.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240717T122040.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240717T122040.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240717T122040.L2.OC_AOP.V2_0.NRT.nc
Downloading /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240718T111753.L2.OC_AOP.V2_0.NRT.nc   100%
PACE_OCI.20240718T111753.L2.OC_AOP.V2_0.NRT.nc: Successfully downloaded
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240718T111753.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240718T111753.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240718T111753.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240718T111753.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240718T111753.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240718T111753.L2.OC_AOP.V2_0.NRT.nc
Downloading /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240718T125612.L2.OC_AOP.V2_0.NRT.nc   100%
PACE_OCI.20240718T125612.L2.OC_AOP.V2_0.NRT.nc: Successfully downloaded
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240718T125612.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240718T125612.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240718T125612.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240718T125612.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240718T125612.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240718T125612.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240718T125612.L2.OC_AOP.V2_0.NRT.nc
Downloading /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240719T115135.L2.OC_AOP.V2_0.NRT.nc   100%
PACE_OCI.20240719T115135.L2.OC_AOP.V2_0.NRT.nc: Successfully downloaded
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240719T115135.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240719T115135.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240719T115135.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240719T115135.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240719T115135.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240719T115135.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240719T115135.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240719T115135.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240719T115135.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240719T115135.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240719T115135.L2.OC_AOP.V2_0.NRT.nc
Downloading /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240720T122612.L2.OC_AOP.V2_0.NRT.nc   100%
PACE_OCI.20240720T122612.L2.OC_AOP.V2_0.NRT.nc: Successfully downloaded
Downloading /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240721T112229.L2.OC_AOP.V2_0.NRT.nc   100%
PACE_OCI.20240721T112229.L2.OC_AOP.V2_0.NRT.nc: Successfully downloaded
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240721T112229.L2.OC_AOP.V2_0.NRT.nc
Downloading /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240721T130048.L2.OC_AOP.V2_0.NRT.nc   100%
PACE_OCI.20240721T130048.L2.OC_AOP.V2_0.NRT.nc: Successfully downloaded
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240721T130048.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240721T130048.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240721T130048.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240721T130048.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240721T130048.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240721T130048.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240721T130048.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240721T130048.L2.OC_AOP.V2_0.NRT.nc
Downloading /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240722T115704.L2.OC_AOP.V2_0.NRT.nc   100%
PACE_OCI.20240722T115704.L2.OC_AOP.V2_0.NRT.nc: Successfully downloaded
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240722T115704.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240722T115704.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240722T115704.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240722T115704.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240722T115704.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240722T115704.L2.OC_AOP.V2_0.NRT.nc
Downloading /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240723T123140.L2.OC_AOP.V2_0.NRT.nc   100%
PACE_OCI.20240723T123140.L2.OC_AOP.V2_0.NRT.nc: Successfully downloaded
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240723T123140.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240723T123140.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240723T123140.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240723T123140.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240723T123140.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240723T123140.L2.OC_AOP.V2_0.NRT.nc
Downloading /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240724T113257.L2.OC_AOP.V2_0.NRT.nc   100%
PACE_OCI.20240724T113257.L2.OC_AOP.V2_0.NRT.nc: Successfully downloaded
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240724T113257.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240724T113257.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240724T113257.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240724T113257.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240724T113257.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240724T113257.L2.OC_AOP.V2_0.NRT.nc
Downloading /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240724T130615.L2.OC_AOP.V2_0.NRT.nc   100%
PACE_OCI.20240724T130615.L2.OC_AOP.V2_0.NRT.nc: Successfully downloaded
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240724T113257.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240724T130615.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240724T113257.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240724T130615.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240724T113257.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240724T130615.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240724T130615.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240724T130615.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240724T130615.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240724T130615.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240724T130615.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240724T130615.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240724T130615.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240724T130615.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240724T130615.L2.OC_AOP.V2_0.NRT.nc
Downloading /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240725T120232.L2.OC_AOP.V2_0.NRT.nc   100%
PACE_OCI.20240725T120232.L2.OC_AOP.V2_0.NRT.nc: Successfully downloaded
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240725T120232.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240725T120232.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240725T120232.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240725T120232.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240725T120232.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240725T120232.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240725T120232.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240725T120232.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240725T120232.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240725T120232.L2.OC_AOP.V2_0.NRT.nc
Downloading /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240726T123707.L2.OC_AOP.V2_0.NRT.nc   100%
PACE_OCI.20240726T123707.L2.OC_AOP.V2_0.NRT.nc: Successfully downloaded
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240726T123707.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240726T123707.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240726T123707.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240726T123707.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240726T123707.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240726T123707.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240726T123707.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240726T123707.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240726T123707.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240726T123707.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240726T123707.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240726T123707.L2.OC_AOP.V2_0.NRT.nc
Downloading /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240727T113824.L2.OC_AOP.V2_0.NRT.nc   100%
PACE_OCI.20240727T113824.L2.OC_AOP.V2_0.NRT.nc: Successfully downloaded
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240727T113824.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240727T113824.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240727T113824.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240727T113824.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240727T113824.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240727T113824.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240727T113824.L2.OC_AOP.V2_0.NRT.nc
Downloading /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240727T131142.L2.OC_AOP.V2_0.NRT.nc   100%
PACE_OCI.20240727T131142.L2.OC_AOP.V2_0.NRT.nc: Successfully downloaded
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240727T113824.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240727T131142.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240727T113824.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240727T131142.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240727T131142.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240727T131142.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240727T131142.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240727T131142.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240727T131142.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240727T131142.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240727T131142.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240727T131142.L2.OC_AOP.V2_0.NRT.nc
Downloading /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240728T120759.L2.OC_AOP.V2_0.NRT.nc   100%
PACE_OCI.20240728T120759.L2.OC_AOP.V2_0.NRT.nc: Successfully downloaded
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240728T120759.L2.OC_AOP.V2_0.NRT.nc
Downloading /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240729T124229.L2.OC_AOP.V2_0.NRT.nc   100%
PACE_OCI.20240729T124229.L2.OC_AOP.V2_0.NRT.nc: Successfully downloaded
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240729T124229.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240729T124229.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240729T124229.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240729T124229.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240729T124229.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240729T124229.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240729T124229.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240729T124229.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240729T124229.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240729T124229.L2.OC_AOP.V2_0.NRT.nc
Downloading /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240731T121317.L2.OC_AOP.V2_0.NRT.nc   100%
PACE_OCI.20240731T121317.L2.OC_AOP.V2_0.NRT.nc: Successfully downloaded
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240731T121317.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240731T121317.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240731T121317.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240731T121317.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240731T121317.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240731T121317.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240731T121317.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240731T121317.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240731T121317.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240731T121317.L2.OC_AOP.V2_0.NRT.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatData/PACE_OCI.20240731T121317.L2.OC_AOP.V2_0.NRT.nc
Writing SatDataList for set PACE_OCI_L2_l2gen_OBPG_FR_Casablanca_Platform to: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/SatDataLists/SatDataList_PACE_OCI_L2_l2gen_OBPG_FR_Casablanca_Platform.txt

Step minifiles
Extracting minifiles from satellite data
Creating minifile: PACE_OCI.20240305T113721.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240305T113721.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Creating minifile: PACE_OCI.20240305T131541.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240305T131541.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240305T131541.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Creating minifile: PACE_OCI.20240306T121228.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240306T121228.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240306T121228.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240306T121228.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240306T121228.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Creating minifile: PACE_OCI.20240311T115122.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240311T115122.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240311T115122.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240311T115122.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Creating minifile: PACE_OCI.20240311T132943.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
outOfScene
minifile window falls partially/totally out of satellite product!
Minifile PACE_OCI.20240311T132943.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc falls partially/totally out of satellite product!
Minifile PACE_OCI.20240311T132943.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc falls partially/totally out of satellite product!
Minifile PACE_OCI.20240311T132943.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc falls partially/totally out of satellite product!
Minifile PACE_OCI.20240311T132943.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc falls partially/totally out of satellite product!
Creating minifile: PACE_OCI.20240312T122629.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240312T122629.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240312T122629.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240312T122629.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240312T122629.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240312T122629.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Creating minifile: PACE_OCI.20240316T113013.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240316T113013.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240316T113013.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240316T113013.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240316T113013.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240316T113013.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Creating minifile: PACE_OCI.20240316T130333.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240316T130333.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240316T130333.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240316T130333.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240316T130333.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Creating minifile: PACE_OCI.20240319T113709.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Creating minifile: PACE_OCI.20240319T131030.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240319T131030.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240319T131030.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Creating minifile: PACE_OCI.20240322T114404.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Creating minifile: PACE_OCI.20240401T123447.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240401T123447.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240401T123447.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240401T123447.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240401T123447.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Creating minifile: PACE_OCI.20240403T120633.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240403T120633.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240403T120633.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240403T120633.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Creating minifile: PACE_OCI.20240404T124136.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240404T124136.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240404T124136.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240404T124136.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Creating minifile: PACE_OCI.20240409T122008.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240409T122008.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240409T122008.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Creating minifile: PACE_OCI.20240410T111650.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Creating minifile: PACE_OCI.20240411T115152.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240411T115152.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240411T115152.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240411T115152.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240411T115152.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240411T115152.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240411T115152.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240411T115152.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Creating minifile: PACE_OCI.20240412T122654.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240412T122654.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240412T122654.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240412T122654.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240412T122654.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240412T122654.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240412T122654.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240412T122654.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Creating minifile: PACE_OCI.20240413T112336.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240413T112336.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240413T112336.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240413T112336.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240413T112336.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240413T112336.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240413T112336.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240413T112336.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240413T112336.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Creating minifile: PACE_OCI.20240413T130156.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240413T130156.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240413T130156.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240413T130156.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240413T130156.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240413T130156.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240413T130156.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240413T130156.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240413T130156.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Creating minifile: PACE_OCI.20240414T115838.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240414T115838.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240414T115838.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240414T115838.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240414T115838.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240414T115838.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Creating minifile: PACE_OCI.20240416T113018.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240416T113018.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240416T113018.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240416T113018.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240416T113018.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240416T113018.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240416T113018.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Creating minifile: PACE_OCI.20240416T130838.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240416T130838.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240416T130838.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240416T130838.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240416T130838.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240416T130838.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240416T130838.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240416T130838.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Creating minifile: PACE_OCI.20240417T120519.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240417T120519.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240417T120519.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240417T120519.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240417T120519.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240417T120519.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Creating minifile: PACE_OCI.20240418T124020.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240418T124020.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240418T124020.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240418T124020.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240418T124020.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240418T124020.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240418T124020.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240418T124020.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240418T124020.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Creating minifile: PACE_OCI.20240419T113701.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240419T113701.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240419T113701.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240419T113701.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240419T113701.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240419T113701.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240419T113701.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Creating minifile: PACE_OCI.20240419T131521.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240419T131521.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240419T131521.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240419T131521.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240419T131521.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240419T131521.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240419T131521.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Creating minifile: PACE_OCI.20240420T121201.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240420T121201.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240420T121201.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240420T121201.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240420T121201.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240420T121201.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240420T121201.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240420T121201.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Creating minifile: PACE_OCI.20240421T124702.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240421T124702.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240421T124702.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240421T124702.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240421T124702.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240421T124702.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240421T124702.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Creating minifile: PACE_OCI.20240422T132158.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Creating minifile: PACE_OCI.20240424T125337.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240424T125337.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240424T125337.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Creating minifile: PACE_OCI.20240430T112316.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Creating minifile: PACE_OCI.20240430T130135.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240430T130135.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Creating minifile: PACE_OCI.20240501T120312.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Creating minifile: PACE_OCI.20240502T123808.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240502T123808.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240502T123808.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240502T123808.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240502T123808.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240502T123808.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Creating minifile: PACE_OCI.20240503T113444.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240503T113444.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240503T113444.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240503T113444.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240503T113444.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Creating minifile: PACE_OCI.20240503T130804.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Creating minifile: PACE_OCI.20240504T120939.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Creating minifile: PACE_OCI.20240507T121107.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
outOfScene
minifile window falls partially/totally out of satellite product!
Minifile PACE_OCI.20240507T121107.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc falls partially/totally out of satellite product!
Minifile PACE_OCI.20240507T121107.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc falls partially/totally out of satellite product!
Minifile PACE_OCI.20240507T121107.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc falls partially/totally out of satellite product!
Minifile PACE_OCI.20240507T121107.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc falls partially/totally out of satellite product!
Minifile PACE_OCI.20240507T121107.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc falls partially/totally out of satellite product!
Minifile PACE_OCI.20240507T121107.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc falls partially/totally out of satellite product!
Creating minifile: PACE_OCI.20240508T124602.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240508T124602.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240508T124602.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240508T124602.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240508T124602.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Creating minifile: PACE_OCI.20240509T114737.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240509T114737.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240509T114737.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240509T114737.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240509T114737.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240509T114737.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240509T114737.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Creating minifile: PACE_OCI.20240509T132056.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240509T132056.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240509T132056.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240509T132056.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240509T132056.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240509T132056.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240509T132056.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240509T132056.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Creating minifile: PACE_OCI.20240511T125225.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240511T125225.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240511T125225.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240511T125225.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240511T125225.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Creating minifile: PACE_OCI.20240512T114900.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
outOfScene
minifile window falls partially/totally out of satellite product!
Creating minifile: PACE_OCI.20240514T125848.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240514T125848.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Creating minifile: PACE_OCI.20240516T123015.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240516T123015.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240516T123015.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Creating minifile: PACE_OCI.20240517T112648.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240517T112648.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240517T112648.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240517T112648.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240517T112648.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Creating minifile: PACE_OCI.20240517T130508.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240517T130508.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240517T130508.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240517T130508.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Creating minifile: PACE_OCI.20240518T120141.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240518T120141.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240518T120141.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Creating minifile: PACE_OCI.20240520T113306.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Creating minifile: PACE_OCI.20240520T131126.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240520T131126.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240520T131126.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240520T131126.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240520T131126.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Creating minifile: PACE_OCI.20240521T120758.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240521T120758.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240521T120758.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240521T120758.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240521T120758.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240521T120758.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Creating minifile: PACE_OCI.20240522T124250.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240522T124250.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240522T124250.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240522T124250.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240522T124250.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Creating minifile: PACE_OCI.20240523T113912.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240523T113912.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Creating minifile: PACE_OCI.20240523T131732.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240523T131732.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Creating minifile: PACE_OCI.20240602T123212.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240602T123212.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Creating minifile: PACE_OCI.20240603T113341.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240603T113341.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240603T113341.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240603T113341.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240603T113341.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240603T113341.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Creating minifile: PACE_OCI.20240603T130701.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240603T130701.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Creating minifile: PACE_OCI.20240604T120329.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Creating minifile: PACE_OCI.20240605T123815.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240605T123815.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Creating minifile: PACE_OCI.20240613T122123.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240613T122123.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240613T122123.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240613T122123.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240613T122123.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Creating minifile: PACE_OCI.20240614T125608.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Creating minifile: PACE_OCI.20240616T122717.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240616T122717.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240616T122717.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240616T122717.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240616T122717.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240616T122717.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240616T122717.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Creating minifile: PACE_OCI.20240617T112341.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240617T112341.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Creating minifile: PACE_OCI.20240618T115824.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Creating minifile: PACE_OCI.20240620T130751.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240620T130751.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240620T130751.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240620T130751.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Creating minifile: PACE_OCI.20240621T120415.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240621T120415.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240621T120415.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Creating minifile: PACE_OCI.20240623T131340.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240623T131340.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240623T131340.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240623T131340.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240623T131340.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Creating minifile: PACE_OCI.20240624T121003.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240624T121003.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240624T121003.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240624T121003.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Creating minifile: PACE_OCI.20240626T114108.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240626T114108.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240626T114108.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240626T114108.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240626T114108.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Creating minifile: PACE_OCI.20240626T131927.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240626T131927.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240626T131927.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240626T131927.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240626T131927.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240626T131927.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Creating minifile: PACE_OCI.20240628T125031.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240628T125031.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240628T125031.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240628T125031.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240628T125031.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Creating minifile: PACE_OCI.20240629T114654.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240629T114654.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240629T114654.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240629T114654.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240629T114654.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240629T114654.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Creating minifile: PACE_OCI.20240629T132513.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240629T132513.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240629T132513.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240629T132513.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240629T132513.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Creating minifile: PACE_OCI.20240630T122135.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Creating minifile: PACE_OCI.20240702T115238.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240702T115238.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240702T115238.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Creating minifile: PACE_OCI.20240704T112340.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240704T112340.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240704T112340.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240704T112340.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240704T112340.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240704T112340.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240704T112340.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240704T112340.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Creating minifile: PACE_OCI.20240704T130159.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240704T130159.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240704T130159.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240704T130159.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240704T130159.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240704T130159.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240704T130159.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240704T130159.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Creating minifile: PACE_OCI.20240705T115820.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240705T115820.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240705T115820.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240705T115820.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240705T115820.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240705T115820.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240705T115820.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240705T115820.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240705T115820.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240705T115820.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240705T115820.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240705T115820.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Creating minifile: PACE_OCI.20240706T123300.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240706T123300.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240706T123300.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240706T123300.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240706T123300.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240706T123300.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Creating minifile: PACE_OCI.20240707T112922.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240707T112922.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240707T112922.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240707T112922.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240707T112922.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Creating minifile: PACE_OCI.20240707T130740.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240707T130740.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240707T130740.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240707T130740.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240707T130740.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240707T130740.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240707T130740.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240707T130740.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240707T130740.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240707T130740.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Creating minifile: PACE_OCI.20240708T120355.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Creating minifile: PACE_OCI.20240709T123834.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240709T123834.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Creating minifile: PACE_OCI.20240710T113454.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240710T113454.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240710T113454.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240710T113454.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240710T113454.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240710T113454.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240710T113454.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240710T113454.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240710T113454.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240710T113454.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Creating minifile: PACE_OCI.20240710T131312.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240710T131312.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240710T131312.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240710T131312.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240710T131312.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240710T131312.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240710T131312.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240710T131312.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Creating minifile: PACE_OCI.20240711T120932.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240711T120932.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Creating minifile: PACE_OCI.20240712T124410.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240712T124410.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240712T124410.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240712T124410.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240712T124410.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240712T124410.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240712T124410.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240712T124410.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240712T124410.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240712T124410.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240712T124410.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240712T124410.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Creating minifile: PACE_OCI.20240713T114030.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240713T114030.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240713T114030.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240713T114030.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Creating minifile: PACE_OCI.20240713T131848.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240713T131848.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240713T131848.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240713T131848.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240713T131848.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240713T131848.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240713T131848.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240713T131848.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240713T131848.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240713T131848.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240713T131848.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Creating minifile: PACE_OCI.20240714T121508.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Creating minifile: PACE_OCI.20240715T124945.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240715T124945.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240715T124945.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240715T124945.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240715T124945.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240715T124945.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240715T124945.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Creating minifile: PACE_OCI.20240716T114603.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240716T114603.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240716T114603.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240716T114603.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Creating minifile: PACE_OCI.20240716T132422.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240716T132422.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240716T132422.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240716T132422.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240716T132422.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240716T132422.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240716T132422.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240716T132422.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240716T132422.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Creating minifile: PACE_OCI.20240717T122040.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240717T122040.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240717T122040.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240717T122040.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240717T122040.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240717T122040.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240717T122040.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240717T122040.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240717T122040.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240717T122040.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240717T122040.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240717T122040.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Creating minifile: PACE_OCI.20240718T111753.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240718T111753.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240718T111753.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240718T111753.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240718T111753.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240718T111753.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240718T111753.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Creating minifile: PACE_OCI.20240718T125612.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240718T125612.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240718T125612.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240718T125612.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240718T125612.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240718T125612.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240718T125612.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240718T125612.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Creating minifile: PACE_OCI.20240719T115135.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240719T115135.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240719T115135.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240719T115135.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240719T115135.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240719T115135.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240719T115135.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240719T115135.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240719T115135.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240719T115135.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240719T115135.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240719T115135.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Creating minifile: PACE_OCI.20240720T122612.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Creating minifile: PACE_OCI.20240721T112229.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
outOfScene
minifile window falls partially/totally out of satellite product!
Minifile PACE_OCI.20240721T112229.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc falls partially/totally out of satellite product!
Creating minifile: PACE_OCI.20240721T130048.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240721T130048.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240721T130048.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240721T130048.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240721T130048.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240721T130048.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240721T130048.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240721T130048.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240721T130048.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Creating minifile: PACE_OCI.20240722T115704.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240722T115704.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240722T115704.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240722T115704.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240722T115704.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240722T115704.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240722T115704.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Creating minifile: PACE_OCI.20240723T123140.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240723T123140.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240723T123140.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240723T123140.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240723T123140.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240723T123140.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240723T123140.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Creating minifile: PACE_OCI.20240724T113257.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240724T113257.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240724T113257.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240724T113257.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240724T113257.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240724T113257.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240724T113257.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240724T113257.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240724T113257.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240724T113257.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Creating minifile: PACE_OCI.20240724T130615.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240724T130615.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240724T130615.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240724T130615.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240724T130615.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240724T130615.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240724T130615.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240724T130615.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240724T130615.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240724T130615.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240724T130615.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240724T130615.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240724T130615.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Creating minifile: PACE_OCI.20240725T120232.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240725T120232.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240725T120232.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240725T120232.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240725T120232.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240725T120232.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240725T120232.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240725T120232.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240725T120232.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240725T120232.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240725T120232.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Creating minifile: PACE_OCI.20240726T123707.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240726T123707.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240726T123707.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240726T123707.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240726T123707.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240726T123707.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240726T123707.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240726T123707.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240726T123707.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240726T123707.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240726T123707.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240726T123707.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240726T123707.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Creating minifile: PACE_OCI.20240727T113824.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240727T113824.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240727T113824.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240727T113824.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240727T113824.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240727T113824.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240727T113824.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240727T113824.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240727T113824.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240727T113824.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Creating minifile: PACE_OCI.20240727T131142.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240727T131142.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240727T131142.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240727T131142.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240727T131142.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240727T131142.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240727T131142.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240727T131142.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240727T131142.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240727T131142.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240727T131142.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Creating minifile: PACE_OCI.20240728T120759.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240728T120759.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Creating minifile: PACE_OCI.20240729T124229.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240729T124229.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240729T124229.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240729T124229.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240729T124229.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240729T124229.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240729T124229.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240729T124229.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240729T124229.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240729T124229.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240729T124229.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Creating minifile: PACE_OCI.20240731T121317.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240731T121317.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240731T121317.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240731T121317.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240731T121317.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240731T121317.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240731T121317.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240731T121317.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240731T121317.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240731T121317.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240731T121317.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc
Already exists!: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/minifiles/PACE_OCI.20240731T121317.L2.OC_AOP.V2_0.NRT.E00135800N4071700_5x5.nc

Step EDB
Creating EDB (extraction data base)
creating EDB: EDB_PACE_OCI_L2_l2gen_OBPG_FR_Bailey_and_Werdell_2006_5x5_Casablanca_Platform
Creating EDB CSV: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/EDB/EDB_PACE_OCI_L2_l2gen_OBPG_FR_Bailey_and_Werdell_2006_5x5_Casablanca_Platform.csv

Step MDB
Creating MDB (matchup data base) by merging IDB (insitu) and EDB (extraction) data bases
Creating MDB file: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/MDB/MDB_PACE_OCI_L2_l2gen_OBPG_FR_Bailey_and_Werdell_2006_5x5_Casablanca_Platform.nc!
Rrs_346.0: cannot perform linear regression with less than 3 points
Rrs_356.0: cannot perform linear regression with less than 3 points
Rrs_358.0: cannot perform linear regression with less than 3 points
Rrs_361.0: cannot perform linear regression with less than 3 points
Rrs_363.0: cannot perform linear regression with less than 3 points
Rrs_366.0: cannot perform linear regression with less than 3 points
Rrs_368.0: cannot perform linear regression with less than 3 points
Rrs_373.0: cannot perform linear regression with less than 3 points
Rrs_378.0: cannot perform linear regression with less than 3 points
Rrs_380.0: cannot perform linear regression with less than 3 points
Rrs_383.0: cannot perform linear regression with less than 3 points
Rrs_385.0: cannot perform linear regression with less than 3 points
Rrs_388.0: cannot perform linear regression with less than 3 points
Rrs_390.0: cannot perform linear regression with less than 3 points
Rrs_393.0: cannot perform linear regression with less than 3 points
Rrs_395.0: cannot perform linear regression with less than 3 points
Rrs_398.0: cannot perform linear regression with less than 3 points
Rrs_666.0: cannot perform linear regression with less than 3 points
Rrs_667.0: cannot perform linear regression with less than 3 points
Rrs_668.0: cannot perform linear regression with less than 3 points
Rrs_670.0: cannot perform linear regression with less than 3 points
Rrs_671.0: cannot perform linear regression with less than 3 points
Rrs_672.0: cannot perform linear regression with less than 3 points
Rrs_673.0: cannot perform linear regression with less than 3 points
Rrs_676.0: cannot perform linear regression with less than 3 points
Rrs_677.0: cannot perform linear regression with less than 3 points
Rrs_678.0: cannot perform linear regression with less than 3 points
Rrs_679.0: cannot perform linear regression with less than 3 points
Rrs_681.0: cannot perform linear regression with less than 3 points
Rrs_682.0: cannot perform linear regression with less than 3 points
Rrs_683.0: cannot perform linear regression with less than 3 points
Rrs_684.0: cannot perform linear regression with less than 3 points
Rrs_686.0: cannot perform linear regression with less than 3 points
Rrs_687.0: cannot perform linear regression with less than 3 points
Rrs_688.0: cannot perform linear regression with less than 3 points
Rrs_689.0: cannot perform linear regression with less than 3 points
Rrs_691.0: cannot perform linear regression with less than 3 points
Rrs_692.0: cannot perform linear regression with less than 3 points
Rrs_693.0: cannot perform linear regression with less than 3 points
Rrs_694.0: cannot perform linear regression with less than 3 points
Rrs_696.0: cannot perform linear regression with less than 3 points
Rrs_697.0: cannot perform linear regression with less than 3 points
Creating MDB CSV: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/MDB/MDB_PACE_OCI_L2_l2gen_OBPG_FR_Bailey_and_Werdell_2006_5x5_Casablanca_Platform.csv

Creating MDB (matchup data base) plots
Creating MDB plot: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/MDB/Rrs_361.0_PACE_OCI_L2_l2gen_OBPG_FR_Bailey_and_Werdell_2006_5x5_Casablanca_Platform.png
No matching data for band 361.0, product Rrs
Creating MDB plot: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/MDB/Rrs_380.0_PACE_OCI_L2_l2gen_OBPG_FR_Bailey_and_Werdell_2006_5x5_Casablanca_Platform.png
No matching data for band 380.0, product Rrs
Creating MDB plot: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/MDB/Rrs_400.0_PACE_OCI_L2_l2gen_OBPG_FR_Bailey_and_Werdell_2006_5x5_Casablanca_Platform.png
Creating MDB plot: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/MDB/Rrs_413.0_PACE_OCI_L2_l2gen_OBPG_FR_Bailey_and_Werdell_2006_5x5_Casablanca_Platform.png
Creating MDB plot: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/MDB/Rrs_442.0_PACE_OCI_L2_l2gen_OBPG_FR_Bailey_and_Werdell_2006_5x5_Casablanca_Platform.png
Creating MDB plot: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/MDB/Rrs_490.0_PACE_OCI_L2_l2gen_OBPG_FR_Bailey_and_Werdell_2006_5x5_Casablanca_Platform.png
Creating MDB plot: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/MDB/Rrs_510.0_PACE_OCI_L2_l2gen_OBPG_FR_Bailey_and_Werdell_2006_5x5_Casablanca_Platform.png
Creating MDB plot: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/MDB/Rrs_560.0_PACE_OCI_L2_l2gen_OBPG_FR_Bailey_and_Werdell_2006_5x5_Casablanca_Platform.png
Creating MDB plot: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/MDB/Rrs_620.0_PACE_OCI_L2_l2gen_OBPG_FR_Bailey_and_Werdell_2006_5x5_Casablanca_Platform.png
Creating MDB plot: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/MDB/Rrs_665.0_PACE_OCI_L2_l2gen_OBPG_FR_Bailey_and_Werdell_2006_5x5_Casablanca_Platform.png
Creating MDB plot: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/MDB/Rrs_673.0_PACE_OCI_L2_l2gen_OBPG_FR_Bailey_and_Werdell_2006_5x5_Casablanca_Platform.png
No matching data for band 673.0, product Rrs
Creating MDB plot: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/MDB/Rrs_681.0_PACE_OCI_L2_l2gen_OBPG_FR_Bailey_and_Werdell_2006_5x5_Casablanca_Platform.png
No matching data for band 681.0, product Rrs
Creating MDB plot: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/MDB/Rrs_AllBands_1_Spectra_1_satellite_PACE_OCI_L2_l2gen_OBPG_FR_Bailey_and_Werdell_2006_5x5_Casablanca_Platform.png
Creating MDB plot: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/MDB/Rrs_AllBands_1_Spectra_2_insitu_PACE_OCI_L2_l2gen_OBPG_FR_Bailey_and_Werdell_2006_5x5_Casablanca_Platform.png
Creating MDB plot: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/MDB/Rrs_AllBands_1_Spectra_3_difference_PACE_OCI_L2_l2gen_OBPG_FR_Bailey_and_Werdell_2006_5x5_Casablanca_Platform.png
Creating MDB plot: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/MDB/Rrs_AllBands_2_Scatter_PACE_OCI_L2_l2gen_OBPG_FR_Bailey_and_Werdell_2006_5x5_Casablanca_Platform.png
Creating MDB plot: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/MDB/Rrs_AllBands_3_Absolute_Deviations_PACE_OCI_L2_l2gen_OBPG_FR_Bailey_and_Werdell_2006_5x5_Casablanca_Platform.png
Creating MDB plot: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/MDB/Rrs_AllBands_4_Percentual_Deviations_PACE_OCI_L2_l2gen_OBPG_FR_Bailey_and_Werdell_2006_5x5_Casablanca_Platform.png
Creating MDB plot: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/MDB/Rrs_AllBands_5_Metrologically_Compatible_Fraction_PACE_OCI_L2_l2gen_OBPG_FR_Bailey_and_Werdell_2006_5x5_Casablanca_Platform.png
Creating MDB plot: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/MDB/Rrs_AllBands_6_Slope_PACE_OCI_L2_l2gen_OBPG_FR_Bailey_and_Werdell_2006_5x5_Casablanca_Platform.png
Creating MDB plot: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/MDB/Rrs_AllBands_7_Intercept_PACE_OCI_L2_l2gen_OBPG_FR_Bailey_and_Werdell_2006_5x5_Casablanca_Platform.png
Creating MDB plot: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/MDB/Rrs_AllBands_8_Slope_TS_PACE_OCI_L2_l2gen_OBPG_FR_Bailey_and_Werdell_2006_5x5_Casablanca_Platform.png
Creating MDB plot: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/MDB/Rrs_AllBands_9_Intercept_TS_PACE_OCI_L2_l2gen_OBPG_FR_Bailey_and_Werdell_2006_5x5_Casablanca_Platform.png
Creating MDB plot: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/MDB/Rrs_AllBands_10_R2_PACE_OCI_L2_l2gen_OBPG_FR_Bailey_and_Werdell_2006_5x5_Casablanca_Platform.png
Creating MDB plot: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/MDB/matchup-by-matchup/matchupID_S0003_I0019_station_Casablanca_Platform-Casablanca_Platform-00018_PACE_OCI_L2_l2gen_OBPG_Bailey_and_Werdell_2006_5x5_Rrs.png
Creating MDB plot: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/MDB/matchup-by-matchup/matchupID_S0003_I0019_station_Casablanca_Platform-Casablanca_Platform-00018_PACE_OCI_L2_l2gen_OBPG_Bailey_and_Werdell_2006_5x5_RGB.png
Creating MDB plot: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/MDB/matchup-by-matchup/matchupID_S0005_I0040_station_Casablanca_Platform-Casablanca_Platform-00039_PACE_OCI_L2_l2gen_OBPG_Bailey_and_Werdell_2006_5x5_Rrs.png
Creating MDB plot: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/MDB/matchup-by-matchup/matchupID_S0005_I0040_station_Casablanca_Platform-Casablanca_Platform-00039_PACE_OCI_L2_l2gen_OBPG_Bailey_and_Werdell_2006_5x5_RGB.png
Creating MDB plot: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/MDB/matchup-by-matchup/matchupID_S0011_I0088_station_Casablanca_Platform-Casablanca_Platform-00087_PACE_OCI_L2_l2gen_OBPG_Bailey_and_Werdell_2006_5x5_Rrs.png
Creating MDB plot: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/MDB/matchup-by-matchup/matchupID_S0011_I0088_station_Casablanca_Platform-Casablanca_Platform-00087_PACE_OCI_L2_l2gen_OBPG_Bailey_and_Werdell_2006_5x5_RGB.png
Creating MDB plot: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/MDB/matchup-by-matchup/matchupID_S0012_I0102_station_Casablanca_Platform-Casablanca_Platform-00101_PACE_OCI_L2_l2gen_OBPG_Bailey_and_Werdell_2006_5x5_Rrs.png
Creating MDB plot: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/MDB/matchup-by-matchup/matchupID_S0012_I0102_station_Casablanca_Platform-Casablanca_Platform-00101_PACE_OCI_L2_l2gen_OBPG_Bailey_and_Werdell_2006_5x5_RGB.png
Creating MDB plot: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/MDB/matchup-by-matchup/matchupID_S0013_I0114_station_Casablanca_Platform-Casablanca_Platform-00113_PACE_OCI_L2_l2gen_OBPG_Bailey_and_Werdell_2006_5x5_Rrs.png
Creating MDB plot: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/MDB/matchup-by-matchup/matchupID_S0013_I0114_station_Casablanca_Platform-Casablanca_Platform-00113_PACE_OCI_L2_l2gen_OBPG_Bailey_and_Werdell_2006_5x5_RGB.png
Creating MDB plot: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/MDB/matchup-by-matchup/matchupID_S0014_I0118_station_Casablanca_Platform-Casablanca_Platform-00117_PACE_OCI_L2_l2gen_OBPG_Bailey_and_Werdell_2006_5x5_Rrs.png
Creating MDB plot: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/MDB/matchup-by-matchup/matchupID_S0014_I0118_station_Casablanca_Platform-Casablanca_Platform-00117_PACE_OCI_L2_l2gen_OBPG_Bailey_and_Werdell_2006_5x5_RGB.png
Creating MDB plot: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/MDB/matchup-by-matchup/matchupID_S0016_I0139_station_Casablanca_Platform-Casablanca_Platform-00138_PACE_OCI_L2_l2gen_OBPG_Bailey_and_Werdell_2006_5x5_Rrs.png
Creating MDB plot: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/MDB/matchup-by-matchup/matchupID_S0016_I0139_station_Casablanca_Platform-Casablanca_Platform-00138_PACE_OCI_L2_l2gen_OBPG_Bailey_and_Werdell_2006_5x5_RGB.png
Creating MDB plot: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/MDB/matchup-by-matchup/matchupID_S0017_I0166_station_Casablanca_Platform-Casablanca_Platform-00165_PACE_OCI_L2_l2gen_OBPG_Bailey_and_Werdell_2006_5x5_Rrs.png
Creating MDB plot: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/MDB/matchup-by-matchup/matchupID_S0017_I0166_station_Casablanca_Platform-Casablanca_Platform-00165_PACE_OCI_L2_l2gen_OBPG_Bailey_and_Werdell_2006_5x5_RGB.png
Creating MDB plot: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/MDB/matchup-by-matchup/matchupID_S0019_I0192_station_Casablanca_Platform-Casablanca_Platform-00191_PACE_OCI_L2_l2gen_OBPG_Bailey_and_Werdell_2006_5x5_Rrs.png
Creating MDB plot: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/MDB/matchup-by-matchup/matchupID_S0019_I0192_station_Casablanca_Platform-Casablanca_Platform-00191_PACE_OCI_L2_l2gen_OBPG_Bailey_and_Werdell_2006_5x5_RGB.png
Creating MDB plot: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/MDB/matchup-by-matchup/matchupID_S0020_I0210_station_Casablanca_Platform-Casablanca_Platform-00209_PACE_OCI_L2_l2gen_OBPG_Bailey_and_Werdell_2006_5x5_Rrs.png
Creating MDB plot: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/MDB/matchup-by-matchup/matchupID_S0020_I0210_station_Casablanca_Platform-Casablanca_Platform-00209_PACE_OCI_L2_l2gen_OBPG_Bailey_and_Werdell_2006_5x5_RGB.png
Creating MDB plot: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/MDB/matchup-by-matchup/matchupID_S0023_I0245_station_Casablanca_Platform-Casablanca_Platform-00244_PACE_OCI_L2_l2gen_OBPG_Bailey_and_Werdell_2006_5x5_Rrs.png
Creating MDB plot: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/MDB/matchup-by-matchup/matchupID_S0023_I0245_station_Casablanca_Platform-Casablanca_Platform-00244_PACE_OCI_L2_l2gen_OBPG_Bailey_and_Werdell_2006_5x5_RGB.png
Creating MDB plot: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/MDB/matchup-by-matchup/matchupID_S0024_I0263_station_Casablanca_Platform-Casablanca_Platform-00262_PACE_OCI_L2_l2gen_OBPG_Bailey_and_Werdell_2006_5x5_Rrs.png
Creating MDB plot: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/MDB/matchup-by-matchup/matchupID_S0024_I0263_station_Casablanca_Platform-Casablanca_Platform-00262_PACE_OCI_L2_l2gen_OBPG_Bailey_and_Werdell_2006_5x5_RGB.png
Creating MDB plot: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/MDB/matchup-by-matchup/matchupID_S0027_I0301_station_Casablanca_Platform-Casablanca_Platform-00300_PACE_OCI_L2_l2gen_OBPG_Bailey_and_Werdell_2006_5x5_Rrs.png
Creating MDB plot: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/MDB/matchup-by-matchup/matchupID_S0027_I0301_station_Casablanca_Platform-Casablanca_Platform-00300_PACE_OCI_L2_l2gen_OBPG_Bailey_and_Werdell_2006_5x5_RGB.png
Creating MDB plot: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/MDB/matchup-by-matchup/matchupID_S0028_I0319_station_Casablanca_Platform-Casablanca_Platform-00318_PACE_OCI_L2_l2gen_OBPG_Bailey_and_Werdell_2006_5x5_Rrs.png
Creating MDB plot: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/MDB/matchup-by-matchup/matchupID_S0028_I0319_station_Casablanca_Platform-Casablanca_Platform-00318_PACE_OCI_L2_l2gen_OBPG_Bailey_and_Werdell_2006_5x5_RGB.png
Creating MDB plot: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/MDB/matchup-by-matchup/matchupID_S0030_I0346_station_Casablanca_Platform-Casablanca_Platform-00345_PACE_OCI_L2_l2gen_OBPG_Bailey_and_Werdell_2006_5x5_Rrs.png
Creating MDB plot: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/MDB/matchup-by-matchup/matchupID_S0030_I0346_station_Casablanca_Platform-Casablanca_Platform-00345_PACE_OCI_L2_l2gen_OBPG_Bailey_and_Werdell_2006_5x5_RGB.png
Creating MDB plot: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/MDB/matchup-by-matchup/matchupID_S0033_I0363_station_Casablanca_Platform-Casablanca_Platform-00362_PACE_OCI_L2_l2gen_OBPG_Bailey_and_Werdell_2006_5x5_Rrs.png
Creating MDB plot: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/MDB/matchup-by-matchup/matchupID_S0033_I0363_station_Casablanca_Platform-Casablanca_Platform-00362_PACE_OCI_L2_l2gen_OBPG_Bailey_and_Werdell_2006_5x5_RGB.png
Creating MDB plot: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/MDB/matchup-by-matchup/matchupID_S0034_I0364_station_Casablanca_Platform-Casablanca_Platform-00363_PACE_OCI_L2_l2gen_OBPG_Bailey_and_Werdell_2006_5x5_Rrs.png
Creating MDB plot: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/MDB/matchup-by-matchup/matchupID_S0034_I0364_station_Casablanca_Platform-Casablanca_Platform-00363_PACE_OCI_L2_l2gen_OBPG_Bailey_and_Werdell_2006_5x5_RGB.png
Creating MDB plot: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/MDB/matchup-by-matchup/matchupID_S0037_I0383_station_Casablanca_Platform-Casablanca_Platform-00382_PACE_OCI_L2_l2gen_OBPG_Bailey_and_Werdell_2006_5x5_Rrs.png
Creating MDB plot: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/MDB/matchup-by-matchup/matchupID_S0037_I0383_station_Casablanca_Platform-Casablanca_Platform-00382_PACE_OCI_L2_l2gen_OBPG_Bailey_and_Werdell_2006_5x5_RGB.png
Creating MDB plot: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/MDB/matchup-by-matchup/matchupID_S0038_I0408_station_Casablanca_Platform-Casablanca_Platform-00407_PACE_OCI_L2_l2gen_OBPG_Bailey_and_Werdell_2006_5x5_Rrs.png
Creating MDB plot: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/MDB/matchup-by-matchup/matchupID_S0038_I0408_station_Casablanca_Platform-Casablanca_Platform-00407_PACE_OCI_L2_l2gen_OBPG_Bailey_and_Werdell_2006_5x5_RGB.png
Creating MDB plot: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/MDB/matchup-by-matchup/matchupID_S0039_I0425_station_Casablanca_Platform-Casablanca_Platform-00424_PACE_OCI_L2_l2gen_OBPG_Bailey_and_Werdell_2006_5x5_Rrs.png
Creating MDB plot: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/MDB/matchup-by-matchup/matchupID_S0039_I0425_station_Casablanca_Platform-Casablanca_Platform-00424_PACE_OCI_L2_l2gen_OBPG_Bailey_and_Werdell_2006_5x5_RGB.png
Creating MDB plot: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/MDB/matchup-by-matchup/matchupID_S0041_I0445_station_Casablanca_Platform-Casablanca_Platform-00444_PACE_OCI_L2_l2gen_OBPG_Bailey_and_Werdell_2006_5x5_Rrs.png
Creating MDB plot: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/MDB/matchup-by-matchup/matchupID_S0041_I0445_station_Casablanca_Platform-Casablanca_Platform-00444_PACE_OCI_L2_l2gen_OBPG_Bailey_and_Werdell_2006_5x5_RGB.png
Creating MDB plot: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/MDB/matchup-by-matchup/matchupID_S0042_I0457_station_Casablanca_Platform-Casablanca_Platform-00456_PACE_OCI_L2_l2gen_OBPG_Bailey_and_Werdell_2006_5x5_Rrs.png
Creating MDB plot: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/MDB/matchup-by-matchup/matchupID_S0042_I0457_station_Casablanca_Platform-Casablanca_Platform-00456_PACE_OCI_L2_l2gen_OBPG_Bailey_and_Werdell_2006_5x5_RGB.png
Creating MDB plot: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/MDB/matchup-by-matchup/matchupID_S0046_I0489_station_Casablanca_Platform-Casablanca_Platform-00488_PACE_OCI_L2_l2gen_OBPG_Bailey_and_Werdell_2006_5x5_Rrs.png
Creating MDB plot: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/MDB/matchup-by-matchup/matchupID_S0046_I0489_station_Casablanca_Platform-Casablanca_Platform-00488_PACE_OCI_L2_l2gen_OBPG_Bailey_and_Werdell_2006_5x5_RGB.png
Creating MDB plot: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/MDB/matchup-by-matchup/matchupID_S0049_I0505_station_Casablanca_Platform-Casablanca_Platform-00504_PACE_OCI_L2_l2gen_OBPG_Bailey_and_Werdell_2006_5x5_Rrs.png
Creating MDB plot: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/MDB/matchup-by-matchup/matchupID_S0049_I0505_station_Casablanca_Platform-Casablanca_Platform-00504_PACE_OCI_L2_l2gen_OBPG_Bailey_and_Werdell_2006_5x5_RGB.png
Creating MDB plot: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/MDB/matchup-by-matchup/matchupID_S0053_I0572_station_Casablanca_Platform-Casablanca_Platform-00571_PACE_OCI_L2_l2gen_OBPG_Bailey_and_Werdell_2006_5x5_Rrs.png
Creating MDB plot: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/MDB/matchup-by-matchup/matchupID_S0053_I0572_station_Casablanca_Platform-Casablanca_Platform-00571_PACE_OCI_L2_l2gen_OBPG_Bailey_and_Werdell_2006_5x5_RGB.png
Creating MDB plot: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/MDB/matchup-by-matchup/matchupID_S0060_I0637_station_Casablanca_Platform-Casablanca_Platform-00636_PACE_OCI_L2_l2gen_OBPG_Bailey_and_Werdell_2006_5x5_Rrs.png
Creating MDB plot: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/MDB/matchup-by-matchup/matchupID_S0060_I0637_station_Casablanca_Platform-Casablanca_Platform-00636_PACE_OCI_L2_l2gen_OBPG_Bailey_and_Werdell_2006_5x5_RGB.png
Creating MDB plot: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/MDB/matchup-by-matchup/matchupID_S0062_I0647_station_Casablanca_Platform-Casablanca_Platform-00646_PACE_OCI_L2_l2gen_OBPG_Bailey_and_Werdell_2006_5x5_Rrs.png
Creating MDB plot: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/MDB/matchup-by-matchup/matchupID_S0062_I0647_station_Casablanca_Platform-Casablanca_Platform-00646_PACE_OCI_L2_l2gen_OBPG_Bailey_and_Werdell_2006_5x5_RGB.png
Creating MDB plot: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/MDB/matchup-by-matchup/matchupID_S0064_I0655_station_Casablanca_Platform-Casablanca_Platform-00654_PACE_OCI_L2_l2gen_OBPG_Bailey_and_Werdell_2006_5x5_Rrs.png
Creating MDB plot: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/MDB/matchup-by-matchup/matchupID_S0064_I0655_station_Casablanca_Platform-Casablanca_Platform-00654_PACE_OCI_L2_l2gen_OBPG_Bailey_and_Werdell_2006_5x5_RGB.png
Creating MDB plot: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/MDB/matchup-by-matchup/matchupID_S0067_I0694_station_Casablanca_Platform-Casablanca_Platform-00693_PACE_OCI_L2_l2gen_OBPG_Bailey_and_Werdell_2006_5x5_Rrs.png
Creating MDB plot: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/MDB/matchup-by-matchup/matchupID_S0067_I0694_station_Casablanca_Platform-Casablanca_Platform-00693_PACE_OCI_L2_l2gen_OBPG_Bailey_and_Werdell_2006_5x5_RGB.png
Creating MDB plot: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/MDB/matchup-by-matchup/matchupID_S0070_I0719_station_Casablanca_Platform-Casablanca_Platform-00718_PACE_OCI_L2_l2gen_OBPG_Bailey_and_Werdell_2006_5x5_Rrs.png
Creating MDB plot: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/MDB/matchup-by-matchup/matchupID_S0070_I0719_station_Casablanca_Platform-Casablanca_Platform-00718_PACE_OCI_L2_l2gen_OBPG_Bailey_and_Werdell_2006_5x5_RGB.png
Creating MDB plot: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/MDB/matchup-by-matchup/matchupID_S0073_I0735_station_Casablanca_Platform-Casablanca_Platform-00734_PACE_OCI_L2_l2gen_OBPG_Bailey_and_Werdell_2006_5x5_Rrs.png
Creating MDB plot: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/MDB/matchup-by-matchup/matchupID_S0073_I0735_station_Casablanca_Platform-Casablanca_Platform-00734_PACE_OCI_L2_l2gen_OBPG_Bailey_and_Werdell_2006_5x5_RGB.png
Creating MDB plot: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/MDB/matchup-by-matchup/matchupID_S0075_I0758_station_Casablanca_Platform-Casablanca_Platform-00757_PACE_OCI_L2_l2gen_OBPG_Bailey_and_Werdell_2006_5x5_Rrs.png
Creating MDB plot: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/MDB/matchup-by-matchup/matchupID_S0075_I0758_station_Casablanca_Platform-Casablanca_Platform-00757_PACE_OCI_L2_l2gen_OBPG_Bailey_and_Werdell_2006_5x5_RGB.png
Creating MDB plot: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/MDB/matchup-by-matchup/matchupID_S0076_I0776_station_Casablanca_Platform-Casablanca_Platform-00775_PACE_OCI_L2_l2gen_OBPG_Bailey_and_Werdell_2006_5x5_Rrs.png
Creating MDB plot: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/MDB/matchup-by-matchup/matchupID_S0076_I0776_station_Casablanca_Platform-Casablanca_Platform-00775_PACE_OCI_L2_l2gen_OBPG_Bailey_and_Werdell_2006_5x5_RGB.png
Creating MDB plot: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/MDB/matchup-by-matchup/matchupID_S0085_I0897_station_Casablanca_Platform-Casablanca_Platform-00896_PACE_OCI_L2_l2gen_OBPG_Bailey_and_Werdell_2006_5x5_Rrs.png
Creating MDB plot: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/MDB/matchup-by-matchup/matchupID_S0085_I0897_station_Casablanca_Platform-Casablanca_Platform-00896_PACE_OCI_L2_l2gen_OBPG_Bailey_and_Werdell_2006_5x5_RGB.png
Creating MDB plot: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/MDB/matchup-by-matchup/matchupID_S0086_I0921_station_Casablanca_Platform-Casablanca_Platform-00920_PACE_OCI_L2_l2gen_OBPG_Bailey_and_Werdell_2006_5x5_Rrs.png
Creating MDB plot: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/MDB/matchup-by-matchup/matchupID_S0086_I0921_station_Casablanca_Platform-Casablanca_Platform-00920_PACE_OCI_L2_l2gen_OBPG_Bailey_and_Werdell_2006_5x5_RGB.png
Creating MDB plot: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/MDB/matchup-by-matchup/matchupID_S0089_I0940_station_Casablanca_Platform-Casablanca_Platform-00939_PACE_OCI_L2_l2gen_OBPG_Bailey_and_Werdell_2006_5x5_Rrs.png
Creating MDB plot: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/MDB/matchup-by-matchup/matchupID_S0089_I0940_station_Casablanca_Platform-Casablanca_Platform-00939_PACE_OCI_L2_l2gen_OBPG_Bailey_and_Werdell_2006_5x5_RGB.png
Creating MDB plot: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/MDB/matchup-by-matchup/matchupID_S0090_I0954_station_Casablanca_Platform-Casablanca_Platform-00953_PACE_OCI_L2_l2gen_OBPG_Bailey_and_Werdell_2006_5x5_Rrs.png
Creating MDB plot: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/MDB/matchup-by-matchup/matchupID_S0090_I0954_station_Casablanca_Platform-Casablanca_Platform-00953_PACE_OCI_L2_l2gen_OBPG_Bailey_and_Werdell_2006_5x5_RGB.png
Creating MDB plot: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/MDB/matchup-by-matchup/matchupID_S0095_I1026_station_Casablanca_Platform-Casablanca_Platform-01025_PACE_OCI_L2_l2gen_OBPG_Bailey_and_Werdell_2006_5x5_Rrs.png
Creating MDB plot: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/MDB/matchup-by-matchup/matchupID_S0095_I1026_station_Casablanca_Platform-Casablanca_Platform-01025_PACE_OCI_L2_l2gen_OBPG_Bailey_and_Werdell_2006_5x5_RGB.png
Creating MDB plot: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/MDB/matchup-by-matchup/matchupID_S0097_I1065_station_Casablanca_Platform-Casablanca_Platform-01064_PACE_OCI_L2_l2gen_OBPG_Bailey_and_Werdell_2006_5x5_Rrs.png
Creating MDB plot: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/MDB/matchup-by-matchup/matchupID_S0097_I1065_station_Casablanca_Platform-Casablanca_Platform-01064_PACE_OCI_L2_l2gen_OBPG_Bailey_and_Werdell_2006_5x5_RGB.png
Creating MDB plot: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/MDB/matchup-by-matchup/matchupID_S0098_I1084_station_Casablanca_Platform-Casablanca_Platform-01083_PACE_OCI_L2_l2gen_OBPG_Bailey_and_Werdell_2006_5x5_Rrs.png
Creating MDB plot: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/MDB/matchup-by-matchup/matchupID_S0098_I1084_station_Casablanca_Platform-Casablanca_Platform-01083_PACE_OCI_L2_l2gen_OBPG_Bailey_and_Werdell_2006_5x5_RGB.png
Creating MDB plot: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/MDB/matchup-by-matchup/matchupID_S0099_I1113_station_Casablanca_Platform-Casablanca_Platform-01112_PACE_OCI_L2_l2gen_OBPG_Bailey_and_Werdell_2006_5x5_Rrs.png
Creating MDB plot: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/MDB/matchup-by-matchup/matchupID_S0099_I1113_station_Casablanca_Platform-Casablanca_Platform-01112_PACE_OCI_L2_l2gen_OBPG_Bailey_and_Werdell_2006_5x5_RGB.png
Creating MDB plot: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/MDB/matchup-by-matchup/matchupID_S0102_I1160_station_Casablanca_Platform-Casablanca_Platform-01159_PACE_OCI_L2_l2gen_OBPG_Bailey_and_Werdell_2006_5x5_Rrs.png
Creating MDB plot: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/MDB/matchup-by-matchup/matchupID_S0102_I1160_station_Casablanca_Platform-Casablanca_Platform-01159_PACE_OCI_L2_l2gen_OBPG_Bailey_and_Werdell_2006_5x5_RGB.png
Creating MDB plot: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/MDB/matchup-by-matchup/matchupID_S0108_I1307_station_Casablanca_Platform-Casablanca_Platform-01306_PACE_OCI_L2_l2gen_OBPG_Bailey_and_Werdell_2006_5x5_Rrs.png
Creating MDB plot: /home/jovyan/oceandata-notebooks/notebooks/hackweek/Casablanca_Platform/MDB/matchup-by-matchup/matchupID_S0108_I1307_station_Casablanca_Platform-Casablanca_Platform-01306_PACE_OCI_L2_l2gen_OBPG_Bailey_and_Werdell_2006_5x5_RGB.png

Run "Casablanca_Platform" finished


ThoMaS finished!

If all went well, in our Casablanca_Platform directory you should now have several folders that contain the outputs from the ThoMaS analysis:

  • SatData contains the full downloaded products

  • SatDataLists contains information on the inventory of downloaded data

  • minifiles contains the extracted minifiles

  • minifilesLists contains information on the inventory of downloaded data

  • EDB, the most important folder, contains the results of the extractions we made from the minifiles.

  • Summary plots of matchups

back to top