├── .gitignore ├── CONTRIBUTING.md ├── Concept Documents ├── Aviation2016_UTMConOps_AsPublished_v2.pdf └── UTM-Original-TM-20140013436.pdf ├── DWG Documents ├── Rios_NASA-Tech-Memo-2017-219494v2.pdf └── Rios_NASA-TechMemo_219462_UTM_UREP_20170214.pdf ├── Organization Documents └── FAA_NASA_UAS_Traffic_Management_Research_Plan.pdf ├── README.md ├── SDSP Documents └── NASA_TechMemo_219462_UTM_UREP_20170214.pdf ├── TCL3 └── tcl3-data-apis │ ├── DMP_Format_Upload_Instructions.docx │ ├── DMP_Format_Upload_Instructions.pdf │ ├── files │ ├── 2018-02-27_MasterVariableList-DMP.Rev.F-Draft.pdf │ ├── 2018-03-01_MasterVariableList-DMP.Rev.F-Draft-CON.pdf │ ├── SAMPLE-20180329-1714-CNS1.json │ ├── SAMPLE-20180329-1714-CNS2.json │ ├── SAMPLE-20180329-1714-CNS3.json │ ├── SAMPLE-20180329-1714-CON1.json │ ├── SAMPLE-20180329-1714-CON2.json │ ├── SAMPLE-20180329-1714-CON4.json │ ├── SAMPLE-20180329-1714-CON5.json │ ├── SAMPLE-20180329-1714-FLIGHT_DATA.json │ ├── SAMPLE-20180329-1714-SAA1.json │ ├── SAMPLE-20180329-1714-SAA2.json │ ├── SAMPLE-20180329-1714-SAA3.json │ ├── SAMPLE-20180329-1714-SAA4.json │ ├── SAMPLE-20180329-1714-SAA5.json │ ├── SAMPLE-20180329-1714-SAA6.json │ ├── TCL3-DMP-RevF-PDF-KML-Templates.zip │ ├── requirements_table.pdf │ └── requirements_table.xlsx │ ├── utm-tcl3-cns.yaml │ ├── utm-tcl3-con.yaml │ ├── utm-tcl3-dat-4-99.yaml │ ├── utm-tcl3-dat-test-schema-v1.yaml │ ├── utm-tcl3-flight-data.yaml │ └── utm-tcl3-saa.yaml ├── TCL4 Data Management ├── main.css ├── main.html ├── main.org ├── update_references.sh ├── utm-tcl4-data-collection.yaml ├── utm-tcl4-dmp-aircraft-flightplan-api.yaml ├── utm-tcl4-dmp-aircraft-flightplan.yaml ├── utm-tcl4-dmp-api.yaml ├── utm-tcl4-dmp-auxiliary-uas-operation.yaml ├── utm-tcl4-dmp-cns-api.yaml ├── utm-tcl4-dmp-cns.yaml ├── utm-tcl4-dmp-common.yaml ├── utm-tcl4-dmp-con-api.yaml ├── utm-tcl4-dmp-con.yaml ├── utm-tcl4-dmp-daa-api.yaml ├── utm-tcl4-dmp-daa-geofence-api.yaml ├── utm-tcl4-dmp-daa-geofence.yaml ├── utm-tcl4-dmp-daa.yaml ├── utm-tcl4-dmp-fet-api.yaml ├── utm-tcl4-dmp-fet-latency-api.yaml ├── utm-tcl4-dmp-fet-latency.yaml ├── utm-tcl4-dmp-fet.yaml ├── utm-tcl4-dmp-remote-id-api.yaml ├── utm-tcl4-dmp-remote-id.yaml └── utm-tcl4-sdsp-models.yaml └── etm ├── ess-interface-spec ├── README.md └── etm-ess-api.yaml └── operator-interface-spec ├── README.md └── etm-oper-api.yaml /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/utm-docs/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Concept Documents/Aviation2016_UTMConOps_AsPublished_v2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/utm-docs/HEAD/Concept Documents/Aviation2016_UTMConOps_AsPublished_v2.pdf -------------------------------------------------------------------------------- /Concept Documents/UTM-Original-TM-20140013436.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/utm-docs/HEAD/Concept Documents/UTM-Original-TM-20140013436.pdf -------------------------------------------------------------------------------- /DWG Documents/Rios_NASA-Tech-Memo-2017-219494v2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/utm-docs/HEAD/DWG Documents/Rios_NASA-Tech-Memo-2017-219494v2.pdf -------------------------------------------------------------------------------- /DWG Documents/Rios_NASA-TechMemo_219462_UTM_UREP_20170214.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/utm-docs/HEAD/DWG Documents/Rios_NASA-TechMemo_219462_UTM_UREP_20170214.pdf -------------------------------------------------------------------------------- /Organization Documents/FAA_NASA_UAS_Traffic_Management_Research_Plan.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/utm-docs/HEAD/Organization Documents/FAA_NASA_UAS_Traffic_Management_Research_Plan.pdf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/utm-docs/HEAD/README.md -------------------------------------------------------------------------------- /SDSP Documents/NASA_TechMemo_219462_UTM_UREP_20170214.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/utm-docs/HEAD/SDSP Documents/NASA_TechMemo_219462_UTM_UREP_20170214.pdf -------------------------------------------------------------------------------- /TCL3/tcl3-data-apis/DMP_Format_Upload_Instructions.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/utm-docs/HEAD/TCL3/tcl3-data-apis/DMP_Format_Upload_Instructions.docx -------------------------------------------------------------------------------- /TCL3/tcl3-data-apis/DMP_Format_Upload_Instructions.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/utm-docs/HEAD/TCL3/tcl3-data-apis/DMP_Format_Upload_Instructions.pdf -------------------------------------------------------------------------------- /TCL3/tcl3-data-apis/files/2018-02-27_MasterVariableList-DMP.Rev.F-Draft.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/utm-docs/HEAD/TCL3/tcl3-data-apis/files/2018-02-27_MasterVariableList-DMP.Rev.F-Draft.pdf -------------------------------------------------------------------------------- /TCL3/tcl3-data-apis/files/2018-03-01_MasterVariableList-DMP.Rev.F-Draft-CON.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/utm-docs/HEAD/TCL3/tcl3-data-apis/files/2018-03-01_MasterVariableList-DMP.Rev.F-Draft-CON.pdf -------------------------------------------------------------------------------- /TCL3/tcl3-data-apis/files/SAMPLE-20180329-1714-CNS1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/utm-docs/HEAD/TCL3/tcl3-data-apis/files/SAMPLE-20180329-1714-CNS1.json -------------------------------------------------------------------------------- /TCL3/tcl3-data-apis/files/SAMPLE-20180329-1714-CNS2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/utm-docs/HEAD/TCL3/tcl3-data-apis/files/SAMPLE-20180329-1714-CNS2.json -------------------------------------------------------------------------------- /TCL3/tcl3-data-apis/files/SAMPLE-20180329-1714-CNS3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/utm-docs/HEAD/TCL3/tcl3-data-apis/files/SAMPLE-20180329-1714-CNS3.json -------------------------------------------------------------------------------- /TCL3/tcl3-data-apis/files/SAMPLE-20180329-1714-CON1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/utm-docs/HEAD/TCL3/tcl3-data-apis/files/SAMPLE-20180329-1714-CON1.json -------------------------------------------------------------------------------- /TCL3/tcl3-data-apis/files/SAMPLE-20180329-1714-CON2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/utm-docs/HEAD/TCL3/tcl3-data-apis/files/SAMPLE-20180329-1714-CON2.json -------------------------------------------------------------------------------- /TCL3/tcl3-data-apis/files/SAMPLE-20180329-1714-CON4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/utm-docs/HEAD/TCL3/tcl3-data-apis/files/SAMPLE-20180329-1714-CON4.json -------------------------------------------------------------------------------- /TCL3/tcl3-data-apis/files/SAMPLE-20180329-1714-CON5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/utm-docs/HEAD/TCL3/tcl3-data-apis/files/SAMPLE-20180329-1714-CON5.json -------------------------------------------------------------------------------- /TCL3/tcl3-data-apis/files/SAMPLE-20180329-1714-FLIGHT_DATA.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/utm-docs/HEAD/TCL3/tcl3-data-apis/files/SAMPLE-20180329-1714-FLIGHT_DATA.json -------------------------------------------------------------------------------- /TCL3/tcl3-data-apis/files/SAMPLE-20180329-1714-SAA1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/utm-docs/HEAD/TCL3/tcl3-data-apis/files/SAMPLE-20180329-1714-SAA1.json -------------------------------------------------------------------------------- /TCL3/tcl3-data-apis/files/SAMPLE-20180329-1714-SAA2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/utm-docs/HEAD/TCL3/tcl3-data-apis/files/SAMPLE-20180329-1714-SAA2.json -------------------------------------------------------------------------------- /TCL3/tcl3-data-apis/files/SAMPLE-20180329-1714-SAA3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/utm-docs/HEAD/TCL3/tcl3-data-apis/files/SAMPLE-20180329-1714-SAA3.json -------------------------------------------------------------------------------- /TCL3/tcl3-data-apis/files/SAMPLE-20180329-1714-SAA4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/utm-docs/HEAD/TCL3/tcl3-data-apis/files/SAMPLE-20180329-1714-SAA4.json -------------------------------------------------------------------------------- /TCL3/tcl3-data-apis/files/SAMPLE-20180329-1714-SAA5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/utm-docs/HEAD/TCL3/tcl3-data-apis/files/SAMPLE-20180329-1714-SAA5.json -------------------------------------------------------------------------------- /TCL3/tcl3-data-apis/files/SAMPLE-20180329-1714-SAA6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/utm-docs/HEAD/TCL3/tcl3-data-apis/files/SAMPLE-20180329-1714-SAA6.json -------------------------------------------------------------------------------- /TCL3/tcl3-data-apis/files/TCL3-DMP-RevF-PDF-KML-Templates.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/utm-docs/HEAD/TCL3/tcl3-data-apis/files/TCL3-DMP-RevF-PDF-KML-Templates.zip -------------------------------------------------------------------------------- /TCL3/tcl3-data-apis/files/requirements_table.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/utm-docs/HEAD/TCL3/tcl3-data-apis/files/requirements_table.pdf -------------------------------------------------------------------------------- /TCL3/tcl3-data-apis/files/requirements_table.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/utm-docs/HEAD/TCL3/tcl3-data-apis/files/requirements_table.xlsx -------------------------------------------------------------------------------- /TCL3/tcl3-data-apis/utm-tcl3-cns.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/utm-docs/HEAD/TCL3/tcl3-data-apis/utm-tcl3-cns.yaml -------------------------------------------------------------------------------- /TCL3/tcl3-data-apis/utm-tcl3-con.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/utm-docs/HEAD/TCL3/tcl3-data-apis/utm-tcl3-con.yaml -------------------------------------------------------------------------------- /TCL3/tcl3-data-apis/utm-tcl3-dat-4-99.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/utm-docs/HEAD/TCL3/tcl3-data-apis/utm-tcl3-dat-4-99.yaml -------------------------------------------------------------------------------- /TCL3/tcl3-data-apis/utm-tcl3-dat-test-schema-v1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/utm-docs/HEAD/TCL3/tcl3-data-apis/utm-tcl3-dat-test-schema-v1.yaml -------------------------------------------------------------------------------- /TCL3/tcl3-data-apis/utm-tcl3-flight-data.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/utm-docs/HEAD/TCL3/tcl3-data-apis/utm-tcl3-flight-data.yaml -------------------------------------------------------------------------------- /TCL3/tcl3-data-apis/utm-tcl3-saa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/utm-docs/HEAD/TCL3/tcl3-data-apis/utm-tcl3-saa.yaml -------------------------------------------------------------------------------- /TCL4 Data Management/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/utm-docs/HEAD/TCL4 Data Management/main.css -------------------------------------------------------------------------------- /TCL4 Data Management/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/utm-docs/HEAD/TCL4 Data Management/main.html -------------------------------------------------------------------------------- /TCL4 Data Management/main.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/utm-docs/HEAD/TCL4 Data Management/main.org -------------------------------------------------------------------------------- /TCL4 Data Management/update_references.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/utm-docs/HEAD/TCL4 Data Management/update_references.sh -------------------------------------------------------------------------------- /TCL4 Data Management/utm-tcl4-data-collection.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/utm-docs/HEAD/TCL4 Data Management/utm-tcl4-data-collection.yaml -------------------------------------------------------------------------------- /TCL4 Data Management/utm-tcl4-dmp-aircraft-flightplan-api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/utm-docs/HEAD/TCL4 Data Management/utm-tcl4-dmp-aircraft-flightplan-api.yaml -------------------------------------------------------------------------------- /TCL4 Data Management/utm-tcl4-dmp-aircraft-flightplan.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/utm-docs/HEAD/TCL4 Data Management/utm-tcl4-dmp-aircraft-flightplan.yaml -------------------------------------------------------------------------------- /TCL4 Data Management/utm-tcl4-dmp-api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/utm-docs/HEAD/TCL4 Data Management/utm-tcl4-dmp-api.yaml -------------------------------------------------------------------------------- /TCL4 Data Management/utm-tcl4-dmp-auxiliary-uas-operation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/utm-docs/HEAD/TCL4 Data Management/utm-tcl4-dmp-auxiliary-uas-operation.yaml -------------------------------------------------------------------------------- /TCL4 Data Management/utm-tcl4-dmp-cns-api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/utm-docs/HEAD/TCL4 Data Management/utm-tcl4-dmp-cns-api.yaml -------------------------------------------------------------------------------- /TCL4 Data Management/utm-tcl4-dmp-cns.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/utm-docs/HEAD/TCL4 Data Management/utm-tcl4-dmp-cns.yaml -------------------------------------------------------------------------------- /TCL4 Data Management/utm-tcl4-dmp-common.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/utm-docs/HEAD/TCL4 Data Management/utm-tcl4-dmp-common.yaml -------------------------------------------------------------------------------- /TCL4 Data Management/utm-tcl4-dmp-con-api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/utm-docs/HEAD/TCL4 Data Management/utm-tcl4-dmp-con-api.yaml -------------------------------------------------------------------------------- /TCL4 Data Management/utm-tcl4-dmp-con.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/utm-docs/HEAD/TCL4 Data Management/utm-tcl4-dmp-con.yaml -------------------------------------------------------------------------------- /TCL4 Data Management/utm-tcl4-dmp-daa-api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/utm-docs/HEAD/TCL4 Data Management/utm-tcl4-dmp-daa-api.yaml -------------------------------------------------------------------------------- /TCL4 Data Management/utm-tcl4-dmp-daa-geofence-api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/utm-docs/HEAD/TCL4 Data Management/utm-tcl4-dmp-daa-geofence-api.yaml -------------------------------------------------------------------------------- /TCL4 Data Management/utm-tcl4-dmp-daa-geofence.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/utm-docs/HEAD/TCL4 Data Management/utm-tcl4-dmp-daa-geofence.yaml -------------------------------------------------------------------------------- /TCL4 Data Management/utm-tcl4-dmp-daa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/utm-docs/HEAD/TCL4 Data Management/utm-tcl4-dmp-daa.yaml -------------------------------------------------------------------------------- /TCL4 Data Management/utm-tcl4-dmp-fet-api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/utm-docs/HEAD/TCL4 Data Management/utm-tcl4-dmp-fet-api.yaml -------------------------------------------------------------------------------- /TCL4 Data Management/utm-tcl4-dmp-fet-latency-api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/utm-docs/HEAD/TCL4 Data Management/utm-tcl4-dmp-fet-latency-api.yaml -------------------------------------------------------------------------------- /TCL4 Data Management/utm-tcl4-dmp-fet-latency.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/utm-docs/HEAD/TCL4 Data Management/utm-tcl4-dmp-fet-latency.yaml -------------------------------------------------------------------------------- /TCL4 Data Management/utm-tcl4-dmp-fet.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/utm-docs/HEAD/TCL4 Data Management/utm-tcl4-dmp-fet.yaml -------------------------------------------------------------------------------- /TCL4 Data Management/utm-tcl4-dmp-remote-id-api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/utm-docs/HEAD/TCL4 Data Management/utm-tcl4-dmp-remote-id-api.yaml -------------------------------------------------------------------------------- /TCL4 Data Management/utm-tcl4-dmp-remote-id.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/utm-docs/HEAD/TCL4 Data Management/utm-tcl4-dmp-remote-id.yaml -------------------------------------------------------------------------------- /TCL4 Data Management/utm-tcl4-sdsp-models.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/utm-docs/HEAD/TCL4 Data Management/utm-tcl4-sdsp-models.yaml -------------------------------------------------------------------------------- /etm/ess-interface-spec/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/utm-docs/HEAD/etm/ess-interface-spec/README.md -------------------------------------------------------------------------------- /etm/ess-interface-spec/etm-ess-api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/utm-docs/HEAD/etm/ess-interface-spec/etm-ess-api.yaml -------------------------------------------------------------------------------- /etm/operator-interface-spec/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/utm-docs/HEAD/etm/operator-interface-spec/README.md -------------------------------------------------------------------------------- /etm/operator-interface-spec/etm-oper-api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/utm-docs/HEAD/etm/operator-interface-spec/etm-oper-api.yaml --------------------------------------------------------------------------------