├── .binder ├── overrides.json ├── postBuild ├── requirements.txt └── runtime.txt ├── .circleci └── config.yml ├── .github ├── dependabot.yml └── workflows │ ├── ci_devtests.yml │ ├── ci_tests_and_publish.yml │ └── circleci-artifacts-redirector.yml ├── .gitignore ├── 00_SETUP.md ├── KNOWN_ISSUES.md ├── LICENSE ├── README.md ├── _static ├── README ├── jupytext_rightclick.png └── jupytext_settings.png ├── check_env.py ├── conf.py ├── content ├── reference_notebooks │ ├── basic_reference.md │ ├── catalog_queries.md │ ├── data │ │ └── my_sources.xml │ ├── image_access.md │ ├── spectral_access.md │ ├── ucds_unified_content_descriptors.md │ └── votables.md └── use_case_notebooks │ ├── candidate_list_exercise.md │ ├── candidate_list_solution.md │ ├── hr_diagram_exercise.md │ ├── hr_diagram_solution.md │ ├── proposal_prep_exercise.md │ └── proposal_prep_solution.md ├── doc-requirements.txt ├── environment.yml ├── ignore_testing ├── index.md └── tox.ini /.binder/overrides.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NASA-NAVO/navo-workshop/HEAD/.binder/overrides.json -------------------------------------------------------------------------------- /.binder/postBuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NASA-NAVO/navo-workshop/HEAD/.binder/postBuild -------------------------------------------------------------------------------- /.binder/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NASA-NAVO/navo-workshop/HEAD/.binder/requirements.txt -------------------------------------------------------------------------------- /.binder/runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.10 2 | -------------------------------------------------------------------------------- /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NASA-NAVO/navo-workshop/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NASA-NAVO/navo-workshop/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci_devtests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NASA-NAVO/navo-workshop/HEAD/.github/workflows/ci_devtests.yml -------------------------------------------------------------------------------- /.github/workflows/ci_tests_and_publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NASA-NAVO/navo-workshop/HEAD/.github/workflows/ci_tests_and_publish.yml -------------------------------------------------------------------------------- /.github/workflows/circleci-artifacts-redirector.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NASA-NAVO/navo-workshop/HEAD/.github/workflows/circleci-artifacts-redirector.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NASA-NAVO/navo-workshop/HEAD/.gitignore -------------------------------------------------------------------------------- /00_SETUP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NASA-NAVO/navo-workshop/HEAD/00_SETUP.md -------------------------------------------------------------------------------- /KNOWN_ISSUES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NASA-NAVO/navo-workshop/HEAD/KNOWN_ISSUES.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NASA-NAVO/navo-workshop/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NASA-NAVO/navo-workshop/HEAD/README.md -------------------------------------------------------------------------------- /_static/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NASA-NAVO/navo-workshop/HEAD/_static/README -------------------------------------------------------------------------------- /_static/jupytext_rightclick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NASA-NAVO/navo-workshop/HEAD/_static/jupytext_rightclick.png -------------------------------------------------------------------------------- /_static/jupytext_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NASA-NAVO/navo-workshop/HEAD/_static/jupytext_settings.png -------------------------------------------------------------------------------- /check_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NASA-NAVO/navo-workshop/HEAD/check_env.py -------------------------------------------------------------------------------- /conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NASA-NAVO/navo-workshop/HEAD/conf.py -------------------------------------------------------------------------------- /content/reference_notebooks/basic_reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NASA-NAVO/navo-workshop/HEAD/content/reference_notebooks/basic_reference.md -------------------------------------------------------------------------------- /content/reference_notebooks/catalog_queries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NASA-NAVO/navo-workshop/HEAD/content/reference_notebooks/catalog_queries.md -------------------------------------------------------------------------------- /content/reference_notebooks/data/my_sources.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NASA-NAVO/navo-workshop/HEAD/content/reference_notebooks/data/my_sources.xml -------------------------------------------------------------------------------- /content/reference_notebooks/image_access.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NASA-NAVO/navo-workshop/HEAD/content/reference_notebooks/image_access.md -------------------------------------------------------------------------------- /content/reference_notebooks/spectral_access.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NASA-NAVO/navo-workshop/HEAD/content/reference_notebooks/spectral_access.md -------------------------------------------------------------------------------- /content/reference_notebooks/ucds_unified_content_descriptors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NASA-NAVO/navo-workshop/HEAD/content/reference_notebooks/ucds_unified_content_descriptors.md -------------------------------------------------------------------------------- /content/reference_notebooks/votables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NASA-NAVO/navo-workshop/HEAD/content/reference_notebooks/votables.md -------------------------------------------------------------------------------- /content/use_case_notebooks/candidate_list_exercise.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NASA-NAVO/navo-workshop/HEAD/content/use_case_notebooks/candidate_list_exercise.md -------------------------------------------------------------------------------- /content/use_case_notebooks/candidate_list_solution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NASA-NAVO/navo-workshop/HEAD/content/use_case_notebooks/candidate_list_solution.md -------------------------------------------------------------------------------- /content/use_case_notebooks/hr_diagram_exercise.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NASA-NAVO/navo-workshop/HEAD/content/use_case_notebooks/hr_diagram_exercise.md -------------------------------------------------------------------------------- /content/use_case_notebooks/hr_diagram_solution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NASA-NAVO/navo-workshop/HEAD/content/use_case_notebooks/hr_diagram_solution.md -------------------------------------------------------------------------------- /content/use_case_notebooks/proposal_prep_exercise.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NASA-NAVO/navo-workshop/HEAD/content/use_case_notebooks/proposal_prep_exercise.md -------------------------------------------------------------------------------- /content/use_case_notebooks/proposal_prep_solution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NASA-NAVO/navo-workshop/HEAD/content/use_case_notebooks/proposal_prep_solution.md -------------------------------------------------------------------------------- /doc-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NASA-NAVO/navo-workshop/HEAD/doc-requirements.txt -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NASA-NAVO/navo-workshop/HEAD/environment.yml -------------------------------------------------------------------------------- /ignore_testing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NASA-NAVO/navo-workshop/HEAD/ignore_testing -------------------------------------------------------------------------------- /index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NASA-NAVO/navo-workshop/HEAD/index.md -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NASA-NAVO/navo-workshop/HEAD/tox.ini --------------------------------------------------------------------------------