gitextract_g6quolyo/ ├── .ci-coveragerc ├── .coveragerc ├── .gitattributes ├── .github/ │ └── workflows/ │ ├── main.yaml │ ├── pre-commit.yml │ └── pypipublish.yaml ├── .gitignore ├── .pre-commit-config.yaml ├── LICENSE ├── MANIFEST.in ├── README.md ├── README_refactor.md ├── docs/ │ ├── Makefile │ ├── README.md │ ├── environment.yml │ ├── make.bat │ ├── make_api.py │ ├── plugins.py │ ├── plugins.yaml │ ├── requirements.txt │ └── source/ │ ├── _static/ │ │ ├── .keep │ │ ├── css/ │ │ │ └── custom.css │ │ └── images/ │ │ └── plotting_example.html │ ├── api.rst │ ├── api2.rst │ ├── api_base.rst │ ├── api_other.rst │ ├── api_user.rst │ ├── catalog.rst │ ├── changelog.rst │ ├── code-of-conduct.rst │ ├── community.rst │ ├── conf.py │ ├── contributing.rst │ ├── data-packages.rst │ ├── deployments.rst │ ├── examples.rst │ ├── glossary.rst │ ├── gui.rst │ ├── guide.rst │ ├── index.rst │ ├── index_v1.rst │ ├── making-plugins.rst │ ├── overview.rst │ ├── persisting.rst │ ├── plotting.rst │ ├── plugin-directory.rst │ ├── quickstart.rst │ ├── reference.rst │ ├── roadmap.rst │ ├── scope2.rst │ ├── start.rst │ ├── tools.rst │ ├── tour2.rst │ ├── transforms.rst │ ├── use_cases.rst │ ├── user2.rst │ └── walkthrough2.rst ├── examples/ │ └── Take2.ipynb ├── intake/ │ ├── __init__.py │ ├── catalog/ │ │ ├── __init__.py │ │ ├── base.py │ │ ├── default.py │ │ ├── entry.py │ │ ├── exceptions.py │ │ ├── gui.py │ │ ├── local.py │ │ ├── tests/ │ │ │ ├── __init__.py │ │ │ ├── cache_data/ │ │ │ │ └── states.csv │ │ │ ├── catalog.yml │ │ │ ├── catalog1.yml │ │ │ ├── catalog_alias.yml │ │ │ ├── catalog_caching.yml │ │ │ ├── catalog_dup_parameters.yml │ │ │ ├── catalog_dup_sources.yml │ │ │ ├── catalog_hierarchy.yml │ │ │ ├── catalog_named.yml │ │ │ ├── catalog_non_dict.yml │ │ │ ├── catalog_search/ │ │ │ │ ├── example_packages/ │ │ │ │ │ ├── ep/ │ │ │ │ │ │ └── __init__.py │ │ │ │ │ └── ep-0.1.dist-info/ │ │ │ │ │ └── entry_points.txt │ │ │ │ └── yaml.yml │ │ │ ├── catalog_union_1.yml │ │ │ ├── catalog_union_2.yml │ │ │ ├── conftest.py │ │ │ ├── data_source_missing.yml │ │ │ ├── data_source_name_non_string.yml │ │ │ ├── data_source_non_dict.yml │ │ │ ├── data_source_value_non_dict.yml │ │ │ ├── dot-nest.yaml │ │ │ ├── entry1_1.csv │ │ │ ├── entry1_2.csv │ │ │ ├── example1_source.py │ │ │ ├── example_plugin_dir/ │ │ │ │ └── example2_source.py │ │ │ ├── multi_plugins.yaml │ │ │ ├── multi_plugins2.yaml │ │ │ ├── obsolete_data_source_list.yml │ │ │ ├── obsolete_params_list.yml │ │ │ ├── params_missing_required.yml │ │ │ ├── params_name_non_string.yml │ │ │ ├── params_non_dict.yml │ │ │ ├── params_value_bad_choice.yml │ │ │ ├── params_value_bad_type.yml │ │ │ ├── params_value_non_dict.yml │ │ │ ├── plugins_non_dict.yml │ │ │ ├── plugins_source_missing.yml │ │ │ ├── plugins_source_missing_key.yml │ │ │ ├── plugins_source_non_dict.yml │ │ │ ├── plugins_source_non_list.yml │ │ │ ├── plugins_source_non_string.yml │ │ │ ├── small.npy │ │ │ ├── test_alias.py │ │ │ ├── test_catalog_save.py │ │ │ ├── test_core.py │ │ │ ├── test_default.py │ │ │ ├── test_discovery.py │ │ │ ├── test_gui.py │ │ │ ├── test_local.py │ │ │ ├── test_parameters.py │ │ │ ├── test_reload_integration.py │ │ │ ├── test_utils.py │ │ │ ├── test_zarr.py │ │ │ └── util.py │ │ ├── utils.py │ │ └── zarr.py │ ├── config.py │ ├── conftest.py │ ├── container/ │ │ ├── __init__.py │ │ └── base.py │ ├── interface/ │ │ ├── __init__.py │ │ ├── base.py │ │ ├── catalog/ │ │ │ ├── __init__.py │ │ │ ├── add.py │ │ │ └── search.py │ │ ├── gui.py │ │ └── source/ │ │ ├── __init__.py │ │ └── defined_plots.py │ ├── readers/ │ │ ├── __init__.py │ │ ├── catalogs.py │ │ ├── convert.py │ │ ├── datatypes.py │ │ ├── entry.py │ │ ├── examples.py │ │ ├── importlist.py │ │ ├── metadata.py │ │ ├── mixins.py │ │ ├── namespaces.py │ │ ├── output.py │ │ ├── readers.py │ │ ├── search.py │ │ ├── tests/ │ │ │ ├── __init__.py │ │ │ ├── cats/ │ │ │ │ ├── __init__.py │ │ │ │ ├── stac_data/ │ │ │ │ │ ├── 1.0.0/ │ │ │ │ │ │ ├── catalog/ │ │ │ │ │ │ │ ├── catalog.json │ │ │ │ │ │ │ └── child-catalog.json │ │ │ │ │ │ ├── collection/ │ │ │ │ │ │ │ ├── collection.json │ │ │ │ │ │ │ ├── simple-item.json │ │ │ │ │ │ │ └── zarr-collection.json │ │ │ │ │ │ ├── item/ │ │ │ │ │ │ │ └── zarr-item.json │ │ │ │ │ │ └── itemcollection/ │ │ │ │ │ │ └── example-search.json │ │ │ │ │ └── 1.0.0beta2/ │ │ │ │ │ └── earthsearch/ │ │ │ │ │ ├── readme.md │ │ │ │ │ └── single-file-stac.json │ │ │ │ ├── test_sql.py │ │ │ │ ├── test_stac.py │ │ │ │ ├── test_thredds.py │ │ │ │ └── test_tiled.py │ │ │ ├── test_basic.py │ │ │ ├── test_consistency.py │ │ │ ├── test_dict.py │ │ │ ├── test_errors.py │ │ │ ├── test_reader.py │ │ │ ├── test_search.py │ │ │ ├── test_up.py │ │ │ ├── test_utils.py │ │ │ └── test_workflows.py │ │ ├── transform.py │ │ ├── user_parameters.py │ │ └── utils.py │ ├── source/ │ │ ├── __init__.py │ │ ├── base.py │ │ ├── csv.py │ │ ├── derived.py │ │ ├── discovery.py │ │ ├── jsonfiles.py │ │ ├── npy.py │ │ ├── tests/ │ │ │ ├── __init__.py │ │ │ ├── alias.yaml │ │ │ ├── cached.yaml │ │ │ ├── data.zarr/ │ │ │ │ ├── .zarray │ │ │ │ └── 0 │ │ │ ├── der.yaml │ │ │ ├── footer_csvs/ │ │ │ │ ├── sample_fewfooters.csv │ │ │ │ ├── sample_manyfooters.csv │ │ │ │ └── sample_nofooters.csv │ │ │ ├── pipeline.yaml │ │ │ ├── plugin_searchpath/ │ │ │ │ ├── collision_foo/ │ │ │ │ │ └── __init__.py │ │ │ │ ├── collision_foo2/ │ │ │ │ │ └── __init__.py │ │ │ │ ├── driver_with_entrypoints/ │ │ │ │ │ └── __init__.py │ │ │ │ ├── driver_with_entrypoints-0.1.dist-info/ │ │ │ │ │ └── entry_points.txt │ │ │ │ ├── intake_foo/ │ │ │ │ │ └── __init__.py │ │ │ │ └── not_intake_foo/ │ │ │ │ └── __init__.py │ │ │ ├── sample1.csv │ │ │ ├── sample2_1.csv │ │ │ ├── sample2_2.csv │ │ │ ├── sample3_2.csv │ │ │ ├── sources.yaml │ │ │ ├── test_base.py │ │ │ ├── test_csv.py │ │ │ ├── test_derived.py │ │ │ ├── test_discovery.py │ │ │ ├── test_json.py │ │ │ ├── test_npy.py │ │ │ ├── test_text.py │ │ │ ├── test_tiled.py │ │ │ ├── test_utils.py │ │ │ └── util.py │ │ ├── textfiles.py │ │ ├── tiled.py │ │ ├── utils.py │ │ └── zarr.py │ ├── tests/ │ │ ├── __init__.py │ │ ├── catalog1.yml │ │ ├── catalog2.yml │ │ ├── catalog_inherit_params.yml │ │ ├── catalog_nested.yml │ │ ├── catalog_nested_sub.yml │ │ ├── test_config.py │ │ ├── test_top_level.py │ │ └── test_utils.py │ ├── util_tests.py │ └── utils.py ├── pyproject.toml ├── readthedocs.yml └── scripts/ └── ci/ ├── environment-pip.yml ├── environment-py310.yml ├── environment-py311.yml ├── environment-py312.yml ├── environment-py313.yml └── environment-py314.yml