├── .coveragerc ├── .github ├── ISSUE_TEMPLATE │ └── compliance-checker-issue-report.md ├── dependabot.yml └── workflows │ ├── cc-plugin-cc6-test.yml │ ├── cc-plugin-glider-test.yml │ ├── cc-plugin-ncei-test.yml │ ├── cc-plugin-og-test.yml │ ├── cc-plugin-sgrid-test.yml │ ├── cc-plugin-ugrid-test.yml │ ├── codecov.yml │ ├── default-tests.yml │ ├── deploy-docs.yml │ ├── integration-tests.yml │ ├── pypi.yml │ └── update-cf-names-table.yml ├── .gitignore ├── .pre-commit-config.yaml ├── LICENSE ├── MANIFEST.in ├── README.md ├── cchecker.py ├── compliance_checker ├── __init__.py ├── acdd.py ├── base.py ├── cf │ ├── __init__.py │ ├── appendix_a.py │ ├── appendix_c.py │ ├── appendix_d.py │ ├── appendix_e.py │ ├── appendix_f.py │ ├── cf.py │ ├── cf_1_10.py │ ├── cf_1_11.py │ ├── cf_1_6.py │ ├── cf_1_7.py │ ├── cf_1_8.py │ ├── cf_1_9.py │ ├── cf_base.py │ └── util.py ├── cfunits.py ├── data │ ├── cf-standard-name-table.xml │ ├── seanames.csv │ └── templates │ │ ├── ccheck.html.j2 │ │ └── ccheck_wrapper.html.j2 ├── ioos.py ├── protocols │ ├── __init__.py │ ├── cdl.py │ ├── erddap.py │ ├── netcdf.py │ ├── opendap.py │ └── zarr.py ├── runner.py ├── suite.py ├── tests │ ├── __init__.py │ ├── cassettes │ │ ├── test_erddap.yaml │ │ └── test_netcdf_content_type.yaml │ ├── conftest.py │ ├── data │ │ ├── 20160919092000-ABOM-L3S_GHRSST-SSTfnd-AVHRR_D-1d_dn_truncate.cdl │ │ ├── 2d-regular-grid.cdl │ │ ├── 2d-static-grid.cdl │ │ ├── 2dim-grid.cdl │ │ ├── 3d-regular-grid.cdl │ │ ├── 3d-static-grid.cdl │ │ ├── NCEI_profile_template_v2.0_2016-09-22_181835.151325.cdl │ │ ├── appendix_h │ │ │ ├── point.cdl │ │ │ ├── timeseries-incomplete.cdl │ │ │ ├── timeseries-non-static.cdl │ │ │ ├── timeseries-orthogonal.cdl │ │ │ └── timeseries-single.cdl │ │ ├── bad-instance.cdl │ │ ├── bad-instance.nc │ │ ├── bad-trajectory.cdl │ │ ├── bad-trajectory.nc │ │ ├── bad_cell_measure1.cdl │ │ ├── bad_cell_measure1.nc │ │ ├── bad_cell_measure2.cdl │ │ ├── bad_cell_measure2.nc │ │ ├── bad_cf_role.cdl │ │ ├── bad_cf_role.nc │ │ ├── bad_data_type.cdl │ │ ├── bad_data_type.nc │ │ ├── bad_missing_data.cdl │ │ ├── bad_missing_data.nc │ │ ├── bad_reference.cdl │ │ ├── bad_reference.nc │ │ ├── bad_region.cdl │ │ ├── bad_region.nc │ │ ├── bad_units.cdl │ │ ├── bad_units.nc │ │ ├── cell_measure.cdl │ │ ├── cf_example_cell_measures.cdl │ │ ├── chap2.cdl │ │ ├── climatology.cdl │ │ ├── cont_ragged.cdl │ │ ├── conv_bad.cdl │ │ ├── conv_multi.cdl │ │ ├── coordinate_types.cdl │ │ ├── coordinates_and_metadata.cdl │ │ ├── dimension_order.cdl │ │ ├── dimensionless.cdl │ │ ├── duplicate_axis.cdl │ │ ├── example-grid.cdl │ │ ├── examples │ │ │ ├── 3mf07.cdl │ │ │ ├── bio_taxa.cdl │ │ │ ├── cf_example_cell_measures.cdl │ │ │ ├── fvcom.cdl │ │ │ ├── glcfs.cdl │ │ │ ├── hycom_global.cdl │ │ │ ├── kibesillah.cdl │ │ │ ├── l01-met.cdl │ │ │ ├── lateral_search_example.nc │ │ │ ├── ocos.cdl │ │ │ ├── ooi_glider.cdl │ │ │ ├── pr_inundation.cdl │ │ │ ├── sldmb_43093_agg.cdl │ │ │ ├── sp041.cdl │ │ │ ├── swan.cdl │ │ │ ├── usgs_dem_saipan.cdl │ │ │ └── ww3.cdl │ │ ├── forecast_reference.cdl │ │ ├── grid-boundaries.cdl │ │ ├── grid_mapping_coordinates.cdl │ │ ├── http_mocks │ │ │ ├── ncsos_describesensor.xml │ │ │ └── ncsos_getcapabilities.xml │ │ ├── illegal-aux-coords.cdl │ │ ├── illegal-vertical.cdl │ │ ├── index_ragged.cdl │ │ ├── index_ragged2.cdl │ │ ├── indexed_ragged_domain.cdl │ │ ├── ints64.cdl │ │ ├── ioos_1_1.cdl │ │ ├── line_geometry.cdl │ │ ├── mapping.cdl │ │ ├── multi-dim-coordinates.cdl │ │ ├── multi-timeseries-incomplete.cdl │ │ ├── multi-timeseries-orthogonal.cdl │ │ ├── ncei_gold_point_1.cdl │ │ ├── ncei_gold_point_2.cdl │ │ ├── non-comp │ │ │ ├── 1d_bound_bad.cdl │ │ │ ├── bad-rhgrid.cdl │ │ │ ├── bad.cdl │ │ │ ├── bad2dim.cdl │ │ │ ├── badname.netcdf │ │ │ ├── bounds_bad_num_coords.cdl │ │ │ ├── bounds_bad_order.cdl │ │ │ ├── empty.file │ │ │ ├── self_referencing.cdl │ │ │ └── time_units.cdl │ │ ├── point.cdl │ │ ├── polygon_geometry.cdl │ │ ├── profile-incomplete.cdl │ │ ├── profile-orthogonal.cdl │ │ ├── reduced_horizontal_grid.cdl │ │ ├── rhgrid.cdl │ │ ├── rotated_pole_grid.cdl │ │ ├── ru07-20130824T170228_rt0.cdl │ │ ├── scalar_coordinate_variable.cdl │ │ ├── self-referencing-var.cdl │ │ ├── string_type_variable.cdl │ │ ├── taxonomy_example.cdl │ │ ├── test_cdl.cdl │ │ ├── test_cdl_nc4_file.cdl │ │ ├── test_cdl_nc_file.cdl │ │ ├── test_cdl_nc_file.nc │ │ ├── timeseries-profile-incomplete.cdl │ │ ├── timeseries-profile-multi-ortho-time.cdl │ │ ├── timeseries-profile-multi-station.cdl │ │ ├── timeseries-profile-ortho-depth.cdl │ │ ├── timeseries-profile-single-ortho-time.cdl │ │ ├── timeseries-profile-single-station.cdl │ │ ├── timeseries.cdl │ │ ├── trajectory-complete.cdl │ │ ├── trajectory-implied.cdl │ │ ├── trajectory-profile-incomplete.cdl │ │ ├── trajectory-profile-orthogonal.cdl │ │ ├── trajectory-single.cdl │ │ ├── trajectory.cdl │ │ ├── trajectory.zarr.zip │ │ ├── trajectory.zarr │ │ │ ├── .zattrs │ │ │ ├── .zgroup │ │ │ ├── .zmetadata │ │ │ ├── lat │ │ │ │ ├── .zarray │ │ │ │ ├── .zattrs │ │ │ │ └── 0.0 │ │ │ ├── lon │ │ │ │ ├── .zarray │ │ │ │ ├── .zattrs │ │ │ │ └── 0.0 │ │ │ ├── temperature │ │ │ │ ├── .zarray │ │ │ │ ├── .zattrs │ │ │ │ └── 0.0.0 │ │ │ ├── time │ │ │ │ ├── .zarray │ │ │ │ ├── .zattrs │ │ │ │ └── 0.0 │ │ │ └── z │ │ │ │ ├── 0 │ │ │ │ ├── .zarray │ │ │ │ └── .zattrs │ │ ├── units_check.cdl │ │ ├── valid_coordinates.cdl │ │ └── vertical_coords.cdl │ ├── helpers.py │ ├── resources.py │ ├── test_acdd.py │ ├── test_base.py │ ├── test_cf.py │ ├── test_cf_integration.py │ ├── test_cli.py │ ├── test_feature_detection.py │ ├── test_ioos_profile.py │ ├── test_ioos_sos.py │ ├── test_protocols.py │ ├── test_suite.py │ └── test_util.py └── util.py ├── docs ├── Makefile ├── cf_feature_parity_matrix.md └── source │ ├── _templates │ ├── autosummary │ │ ├── base.rst │ │ ├── class.rst │ │ └── module.rst │ ├── layout.html │ └── versions.html │ ├── compliance_checker_api.rst │ ├── conf.py │ ├── development.md │ ├── faq.md │ ├── index.rst │ └── readme_link.md ├── pyproject.toml └── test_requirements.txt /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/.coveragerc -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/compliance-checker-issue-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/.github/ISSUE_TEMPLATE/compliance-checker-issue-report.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/cc-plugin-cc6-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/.github/workflows/cc-plugin-cc6-test.yml -------------------------------------------------------------------------------- /.github/workflows/cc-plugin-glider-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/.github/workflows/cc-plugin-glider-test.yml -------------------------------------------------------------------------------- /.github/workflows/cc-plugin-ncei-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/.github/workflows/cc-plugin-ncei-test.yml -------------------------------------------------------------------------------- /.github/workflows/cc-plugin-og-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/.github/workflows/cc-plugin-og-test.yml -------------------------------------------------------------------------------- /.github/workflows/cc-plugin-sgrid-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/.github/workflows/cc-plugin-sgrid-test.yml -------------------------------------------------------------------------------- /.github/workflows/cc-plugin-ugrid-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/.github/workflows/cc-plugin-ugrid-test.yml -------------------------------------------------------------------------------- /.github/workflows/codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/.github/workflows/codecov.yml -------------------------------------------------------------------------------- /.github/workflows/default-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/.github/workflows/default-tests.yml -------------------------------------------------------------------------------- /.github/workflows/deploy-docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/.github/workflows/deploy-docs.yml -------------------------------------------------------------------------------- /.github/workflows/integration-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/.github/workflows/integration-tests.yml -------------------------------------------------------------------------------- /.github/workflows/pypi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/.github/workflows/pypi.yml -------------------------------------------------------------------------------- /.github/workflows/update-cf-names-table.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/.github/workflows/update-cf-names-table.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/README.md -------------------------------------------------------------------------------- /cchecker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/cchecker.py -------------------------------------------------------------------------------- /compliance_checker/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/__init__.py -------------------------------------------------------------------------------- /compliance_checker/acdd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/acdd.py -------------------------------------------------------------------------------- /compliance_checker/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/base.py -------------------------------------------------------------------------------- /compliance_checker/cf/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/cf/__init__.py -------------------------------------------------------------------------------- /compliance_checker/cf/appendix_a.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/cf/appendix_a.py -------------------------------------------------------------------------------- /compliance_checker/cf/appendix_c.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/cf/appendix_c.py -------------------------------------------------------------------------------- /compliance_checker/cf/appendix_d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/cf/appendix_d.py -------------------------------------------------------------------------------- /compliance_checker/cf/appendix_e.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/cf/appendix_e.py -------------------------------------------------------------------------------- /compliance_checker/cf/appendix_f.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/cf/appendix_f.py -------------------------------------------------------------------------------- /compliance_checker/cf/cf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/cf/cf.py -------------------------------------------------------------------------------- /compliance_checker/cf/cf_1_10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/cf/cf_1_10.py -------------------------------------------------------------------------------- /compliance_checker/cf/cf_1_11.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/cf/cf_1_11.py -------------------------------------------------------------------------------- /compliance_checker/cf/cf_1_6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/cf/cf_1_6.py -------------------------------------------------------------------------------- /compliance_checker/cf/cf_1_7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/cf/cf_1_7.py -------------------------------------------------------------------------------- /compliance_checker/cf/cf_1_8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/cf/cf_1_8.py -------------------------------------------------------------------------------- /compliance_checker/cf/cf_1_9.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/cf/cf_1_9.py -------------------------------------------------------------------------------- /compliance_checker/cf/cf_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/cf/cf_base.py -------------------------------------------------------------------------------- /compliance_checker/cf/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/cf/util.py -------------------------------------------------------------------------------- /compliance_checker/cfunits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/cfunits.py -------------------------------------------------------------------------------- /compliance_checker/data/cf-standard-name-table.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/data/cf-standard-name-table.xml -------------------------------------------------------------------------------- /compliance_checker/data/seanames.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/data/seanames.csv -------------------------------------------------------------------------------- /compliance_checker/data/templates/ccheck.html.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/data/templates/ccheck.html.j2 -------------------------------------------------------------------------------- /compliance_checker/data/templates/ccheck_wrapper.html.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/data/templates/ccheck_wrapper.html.j2 -------------------------------------------------------------------------------- /compliance_checker/ioos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/ioos.py -------------------------------------------------------------------------------- /compliance_checker/protocols/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /compliance_checker/protocols/cdl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/protocols/cdl.py -------------------------------------------------------------------------------- /compliance_checker/protocols/erddap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/protocols/erddap.py -------------------------------------------------------------------------------- /compliance_checker/protocols/netcdf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/protocols/netcdf.py -------------------------------------------------------------------------------- /compliance_checker/protocols/opendap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/protocols/opendap.py -------------------------------------------------------------------------------- /compliance_checker/protocols/zarr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/protocols/zarr.py -------------------------------------------------------------------------------- /compliance_checker/runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/runner.py -------------------------------------------------------------------------------- /compliance_checker/suite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/suite.py -------------------------------------------------------------------------------- /compliance_checker/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/tests/__init__.py -------------------------------------------------------------------------------- /compliance_checker/tests/cassettes/test_erddap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/tests/cassettes/test_erddap.yaml -------------------------------------------------------------------------------- /compliance_checker/tests/cassettes/test_netcdf_content_type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/tests/cassettes/test_netcdf_content_type.yaml -------------------------------------------------------------------------------- /compliance_checker/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/tests/conftest.py -------------------------------------------------------------------------------- /compliance_checker/tests/data/20160919092000-ABOM-L3S_GHRSST-SSTfnd-AVHRR_D-1d_dn_truncate.cdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/tests/data/20160919092000-ABOM-L3S_GHRSST-SSTfnd-AVHRR_D-1d_dn_truncate.cdl -------------------------------------------------------------------------------- /compliance_checker/tests/data/2d-regular-grid.cdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/tests/data/2d-regular-grid.cdl -------------------------------------------------------------------------------- /compliance_checker/tests/data/2d-static-grid.cdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/tests/data/2d-static-grid.cdl -------------------------------------------------------------------------------- /compliance_checker/tests/data/2dim-grid.cdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/tests/data/2dim-grid.cdl -------------------------------------------------------------------------------- /compliance_checker/tests/data/3d-regular-grid.cdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/tests/data/3d-regular-grid.cdl -------------------------------------------------------------------------------- /compliance_checker/tests/data/3d-static-grid.cdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/tests/data/3d-static-grid.cdl -------------------------------------------------------------------------------- /compliance_checker/tests/data/NCEI_profile_template_v2.0_2016-09-22_181835.151325.cdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/tests/data/NCEI_profile_template_v2.0_2016-09-22_181835.151325.cdl -------------------------------------------------------------------------------- /compliance_checker/tests/data/appendix_h/point.cdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/tests/data/appendix_h/point.cdl -------------------------------------------------------------------------------- /compliance_checker/tests/data/appendix_h/timeseries-incomplete.cdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/tests/data/appendix_h/timeseries-incomplete.cdl -------------------------------------------------------------------------------- /compliance_checker/tests/data/appendix_h/timeseries-non-static.cdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/tests/data/appendix_h/timeseries-non-static.cdl -------------------------------------------------------------------------------- /compliance_checker/tests/data/appendix_h/timeseries-orthogonal.cdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/tests/data/appendix_h/timeseries-orthogonal.cdl -------------------------------------------------------------------------------- /compliance_checker/tests/data/appendix_h/timeseries-single.cdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/tests/data/appendix_h/timeseries-single.cdl -------------------------------------------------------------------------------- /compliance_checker/tests/data/bad-instance.cdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/tests/data/bad-instance.cdl -------------------------------------------------------------------------------- /compliance_checker/tests/data/bad-instance.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/tests/data/bad-instance.nc -------------------------------------------------------------------------------- /compliance_checker/tests/data/bad-trajectory.cdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/tests/data/bad-trajectory.cdl -------------------------------------------------------------------------------- /compliance_checker/tests/data/bad-trajectory.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/tests/data/bad-trajectory.nc -------------------------------------------------------------------------------- /compliance_checker/tests/data/bad_cell_measure1.cdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/tests/data/bad_cell_measure1.cdl -------------------------------------------------------------------------------- /compliance_checker/tests/data/bad_cell_measure1.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/tests/data/bad_cell_measure1.nc -------------------------------------------------------------------------------- /compliance_checker/tests/data/bad_cell_measure2.cdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/tests/data/bad_cell_measure2.cdl -------------------------------------------------------------------------------- /compliance_checker/tests/data/bad_cell_measure2.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/tests/data/bad_cell_measure2.nc -------------------------------------------------------------------------------- /compliance_checker/tests/data/bad_cf_role.cdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/tests/data/bad_cf_role.cdl -------------------------------------------------------------------------------- /compliance_checker/tests/data/bad_cf_role.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/tests/data/bad_cf_role.nc -------------------------------------------------------------------------------- /compliance_checker/tests/data/bad_data_type.cdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/tests/data/bad_data_type.cdl -------------------------------------------------------------------------------- /compliance_checker/tests/data/bad_data_type.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/tests/data/bad_data_type.nc -------------------------------------------------------------------------------- /compliance_checker/tests/data/bad_missing_data.cdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/tests/data/bad_missing_data.cdl -------------------------------------------------------------------------------- /compliance_checker/tests/data/bad_missing_data.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/tests/data/bad_missing_data.nc -------------------------------------------------------------------------------- /compliance_checker/tests/data/bad_reference.cdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/tests/data/bad_reference.cdl -------------------------------------------------------------------------------- /compliance_checker/tests/data/bad_reference.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/tests/data/bad_reference.nc -------------------------------------------------------------------------------- /compliance_checker/tests/data/bad_region.cdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/tests/data/bad_region.cdl -------------------------------------------------------------------------------- /compliance_checker/tests/data/bad_region.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/tests/data/bad_region.nc -------------------------------------------------------------------------------- /compliance_checker/tests/data/bad_units.cdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/tests/data/bad_units.cdl -------------------------------------------------------------------------------- /compliance_checker/tests/data/bad_units.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/tests/data/bad_units.nc -------------------------------------------------------------------------------- /compliance_checker/tests/data/cell_measure.cdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/tests/data/cell_measure.cdl -------------------------------------------------------------------------------- /compliance_checker/tests/data/cf_example_cell_measures.cdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/tests/data/cf_example_cell_measures.cdl -------------------------------------------------------------------------------- /compliance_checker/tests/data/chap2.cdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/tests/data/chap2.cdl -------------------------------------------------------------------------------- /compliance_checker/tests/data/climatology.cdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/tests/data/climatology.cdl -------------------------------------------------------------------------------- /compliance_checker/tests/data/cont_ragged.cdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/tests/data/cont_ragged.cdl -------------------------------------------------------------------------------- /compliance_checker/tests/data/conv_bad.cdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/tests/data/conv_bad.cdl -------------------------------------------------------------------------------- /compliance_checker/tests/data/conv_multi.cdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/tests/data/conv_multi.cdl -------------------------------------------------------------------------------- /compliance_checker/tests/data/coordinate_types.cdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/tests/data/coordinate_types.cdl -------------------------------------------------------------------------------- /compliance_checker/tests/data/coordinates_and_metadata.cdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/tests/data/coordinates_and_metadata.cdl -------------------------------------------------------------------------------- /compliance_checker/tests/data/dimension_order.cdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/tests/data/dimension_order.cdl -------------------------------------------------------------------------------- /compliance_checker/tests/data/dimensionless.cdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/tests/data/dimensionless.cdl -------------------------------------------------------------------------------- /compliance_checker/tests/data/duplicate_axis.cdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/tests/data/duplicate_axis.cdl -------------------------------------------------------------------------------- /compliance_checker/tests/data/example-grid.cdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/tests/data/example-grid.cdl -------------------------------------------------------------------------------- /compliance_checker/tests/data/examples/3mf07.cdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/tests/data/examples/3mf07.cdl -------------------------------------------------------------------------------- /compliance_checker/tests/data/examples/bio_taxa.cdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/tests/data/examples/bio_taxa.cdl -------------------------------------------------------------------------------- /compliance_checker/tests/data/examples/cf_example_cell_measures.cdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/tests/data/examples/cf_example_cell_measures.cdl -------------------------------------------------------------------------------- /compliance_checker/tests/data/examples/fvcom.cdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/tests/data/examples/fvcom.cdl -------------------------------------------------------------------------------- /compliance_checker/tests/data/examples/glcfs.cdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/tests/data/examples/glcfs.cdl -------------------------------------------------------------------------------- /compliance_checker/tests/data/examples/hycom_global.cdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/tests/data/examples/hycom_global.cdl -------------------------------------------------------------------------------- /compliance_checker/tests/data/examples/kibesillah.cdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/tests/data/examples/kibesillah.cdl -------------------------------------------------------------------------------- /compliance_checker/tests/data/examples/l01-met.cdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/tests/data/examples/l01-met.cdl -------------------------------------------------------------------------------- /compliance_checker/tests/data/examples/lateral_search_example.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/tests/data/examples/lateral_search_example.nc -------------------------------------------------------------------------------- /compliance_checker/tests/data/examples/ocos.cdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/tests/data/examples/ocos.cdl -------------------------------------------------------------------------------- /compliance_checker/tests/data/examples/ooi_glider.cdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/tests/data/examples/ooi_glider.cdl -------------------------------------------------------------------------------- /compliance_checker/tests/data/examples/pr_inundation.cdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/tests/data/examples/pr_inundation.cdl -------------------------------------------------------------------------------- /compliance_checker/tests/data/examples/sldmb_43093_agg.cdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/tests/data/examples/sldmb_43093_agg.cdl -------------------------------------------------------------------------------- /compliance_checker/tests/data/examples/sp041.cdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/tests/data/examples/sp041.cdl -------------------------------------------------------------------------------- /compliance_checker/tests/data/examples/swan.cdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/tests/data/examples/swan.cdl -------------------------------------------------------------------------------- /compliance_checker/tests/data/examples/usgs_dem_saipan.cdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/tests/data/examples/usgs_dem_saipan.cdl -------------------------------------------------------------------------------- /compliance_checker/tests/data/examples/ww3.cdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/tests/data/examples/ww3.cdl -------------------------------------------------------------------------------- /compliance_checker/tests/data/forecast_reference.cdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/tests/data/forecast_reference.cdl -------------------------------------------------------------------------------- /compliance_checker/tests/data/grid-boundaries.cdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/tests/data/grid-boundaries.cdl -------------------------------------------------------------------------------- /compliance_checker/tests/data/grid_mapping_coordinates.cdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/tests/data/grid_mapping_coordinates.cdl -------------------------------------------------------------------------------- /compliance_checker/tests/data/http_mocks/ncsos_describesensor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/tests/data/http_mocks/ncsos_describesensor.xml -------------------------------------------------------------------------------- /compliance_checker/tests/data/http_mocks/ncsos_getcapabilities.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/tests/data/http_mocks/ncsos_getcapabilities.xml -------------------------------------------------------------------------------- /compliance_checker/tests/data/illegal-aux-coords.cdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/tests/data/illegal-aux-coords.cdl -------------------------------------------------------------------------------- /compliance_checker/tests/data/illegal-vertical.cdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/tests/data/illegal-vertical.cdl -------------------------------------------------------------------------------- /compliance_checker/tests/data/index_ragged.cdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/tests/data/index_ragged.cdl -------------------------------------------------------------------------------- /compliance_checker/tests/data/index_ragged2.cdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/tests/data/index_ragged2.cdl -------------------------------------------------------------------------------- /compliance_checker/tests/data/indexed_ragged_domain.cdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/tests/data/indexed_ragged_domain.cdl -------------------------------------------------------------------------------- /compliance_checker/tests/data/ints64.cdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/tests/data/ints64.cdl -------------------------------------------------------------------------------- /compliance_checker/tests/data/ioos_1_1.cdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/tests/data/ioos_1_1.cdl -------------------------------------------------------------------------------- /compliance_checker/tests/data/line_geometry.cdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/tests/data/line_geometry.cdl -------------------------------------------------------------------------------- /compliance_checker/tests/data/mapping.cdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/tests/data/mapping.cdl -------------------------------------------------------------------------------- /compliance_checker/tests/data/multi-dim-coordinates.cdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/tests/data/multi-dim-coordinates.cdl -------------------------------------------------------------------------------- /compliance_checker/tests/data/multi-timeseries-incomplete.cdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/tests/data/multi-timeseries-incomplete.cdl -------------------------------------------------------------------------------- /compliance_checker/tests/data/multi-timeseries-orthogonal.cdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/tests/data/multi-timeseries-orthogonal.cdl -------------------------------------------------------------------------------- /compliance_checker/tests/data/ncei_gold_point_1.cdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/tests/data/ncei_gold_point_1.cdl -------------------------------------------------------------------------------- /compliance_checker/tests/data/ncei_gold_point_2.cdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/tests/data/ncei_gold_point_2.cdl -------------------------------------------------------------------------------- /compliance_checker/tests/data/non-comp/1d_bound_bad.cdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/tests/data/non-comp/1d_bound_bad.cdl -------------------------------------------------------------------------------- /compliance_checker/tests/data/non-comp/bad-rhgrid.cdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/tests/data/non-comp/bad-rhgrid.cdl -------------------------------------------------------------------------------- /compliance_checker/tests/data/non-comp/bad.cdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/tests/data/non-comp/bad.cdl -------------------------------------------------------------------------------- /compliance_checker/tests/data/non-comp/bad2dim.cdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/tests/data/non-comp/bad2dim.cdl -------------------------------------------------------------------------------- /compliance_checker/tests/data/non-comp/badname.netcdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/tests/data/non-comp/badname.netcdf -------------------------------------------------------------------------------- /compliance_checker/tests/data/non-comp/bounds_bad_num_coords.cdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/tests/data/non-comp/bounds_bad_num_coords.cdl -------------------------------------------------------------------------------- /compliance_checker/tests/data/non-comp/bounds_bad_order.cdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/tests/data/non-comp/bounds_bad_order.cdl -------------------------------------------------------------------------------- /compliance_checker/tests/data/non-comp/empty.file: -------------------------------------------------------------------------------- 1 | 123 2 | -------------------------------------------------------------------------------- /compliance_checker/tests/data/non-comp/self_referencing.cdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/tests/data/non-comp/self_referencing.cdl -------------------------------------------------------------------------------- /compliance_checker/tests/data/non-comp/time_units.cdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/tests/data/non-comp/time_units.cdl -------------------------------------------------------------------------------- /compliance_checker/tests/data/point.cdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/tests/data/point.cdl -------------------------------------------------------------------------------- /compliance_checker/tests/data/polygon_geometry.cdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/tests/data/polygon_geometry.cdl -------------------------------------------------------------------------------- /compliance_checker/tests/data/profile-incomplete.cdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/tests/data/profile-incomplete.cdl -------------------------------------------------------------------------------- /compliance_checker/tests/data/profile-orthogonal.cdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/tests/data/profile-orthogonal.cdl -------------------------------------------------------------------------------- /compliance_checker/tests/data/reduced_horizontal_grid.cdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/tests/data/reduced_horizontal_grid.cdl -------------------------------------------------------------------------------- /compliance_checker/tests/data/rhgrid.cdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/tests/data/rhgrid.cdl -------------------------------------------------------------------------------- /compliance_checker/tests/data/rotated_pole_grid.cdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/tests/data/rotated_pole_grid.cdl -------------------------------------------------------------------------------- /compliance_checker/tests/data/ru07-20130824T170228_rt0.cdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/tests/data/ru07-20130824T170228_rt0.cdl -------------------------------------------------------------------------------- /compliance_checker/tests/data/scalar_coordinate_variable.cdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/tests/data/scalar_coordinate_variable.cdl -------------------------------------------------------------------------------- /compliance_checker/tests/data/self-referencing-var.cdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/tests/data/self-referencing-var.cdl -------------------------------------------------------------------------------- /compliance_checker/tests/data/string_type_variable.cdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/tests/data/string_type_variable.cdl -------------------------------------------------------------------------------- /compliance_checker/tests/data/taxonomy_example.cdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/tests/data/taxonomy_example.cdl -------------------------------------------------------------------------------- /compliance_checker/tests/data/test_cdl.cdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/tests/data/test_cdl.cdl -------------------------------------------------------------------------------- /compliance_checker/tests/data/test_cdl_nc4_file.cdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/tests/data/test_cdl_nc4_file.cdl -------------------------------------------------------------------------------- /compliance_checker/tests/data/test_cdl_nc_file.cdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/tests/data/test_cdl_nc_file.cdl -------------------------------------------------------------------------------- /compliance_checker/tests/data/test_cdl_nc_file.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/tests/data/test_cdl_nc_file.nc -------------------------------------------------------------------------------- /compliance_checker/tests/data/timeseries-profile-incomplete.cdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/tests/data/timeseries-profile-incomplete.cdl -------------------------------------------------------------------------------- /compliance_checker/tests/data/timeseries-profile-multi-ortho-time.cdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/tests/data/timeseries-profile-multi-ortho-time.cdl -------------------------------------------------------------------------------- /compliance_checker/tests/data/timeseries-profile-multi-station.cdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/tests/data/timeseries-profile-multi-station.cdl -------------------------------------------------------------------------------- /compliance_checker/tests/data/timeseries-profile-ortho-depth.cdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/tests/data/timeseries-profile-ortho-depth.cdl -------------------------------------------------------------------------------- /compliance_checker/tests/data/timeseries-profile-single-ortho-time.cdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/tests/data/timeseries-profile-single-ortho-time.cdl -------------------------------------------------------------------------------- /compliance_checker/tests/data/timeseries-profile-single-station.cdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/tests/data/timeseries-profile-single-station.cdl -------------------------------------------------------------------------------- /compliance_checker/tests/data/timeseries.cdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/tests/data/timeseries.cdl -------------------------------------------------------------------------------- /compliance_checker/tests/data/trajectory-complete.cdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/tests/data/trajectory-complete.cdl -------------------------------------------------------------------------------- /compliance_checker/tests/data/trajectory-implied.cdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/tests/data/trajectory-implied.cdl -------------------------------------------------------------------------------- /compliance_checker/tests/data/trajectory-profile-incomplete.cdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/tests/data/trajectory-profile-incomplete.cdl -------------------------------------------------------------------------------- /compliance_checker/tests/data/trajectory-profile-orthogonal.cdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/tests/data/trajectory-profile-orthogonal.cdl -------------------------------------------------------------------------------- /compliance_checker/tests/data/trajectory-single.cdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/tests/data/trajectory-single.cdl -------------------------------------------------------------------------------- /compliance_checker/tests/data/trajectory.cdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/tests/data/trajectory.cdl -------------------------------------------------------------------------------- /compliance_checker/tests/data/trajectory.zarr.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/tests/data/trajectory.zarr.zip -------------------------------------------------------------------------------- /compliance_checker/tests/data/trajectory.zarr/.zattrs: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /compliance_checker/tests/data/trajectory.zarr/.zgroup: -------------------------------------------------------------------------------- 1 | { 2 | "zarr_format": 2 3 | } -------------------------------------------------------------------------------- /compliance_checker/tests/data/trajectory.zarr/.zmetadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/tests/data/trajectory.zarr/.zmetadata -------------------------------------------------------------------------------- /compliance_checker/tests/data/trajectory.zarr/lat/.zarray: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/tests/data/trajectory.zarr/lat/.zarray -------------------------------------------------------------------------------- /compliance_checker/tests/data/trajectory.zarr/lat/.zattrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/tests/data/trajectory.zarr/lat/.zattrs -------------------------------------------------------------------------------- /compliance_checker/tests/data/trajectory.zarr/lat/0.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/tests/data/trajectory.zarr/lat/0.0 -------------------------------------------------------------------------------- /compliance_checker/tests/data/trajectory.zarr/lon/.zarray: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/tests/data/trajectory.zarr/lon/.zarray -------------------------------------------------------------------------------- /compliance_checker/tests/data/trajectory.zarr/lon/.zattrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/tests/data/trajectory.zarr/lon/.zattrs -------------------------------------------------------------------------------- /compliance_checker/tests/data/trajectory.zarr/lon/0.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/tests/data/trajectory.zarr/lon/0.0 -------------------------------------------------------------------------------- /compliance_checker/tests/data/trajectory.zarr/temperature/.zarray: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/tests/data/trajectory.zarr/temperature/.zarray -------------------------------------------------------------------------------- /compliance_checker/tests/data/trajectory.zarr/temperature/.zattrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/tests/data/trajectory.zarr/temperature/.zattrs -------------------------------------------------------------------------------- /compliance_checker/tests/data/trajectory.zarr/temperature/0.0.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/tests/data/trajectory.zarr/temperature/0.0.0 -------------------------------------------------------------------------------- /compliance_checker/tests/data/trajectory.zarr/time/.zarray: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/tests/data/trajectory.zarr/time/.zarray -------------------------------------------------------------------------------- /compliance_checker/tests/data/trajectory.zarr/time/.zattrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/tests/data/trajectory.zarr/time/.zattrs -------------------------------------------------------------------------------- /compliance_checker/tests/data/trajectory.zarr/time/0.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/tests/data/trajectory.zarr/time/0.0 -------------------------------------------------------------------------------- /compliance_checker/tests/data/trajectory.zarr/z/.zarray: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/tests/data/trajectory.zarr/z/.zarray -------------------------------------------------------------------------------- /compliance_checker/tests/data/trajectory.zarr/z/.zattrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/tests/data/trajectory.zarr/z/.zattrs -------------------------------------------------------------------------------- /compliance_checker/tests/data/trajectory.zarr/z/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/tests/data/trajectory.zarr/z/0 -------------------------------------------------------------------------------- /compliance_checker/tests/data/units_check.cdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/tests/data/units_check.cdl -------------------------------------------------------------------------------- /compliance_checker/tests/data/valid_coordinates.cdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/tests/data/valid_coordinates.cdl -------------------------------------------------------------------------------- /compliance_checker/tests/data/vertical_coords.cdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/tests/data/vertical_coords.cdl -------------------------------------------------------------------------------- /compliance_checker/tests/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/tests/helpers.py -------------------------------------------------------------------------------- /compliance_checker/tests/resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/tests/resources.py -------------------------------------------------------------------------------- /compliance_checker/tests/test_acdd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/tests/test_acdd.py -------------------------------------------------------------------------------- /compliance_checker/tests/test_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/tests/test_base.py -------------------------------------------------------------------------------- /compliance_checker/tests/test_cf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/tests/test_cf.py -------------------------------------------------------------------------------- /compliance_checker/tests/test_cf_integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/tests/test_cf_integration.py -------------------------------------------------------------------------------- /compliance_checker/tests/test_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/tests/test_cli.py -------------------------------------------------------------------------------- /compliance_checker/tests/test_feature_detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/tests/test_feature_detection.py -------------------------------------------------------------------------------- /compliance_checker/tests/test_ioos_profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/tests/test_ioos_profile.py -------------------------------------------------------------------------------- /compliance_checker/tests/test_ioos_sos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/tests/test_ioos_sos.py -------------------------------------------------------------------------------- /compliance_checker/tests/test_protocols.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/tests/test_protocols.py -------------------------------------------------------------------------------- /compliance_checker/tests/test_suite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/tests/test_suite.py -------------------------------------------------------------------------------- /compliance_checker/tests/test_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/tests/test_util.py -------------------------------------------------------------------------------- /compliance_checker/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/compliance_checker/util.py -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/cf_feature_parity_matrix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/docs/cf_feature_parity_matrix.md -------------------------------------------------------------------------------- /docs/source/_templates/autosummary/base.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/docs/source/_templates/autosummary/base.rst -------------------------------------------------------------------------------- /docs/source/_templates/autosummary/class.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/docs/source/_templates/autosummary/class.rst -------------------------------------------------------------------------------- /docs/source/_templates/autosummary/module.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/docs/source/_templates/autosummary/module.rst -------------------------------------------------------------------------------- /docs/source/_templates/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/docs/source/_templates/layout.html -------------------------------------------------------------------------------- /docs/source/_templates/versions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/docs/source/_templates/versions.html -------------------------------------------------------------------------------- /docs/source/compliance_checker_api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/docs/source/compliance_checker_api.rst -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/development.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/docs/source/development.md -------------------------------------------------------------------------------- /docs/source/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/docs/source/faq.md -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /docs/source/readme_link.md: -------------------------------------------------------------------------------- 1 | ```{include} ../../README.md 2 | ``` 3 | -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/pyproject.toml -------------------------------------------------------------------------------- /test_requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/compliance-checker/HEAD/test_requirements.txt --------------------------------------------------------------------------------