├── .circleci └── config.yml ├── .github └── workflows │ └── workflow.yml ├── .gitignore ├── .readthedocs.yml ├── LICENSE ├── README.rst ├── ccsds_ndm ├── __init__.py ├── models │ ├── __init__.py │ └── ndmxml2 │ │ ├── __init__.py │ │ ├── ndmxml_2_0_0_aem_1_0.py │ │ ├── ndmxml_2_0_0_apm_1_0.py │ │ ├── ndmxml_2_0_0_cdm_1_0.py │ │ ├── ndmxml_2_0_0_common_2_0.py │ │ ├── ndmxml_2_0_0_master_2_0.py │ │ ├── ndmxml_2_0_0_ndm_2_0.py │ │ ├── ndmxml_2_0_0_oem_2_0.py │ │ ├── ndmxml_2_0_0_omm_2_0.py │ │ ├── ndmxml_2_0_0_opm_2_0.py │ │ ├── ndmxml_2_0_0_rdm_1_0.py │ │ └── ndmxml_2_0_0_tdm_2_0.py ├── ndm_io.py ├── ndm_kvn_io.py ├── ndm_xml_io.py └── tests │ ├── __init__.py │ ├── data │ ├── json │ │ ├── omm1_ct.json │ │ ├── omm1_ct.xml │ │ ├── omm1_st.json │ │ └── omm1_st.xml │ ├── kvn │ │ ├── 502x0b2c1e2_fig3_2_opm.kvn │ │ ├── 502x0b2c1e2_fig3_2_opm.xml │ │ ├── 502x0b2c1e2_fig3_4_opm.kvn │ │ ├── 502x0b2c1e2_fig3_4_opm.xml │ │ ├── 504x0b1c1_fig3_6_apm.kvn │ │ ├── 504x0b1c1_fig3_6_apm.xml │ │ ├── 504x0b1c1_fig3_8_apm.kvn │ │ ├── 504x0b1c1_fig3_8_apm.xml │ │ ├── 508x1b1_figc_2_rdm.kvn │ │ ├── 508x1b1_figc_2_rdm.xml │ │ ├── adm-testcase04a_abbrev.kvn │ │ ├── adm-testcase04a_abbrev.xml │ │ ├── adm-testcase04a_multi.kvn │ │ ├── adm-testcase04a_multi.xml │ │ ├── cdm_example_section4.kvn │ │ ├── cdm_example_section4.xml │ │ ├── odmv2-testcase6_abbrev.kvn │ │ ├── odmv2-testcase6_abbrev.xml │ │ ├── odmv2-testcase7a_xxx.kvn │ │ ├── odmv2-testcase7a_xxx.xml │ │ ├── omm1_ct.kvn │ │ ├── omm1_ct.xml │ │ ├── omm1_st.kvn │ │ ├── omm1_st.xml │ │ ├── tdm-testcase01b.kvn │ │ ├── tdm-testcase01b.xml │ │ └── tdm_opt_data.kvn │ └── xml │ │ ├── NDMXML-P1.0.1-figure-B-2.xml │ │ ├── NDMXML-P1.0.1-figure-B-3.xml │ │ ├── cdm_example_section4.xml │ │ ├── ndmxml-1.0-odm.xml │ │ ├── ndmxml-1.0-oem-2.0-single.xml │ │ ├── ndmxml-1.0-omm-2.0.xml │ │ ├── omm_combined.xml │ │ ├── omm_single_ndm.xml │ │ ├── tdm-testcase01a-fordocument.xml │ │ └── write_test.xml │ ├── test_ndm_io.py │ ├── test_ndm_kvn_io.py │ └── test_ndm_xml_io.py ├── codecov.yml ├── docs ├── Makefile ├── changelog.rst ├── conf.py ├── index.rst ├── make.bat ├── more_info.rst ├── ndmclasses.rst ├── ndmclasses2 │ ├── aem.rst │ ├── apm.rst │ ├── cdm.rst │ ├── master.rst │ ├── navwg_common.rst │ ├── ndm.rst │ ├── oem.rst │ ├── omm.rst │ ├── opm.rst │ ├── rdm.rst │ └── tdm.rst └── ndmio.rst ├── pyproject.toml ├── requirements.txt ├── setup.cfg └── tox.ini /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egemenimre/ccsds-ndm/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.github/workflows/workflow.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egemenimre/ccsds-ndm/HEAD/.github/workflows/workflow.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egemenimre/ccsds-ndm/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egemenimre/ccsds-ndm/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egemenimre/ccsds-ndm/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egemenimre/ccsds-ndm/HEAD/README.rst -------------------------------------------------------------------------------- /ccsds_ndm/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egemenimre/ccsds-ndm/HEAD/ccsds_ndm/__init__.py -------------------------------------------------------------------------------- /ccsds_ndm/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ccsds_ndm/models/ndmxml2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egemenimre/ccsds-ndm/HEAD/ccsds_ndm/models/ndmxml2/__init__.py -------------------------------------------------------------------------------- /ccsds_ndm/models/ndmxml2/ndmxml_2_0_0_aem_1_0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egemenimre/ccsds-ndm/HEAD/ccsds_ndm/models/ndmxml2/ndmxml_2_0_0_aem_1_0.py -------------------------------------------------------------------------------- /ccsds_ndm/models/ndmxml2/ndmxml_2_0_0_apm_1_0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egemenimre/ccsds-ndm/HEAD/ccsds_ndm/models/ndmxml2/ndmxml_2_0_0_apm_1_0.py -------------------------------------------------------------------------------- /ccsds_ndm/models/ndmxml2/ndmxml_2_0_0_cdm_1_0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egemenimre/ccsds-ndm/HEAD/ccsds_ndm/models/ndmxml2/ndmxml_2_0_0_cdm_1_0.py -------------------------------------------------------------------------------- /ccsds_ndm/models/ndmxml2/ndmxml_2_0_0_common_2_0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egemenimre/ccsds-ndm/HEAD/ccsds_ndm/models/ndmxml2/ndmxml_2_0_0_common_2_0.py -------------------------------------------------------------------------------- /ccsds_ndm/models/ndmxml2/ndmxml_2_0_0_master_2_0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egemenimre/ccsds-ndm/HEAD/ccsds_ndm/models/ndmxml2/ndmxml_2_0_0_master_2_0.py -------------------------------------------------------------------------------- /ccsds_ndm/models/ndmxml2/ndmxml_2_0_0_ndm_2_0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egemenimre/ccsds-ndm/HEAD/ccsds_ndm/models/ndmxml2/ndmxml_2_0_0_ndm_2_0.py -------------------------------------------------------------------------------- /ccsds_ndm/models/ndmxml2/ndmxml_2_0_0_oem_2_0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egemenimre/ccsds-ndm/HEAD/ccsds_ndm/models/ndmxml2/ndmxml_2_0_0_oem_2_0.py -------------------------------------------------------------------------------- /ccsds_ndm/models/ndmxml2/ndmxml_2_0_0_omm_2_0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egemenimre/ccsds-ndm/HEAD/ccsds_ndm/models/ndmxml2/ndmxml_2_0_0_omm_2_0.py -------------------------------------------------------------------------------- /ccsds_ndm/models/ndmxml2/ndmxml_2_0_0_opm_2_0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egemenimre/ccsds-ndm/HEAD/ccsds_ndm/models/ndmxml2/ndmxml_2_0_0_opm_2_0.py -------------------------------------------------------------------------------- /ccsds_ndm/models/ndmxml2/ndmxml_2_0_0_rdm_1_0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egemenimre/ccsds-ndm/HEAD/ccsds_ndm/models/ndmxml2/ndmxml_2_0_0_rdm_1_0.py -------------------------------------------------------------------------------- /ccsds_ndm/models/ndmxml2/ndmxml_2_0_0_tdm_2_0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egemenimre/ccsds-ndm/HEAD/ccsds_ndm/models/ndmxml2/ndmxml_2_0_0_tdm_2_0.py -------------------------------------------------------------------------------- /ccsds_ndm/ndm_io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egemenimre/ccsds-ndm/HEAD/ccsds_ndm/ndm_io.py -------------------------------------------------------------------------------- /ccsds_ndm/ndm_kvn_io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egemenimre/ccsds-ndm/HEAD/ccsds_ndm/ndm_kvn_io.py -------------------------------------------------------------------------------- /ccsds_ndm/ndm_xml_io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egemenimre/ccsds-ndm/HEAD/ccsds_ndm/ndm_xml_io.py -------------------------------------------------------------------------------- /ccsds_ndm/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ccsds_ndm/tests/data/json/omm1_ct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egemenimre/ccsds-ndm/HEAD/ccsds_ndm/tests/data/json/omm1_ct.json -------------------------------------------------------------------------------- /ccsds_ndm/tests/data/json/omm1_ct.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egemenimre/ccsds-ndm/HEAD/ccsds_ndm/tests/data/json/omm1_ct.xml -------------------------------------------------------------------------------- /ccsds_ndm/tests/data/json/omm1_st.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egemenimre/ccsds-ndm/HEAD/ccsds_ndm/tests/data/json/omm1_st.json -------------------------------------------------------------------------------- /ccsds_ndm/tests/data/json/omm1_st.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egemenimre/ccsds-ndm/HEAD/ccsds_ndm/tests/data/json/omm1_st.xml -------------------------------------------------------------------------------- /ccsds_ndm/tests/data/kvn/502x0b2c1e2_fig3_2_opm.kvn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egemenimre/ccsds-ndm/HEAD/ccsds_ndm/tests/data/kvn/502x0b2c1e2_fig3_2_opm.kvn -------------------------------------------------------------------------------- /ccsds_ndm/tests/data/kvn/502x0b2c1e2_fig3_2_opm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egemenimre/ccsds-ndm/HEAD/ccsds_ndm/tests/data/kvn/502x0b2c1e2_fig3_2_opm.xml -------------------------------------------------------------------------------- /ccsds_ndm/tests/data/kvn/502x0b2c1e2_fig3_4_opm.kvn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egemenimre/ccsds-ndm/HEAD/ccsds_ndm/tests/data/kvn/502x0b2c1e2_fig3_4_opm.kvn -------------------------------------------------------------------------------- /ccsds_ndm/tests/data/kvn/502x0b2c1e2_fig3_4_opm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egemenimre/ccsds-ndm/HEAD/ccsds_ndm/tests/data/kvn/502x0b2c1e2_fig3_4_opm.xml -------------------------------------------------------------------------------- /ccsds_ndm/tests/data/kvn/504x0b1c1_fig3_6_apm.kvn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egemenimre/ccsds-ndm/HEAD/ccsds_ndm/tests/data/kvn/504x0b1c1_fig3_6_apm.kvn -------------------------------------------------------------------------------- /ccsds_ndm/tests/data/kvn/504x0b1c1_fig3_6_apm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egemenimre/ccsds-ndm/HEAD/ccsds_ndm/tests/data/kvn/504x0b1c1_fig3_6_apm.xml -------------------------------------------------------------------------------- /ccsds_ndm/tests/data/kvn/504x0b1c1_fig3_8_apm.kvn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egemenimre/ccsds-ndm/HEAD/ccsds_ndm/tests/data/kvn/504x0b1c1_fig3_8_apm.kvn -------------------------------------------------------------------------------- /ccsds_ndm/tests/data/kvn/504x0b1c1_fig3_8_apm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egemenimre/ccsds-ndm/HEAD/ccsds_ndm/tests/data/kvn/504x0b1c1_fig3_8_apm.xml -------------------------------------------------------------------------------- /ccsds_ndm/tests/data/kvn/508x1b1_figc_2_rdm.kvn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egemenimre/ccsds-ndm/HEAD/ccsds_ndm/tests/data/kvn/508x1b1_figc_2_rdm.kvn -------------------------------------------------------------------------------- /ccsds_ndm/tests/data/kvn/508x1b1_figc_2_rdm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egemenimre/ccsds-ndm/HEAD/ccsds_ndm/tests/data/kvn/508x1b1_figc_2_rdm.xml -------------------------------------------------------------------------------- /ccsds_ndm/tests/data/kvn/adm-testcase04a_abbrev.kvn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egemenimre/ccsds-ndm/HEAD/ccsds_ndm/tests/data/kvn/adm-testcase04a_abbrev.kvn -------------------------------------------------------------------------------- /ccsds_ndm/tests/data/kvn/adm-testcase04a_abbrev.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egemenimre/ccsds-ndm/HEAD/ccsds_ndm/tests/data/kvn/adm-testcase04a_abbrev.xml -------------------------------------------------------------------------------- /ccsds_ndm/tests/data/kvn/adm-testcase04a_multi.kvn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egemenimre/ccsds-ndm/HEAD/ccsds_ndm/tests/data/kvn/adm-testcase04a_multi.kvn -------------------------------------------------------------------------------- /ccsds_ndm/tests/data/kvn/adm-testcase04a_multi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egemenimre/ccsds-ndm/HEAD/ccsds_ndm/tests/data/kvn/adm-testcase04a_multi.xml -------------------------------------------------------------------------------- /ccsds_ndm/tests/data/kvn/cdm_example_section4.kvn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egemenimre/ccsds-ndm/HEAD/ccsds_ndm/tests/data/kvn/cdm_example_section4.kvn -------------------------------------------------------------------------------- /ccsds_ndm/tests/data/kvn/cdm_example_section4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egemenimre/ccsds-ndm/HEAD/ccsds_ndm/tests/data/kvn/cdm_example_section4.xml -------------------------------------------------------------------------------- /ccsds_ndm/tests/data/kvn/odmv2-testcase6_abbrev.kvn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egemenimre/ccsds-ndm/HEAD/ccsds_ndm/tests/data/kvn/odmv2-testcase6_abbrev.kvn -------------------------------------------------------------------------------- /ccsds_ndm/tests/data/kvn/odmv2-testcase6_abbrev.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egemenimre/ccsds-ndm/HEAD/ccsds_ndm/tests/data/kvn/odmv2-testcase6_abbrev.xml -------------------------------------------------------------------------------- /ccsds_ndm/tests/data/kvn/odmv2-testcase7a_xxx.kvn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egemenimre/ccsds-ndm/HEAD/ccsds_ndm/tests/data/kvn/odmv2-testcase7a_xxx.kvn -------------------------------------------------------------------------------- /ccsds_ndm/tests/data/kvn/odmv2-testcase7a_xxx.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egemenimre/ccsds-ndm/HEAD/ccsds_ndm/tests/data/kvn/odmv2-testcase7a_xxx.xml -------------------------------------------------------------------------------- /ccsds_ndm/tests/data/kvn/omm1_ct.kvn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egemenimre/ccsds-ndm/HEAD/ccsds_ndm/tests/data/kvn/omm1_ct.kvn -------------------------------------------------------------------------------- /ccsds_ndm/tests/data/kvn/omm1_ct.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egemenimre/ccsds-ndm/HEAD/ccsds_ndm/tests/data/kvn/omm1_ct.xml -------------------------------------------------------------------------------- /ccsds_ndm/tests/data/kvn/omm1_st.kvn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egemenimre/ccsds-ndm/HEAD/ccsds_ndm/tests/data/kvn/omm1_st.kvn -------------------------------------------------------------------------------- /ccsds_ndm/tests/data/kvn/omm1_st.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egemenimre/ccsds-ndm/HEAD/ccsds_ndm/tests/data/kvn/omm1_st.xml -------------------------------------------------------------------------------- /ccsds_ndm/tests/data/kvn/tdm-testcase01b.kvn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egemenimre/ccsds-ndm/HEAD/ccsds_ndm/tests/data/kvn/tdm-testcase01b.kvn -------------------------------------------------------------------------------- /ccsds_ndm/tests/data/kvn/tdm-testcase01b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egemenimre/ccsds-ndm/HEAD/ccsds_ndm/tests/data/kvn/tdm-testcase01b.xml -------------------------------------------------------------------------------- /ccsds_ndm/tests/data/kvn/tdm_opt_data.kvn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egemenimre/ccsds-ndm/HEAD/ccsds_ndm/tests/data/kvn/tdm_opt_data.kvn -------------------------------------------------------------------------------- /ccsds_ndm/tests/data/xml/NDMXML-P1.0.1-figure-B-2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egemenimre/ccsds-ndm/HEAD/ccsds_ndm/tests/data/xml/NDMXML-P1.0.1-figure-B-2.xml -------------------------------------------------------------------------------- /ccsds_ndm/tests/data/xml/NDMXML-P1.0.1-figure-B-3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egemenimre/ccsds-ndm/HEAD/ccsds_ndm/tests/data/xml/NDMXML-P1.0.1-figure-B-3.xml -------------------------------------------------------------------------------- /ccsds_ndm/tests/data/xml/cdm_example_section4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egemenimre/ccsds-ndm/HEAD/ccsds_ndm/tests/data/xml/cdm_example_section4.xml -------------------------------------------------------------------------------- /ccsds_ndm/tests/data/xml/ndmxml-1.0-odm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egemenimre/ccsds-ndm/HEAD/ccsds_ndm/tests/data/xml/ndmxml-1.0-odm.xml -------------------------------------------------------------------------------- /ccsds_ndm/tests/data/xml/ndmxml-1.0-oem-2.0-single.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egemenimre/ccsds-ndm/HEAD/ccsds_ndm/tests/data/xml/ndmxml-1.0-oem-2.0-single.xml -------------------------------------------------------------------------------- /ccsds_ndm/tests/data/xml/ndmxml-1.0-omm-2.0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egemenimre/ccsds-ndm/HEAD/ccsds_ndm/tests/data/xml/ndmxml-1.0-omm-2.0.xml -------------------------------------------------------------------------------- /ccsds_ndm/tests/data/xml/omm_combined.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egemenimre/ccsds-ndm/HEAD/ccsds_ndm/tests/data/xml/omm_combined.xml -------------------------------------------------------------------------------- /ccsds_ndm/tests/data/xml/omm_single_ndm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egemenimre/ccsds-ndm/HEAD/ccsds_ndm/tests/data/xml/omm_single_ndm.xml -------------------------------------------------------------------------------- /ccsds_ndm/tests/data/xml/tdm-testcase01a-fordocument.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egemenimre/ccsds-ndm/HEAD/ccsds_ndm/tests/data/xml/tdm-testcase01a-fordocument.xml -------------------------------------------------------------------------------- /ccsds_ndm/tests/data/xml/write_test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egemenimre/ccsds-ndm/HEAD/ccsds_ndm/tests/data/xml/write_test.xml -------------------------------------------------------------------------------- /ccsds_ndm/tests/test_ndm_io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egemenimre/ccsds-ndm/HEAD/ccsds_ndm/tests/test_ndm_io.py -------------------------------------------------------------------------------- /ccsds_ndm/tests/test_ndm_kvn_io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egemenimre/ccsds-ndm/HEAD/ccsds_ndm/tests/test_ndm_kvn_io.py -------------------------------------------------------------------------------- /ccsds_ndm/tests/test_ndm_xml_io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egemenimre/ccsds-ndm/HEAD/ccsds_ndm/tests/test_ndm_xml_io.py -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egemenimre/ccsds-ndm/HEAD/codecov.yml -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egemenimre/ccsds-ndm/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/changelog.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egemenimre/ccsds-ndm/HEAD/docs/changelog.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egemenimre/ccsds-ndm/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egemenimre/ccsds-ndm/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egemenimre/ccsds-ndm/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/more_info.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egemenimre/ccsds-ndm/HEAD/docs/more_info.rst -------------------------------------------------------------------------------- /docs/ndmclasses.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egemenimre/ccsds-ndm/HEAD/docs/ndmclasses.rst -------------------------------------------------------------------------------- /docs/ndmclasses2/aem.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egemenimre/ccsds-ndm/HEAD/docs/ndmclasses2/aem.rst -------------------------------------------------------------------------------- /docs/ndmclasses2/apm.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egemenimre/ccsds-ndm/HEAD/docs/ndmclasses2/apm.rst -------------------------------------------------------------------------------- /docs/ndmclasses2/cdm.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egemenimre/ccsds-ndm/HEAD/docs/ndmclasses2/cdm.rst -------------------------------------------------------------------------------- /docs/ndmclasses2/master.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egemenimre/ccsds-ndm/HEAD/docs/ndmclasses2/master.rst -------------------------------------------------------------------------------- /docs/ndmclasses2/navwg_common.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egemenimre/ccsds-ndm/HEAD/docs/ndmclasses2/navwg_common.rst -------------------------------------------------------------------------------- /docs/ndmclasses2/ndm.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egemenimre/ccsds-ndm/HEAD/docs/ndmclasses2/ndm.rst -------------------------------------------------------------------------------- /docs/ndmclasses2/oem.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egemenimre/ccsds-ndm/HEAD/docs/ndmclasses2/oem.rst -------------------------------------------------------------------------------- /docs/ndmclasses2/omm.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egemenimre/ccsds-ndm/HEAD/docs/ndmclasses2/omm.rst -------------------------------------------------------------------------------- /docs/ndmclasses2/opm.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egemenimre/ccsds-ndm/HEAD/docs/ndmclasses2/opm.rst -------------------------------------------------------------------------------- /docs/ndmclasses2/rdm.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egemenimre/ccsds-ndm/HEAD/docs/ndmclasses2/rdm.rst -------------------------------------------------------------------------------- /docs/ndmclasses2/tdm.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egemenimre/ccsds-ndm/HEAD/docs/ndmclasses2/tdm.rst -------------------------------------------------------------------------------- /docs/ndmio.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egemenimre/ccsds-ndm/HEAD/docs/ndmio.rst -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egemenimre/ccsds-ndm/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | lxml 2 | xsdata -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egemenimre/ccsds-ndm/HEAD/setup.cfg -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egemenimre/ccsds-ndm/HEAD/tox.ini --------------------------------------------------------------------------------