├── .gitignore ├── LICENSE ├── README.md └── examples ├── data-processing ├── LOG │ ├── 17BD1DB7 │ │ └── 00000006 │ │ │ └── 00000170.MF4 │ ├── 2F6913DB │ │ └── 00000004 │ │ │ └── 00000001.MF4 │ ├── 94C49784 │ │ └── 00000005 │ │ │ ├── 00000002.MF4 │ │ │ └── 00000017-6099D010.MF4 │ ├── 958D2219 │ │ └── 00002501 │ │ │ ├── 00002081.MF4 │ │ │ └── 00002082.MF4 │ └── FCBF0606 │ │ └── 00003482 │ │ └── 00000001-60B621D9.MF4 ├── README.md ├── dbc_files │ ├── CSS-Electronics-SAE-J1939-DEMO.dbc │ ├── tp_j1939.dbc │ ├── tp_nmea.dbc │ ├── tp_uds.dbc │ └── tp_uds_nissan.dbc ├── process_data.py ├── process_tp_data.py ├── requirements.txt └── utils.py └── other ├── asammdf-basics ├── asammdf_basics.py ├── input │ ├── 00000001.MF4 │ └── CSS-Electronics-SAE-J1939-DEMO.dbc └── requirements.txt ├── concatenate-mf4-by-period ├── LOG │ ├── 2F6913DB │ │ └── 00001089 │ │ │ ├── 00000001-63BEF5CD.MF4 │ │ │ └── 00000002-63BEFDF9.MF4 │ └── 5BC57FEC │ │ └── 00000001 │ │ ├── 00000005-643E503A.MFC │ │ ├── 00000006-643E5292.MFC │ │ └── 00000007-643E54EA.MFC ├── README.md ├── concatenate_mf4_by_period.py ├── concatenate_utils.py ├── dbc_files │ └── gnss.dbc ├── install.bat ├── mdf2finalized.exe ├── requirements.txt └── run.bat ├── matlab-basics ├── LOG │ └── 11111111 │ │ └── 00000012 │ │ └── 00000001.MF4 ├── LOG_datastore │ └── 3BA199E2 │ │ ├── 00000164 │ │ ├── 00000001-60FE3F04.MF4 │ │ ├── 00000002-60FE415D.MF4 │ │ ├── 00000003-60FE43B2.MF4 │ │ ├── 00000004-60FEB585.MF4 │ │ └── 00000005-60FEB5A8.MF4 │ │ └── 00000165 │ │ ├── 00000001-60FEB68B.MF4 │ │ ├── 00000002-60FEB8E3.MF4 │ │ ├── 00000003-60FEBB3B.MF4 │ │ ├── 00000004-60FEBD93.MF4 │ │ ├── 00000005-60FEBFEB.MF4 │ │ └── 00000006-60FFE42F.MF4 ├── README.md ├── dbc_files │ ├── CSS-Electronics-SAE-J1939-DEMO.dbc │ └── canmod-gps.dbc ├── matlab_basics.m ├── matlab_datastore.m ├── matlab_mat.m ├── matlab_tall.m ├── mf4_to_mat.py └── requirements.txt ├── misc ├── create_log_files.py ├── mdf2csv.exe ├── mdf_converter.py ├── send_mail.py └── upload_sd_to_s3.py ├── s3-basics ├── requirements.txt ├── s3_basics.py └── s3_get_keys.py └── s3-events ├── README.md ├── aws_lambda_mdf_convert.py ├── mdf2csv.exe ├── minio_listen_mdf_convert.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSS-Electronics/api-examples/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSS-Electronics/api-examples/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSS-Electronics/api-examples/HEAD/README.md -------------------------------------------------------------------------------- /examples/data-processing/LOG/17BD1DB7/00000006/00000170.MF4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSS-Electronics/api-examples/HEAD/examples/data-processing/LOG/17BD1DB7/00000006/00000170.MF4 -------------------------------------------------------------------------------- /examples/data-processing/LOG/2F6913DB/00000004/00000001.MF4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSS-Electronics/api-examples/HEAD/examples/data-processing/LOG/2F6913DB/00000004/00000001.MF4 -------------------------------------------------------------------------------- /examples/data-processing/LOG/94C49784/00000005/00000002.MF4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSS-Electronics/api-examples/HEAD/examples/data-processing/LOG/94C49784/00000005/00000002.MF4 -------------------------------------------------------------------------------- /examples/data-processing/LOG/94C49784/00000005/00000017-6099D010.MF4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSS-Electronics/api-examples/HEAD/examples/data-processing/LOG/94C49784/00000005/00000017-6099D010.MF4 -------------------------------------------------------------------------------- /examples/data-processing/LOG/958D2219/00002501/00002081.MF4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSS-Electronics/api-examples/HEAD/examples/data-processing/LOG/958D2219/00002501/00002081.MF4 -------------------------------------------------------------------------------- /examples/data-processing/LOG/958D2219/00002501/00002082.MF4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSS-Electronics/api-examples/HEAD/examples/data-processing/LOG/958D2219/00002501/00002082.MF4 -------------------------------------------------------------------------------- /examples/data-processing/LOG/FCBF0606/00003482/00000001-60B621D9.MF4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSS-Electronics/api-examples/HEAD/examples/data-processing/LOG/FCBF0606/00003482/00000001-60B621D9.MF4 -------------------------------------------------------------------------------- /examples/data-processing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSS-Electronics/api-examples/HEAD/examples/data-processing/README.md -------------------------------------------------------------------------------- /examples/data-processing/dbc_files/CSS-Electronics-SAE-J1939-DEMO.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSS-Electronics/api-examples/HEAD/examples/data-processing/dbc_files/CSS-Electronics-SAE-J1939-DEMO.dbc -------------------------------------------------------------------------------- /examples/data-processing/dbc_files/tp_j1939.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSS-Electronics/api-examples/HEAD/examples/data-processing/dbc_files/tp_j1939.dbc -------------------------------------------------------------------------------- /examples/data-processing/dbc_files/tp_nmea.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSS-Electronics/api-examples/HEAD/examples/data-processing/dbc_files/tp_nmea.dbc -------------------------------------------------------------------------------- /examples/data-processing/dbc_files/tp_uds.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSS-Electronics/api-examples/HEAD/examples/data-processing/dbc_files/tp_uds.dbc -------------------------------------------------------------------------------- /examples/data-processing/dbc_files/tp_uds_nissan.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSS-Electronics/api-examples/HEAD/examples/data-processing/dbc_files/tp_uds_nissan.dbc -------------------------------------------------------------------------------- /examples/data-processing/process_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSS-Electronics/api-examples/HEAD/examples/data-processing/process_data.py -------------------------------------------------------------------------------- /examples/data-processing/process_tp_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSS-Electronics/api-examples/HEAD/examples/data-processing/process_tp_data.py -------------------------------------------------------------------------------- /examples/data-processing/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSS-Electronics/api-examples/HEAD/examples/data-processing/requirements.txt -------------------------------------------------------------------------------- /examples/data-processing/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSS-Electronics/api-examples/HEAD/examples/data-processing/utils.py -------------------------------------------------------------------------------- /examples/other/asammdf-basics/asammdf_basics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSS-Electronics/api-examples/HEAD/examples/other/asammdf-basics/asammdf_basics.py -------------------------------------------------------------------------------- /examples/other/asammdf-basics/input/00000001.MF4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSS-Electronics/api-examples/HEAD/examples/other/asammdf-basics/input/00000001.MF4 -------------------------------------------------------------------------------- /examples/other/asammdf-basics/input/CSS-Electronics-SAE-J1939-DEMO.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSS-Electronics/api-examples/HEAD/examples/other/asammdf-basics/input/CSS-Electronics-SAE-J1939-DEMO.dbc -------------------------------------------------------------------------------- /examples/other/asammdf-basics/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSS-Electronics/api-examples/HEAD/examples/other/asammdf-basics/requirements.txt -------------------------------------------------------------------------------- /examples/other/concatenate-mf4-by-period/LOG/2F6913DB/00001089/00000001-63BEF5CD.MF4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSS-Electronics/api-examples/HEAD/examples/other/concatenate-mf4-by-period/LOG/2F6913DB/00001089/00000001-63BEF5CD.MF4 -------------------------------------------------------------------------------- /examples/other/concatenate-mf4-by-period/LOG/2F6913DB/00001089/00000002-63BEFDF9.MF4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSS-Electronics/api-examples/HEAD/examples/other/concatenate-mf4-by-period/LOG/2F6913DB/00001089/00000002-63BEFDF9.MF4 -------------------------------------------------------------------------------- /examples/other/concatenate-mf4-by-period/LOG/5BC57FEC/00000001/00000005-643E503A.MFC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSS-Electronics/api-examples/HEAD/examples/other/concatenate-mf4-by-period/LOG/5BC57FEC/00000001/00000005-643E503A.MFC -------------------------------------------------------------------------------- /examples/other/concatenate-mf4-by-period/LOG/5BC57FEC/00000001/00000006-643E5292.MFC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSS-Electronics/api-examples/HEAD/examples/other/concatenate-mf4-by-period/LOG/5BC57FEC/00000001/00000006-643E5292.MFC -------------------------------------------------------------------------------- /examples/other/concatenate-mf4-by-period/LOG/5BC57FEC/00000001/00000007-643E54EA.MFC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSS-Electronics/api-examples/HEAD/examples/other/concatenate-mf4-by-period/LOG/5BC57FEC/00000001/00000007-643E54EA.MFC -------------------------------------------------------------------------------- /examples/other/concatenate-mf4-by-period/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSS-Electronics/api-examples/HEAD/examples/other/concatenate-mf4-by-period/README.md -------------------------------------------------------------------------------- /examples/other/concatenate-mf4-by-period/concatenate_mf4_by_period.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSS-Electronics/api-examples/HEAD/examples/other/concatenate-mf4-by-period/concatenate_mf4_by_period.py -------------------------------------------------------------------------------- /examples/other/concatenate-mf4-by-period/concatenate_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSS-Electronics/api-examples/HEAD/examples/other/concatenate-mf4-by-period/concatenate_utils.py -------------------------------------------------------------------------------- /examples/other/concatenate-mf4-by-period/dbc_files/gnss.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSS-Electronics/api-examples/HEAD/examples/other/concatenate-mf4-by-period/dbc_files/gnss.dbc -------------------------------------------------------------------------------- /examples/other/concatenate-mf4-by-period/install.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSS-Electronics/api-examples/HEAD/examples/other/concatenate-mf4-by-period/install.bat -------------------------------------------------------------------------------- /examples/other/concatenate-mf4-by-period/mdf2finalized.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSS-Electronics/api-examples/HEAD/examples/other/concatenate-mf4-by-period/mdf2finalized.exe -------------------------------------------------------------------------------- /examples/other/concatenate-mf4-by-period/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSS-Electronics/api-examples/HEAD/examples/other/concatenate-mf4-by-period/requirements.txt -------------------------------------------------------------------------------- /examples/other/concatenate-mf4-by-period/run.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSS-Electronics/api-examples/HEAD/examples/other/concatenate-mf4-by-period/run.bat -------------------------------------------------------------------------------- /examples/other/matlab-basics/LOG/11111111/00000012/00000001.MF4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSS-Electronics/api-examples/HEAD/examples/other/matlab-basics/LOG/11111111/00000012/00000001.MF4 -------------------------------------------------------------------------------- /examples/other/matlab-basics/LOG_datastore/3BA199E2/00000164/00000001-60FE3F04.MF4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSS-Electronics/api-examples/HEAD/examples/other/matlab-basics/LOG_datastore/3BA199E2/00000164/00000001-60FE3F04.MF4 -------------------------------------------------------------------------------- /examples/other/matlab-basics/LOG_datastore/3BA199E2/00000164/00000002-60FE415D.MF4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSS-Electronics/api-examples/HEAD/examples/other/matlab-basics/LOG_datastore/3BA199E2/00000164/00000002-60FE415D.MF4 -------------------------------------------------------------------------------- /examples/other/matlab-basics/LOG_datastore/3BA199E2/00000164/00000003-60FE43B2.MF4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSS-Electronics/api-examples/HEAD/examples/other/matlab-basics/LOG_datastore/3BA199E2/00000164/00000003-60FE43B2.MF4 -------------------------------------------------------------------------------- /examples/other/matlab-basics/LOG_datastore/3BA199E2/00000164/00000004-60FEB585.MF4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSS-Electronics/api-examples/HEAD/examples/other/matlab-basics/LOG_datastore/3BA199E2/00000164/00000004-60FEB585.MF4 -------------------------------------------------------------------------------- /examples/other/matlab-basics/LOG_datastore/3BA199E2/00000164/00000005-60FEB5A8.MF4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSS-Electronics/api-examples/HEAD/examples/other/matlab-basics/LOG_datastore/3BA199E2/00000164/00000005-60FEB5A8.MF4 -------------------------------------------------------------------------------- /examples/other/matlab-basics/LOG_datastore/3BA199E2/00000165/00000001-60FEB68B.MF4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSS-Electronics/api-examples/HEAD/examples/other/matlab-basics/LOG_datastore/3BA199E2/00000165/00000001-60FEB68B.MF4 -------------------------------------------------------------------------------- /examples/other/matlab-basics/LOG_datastore/3BA199E2/00000165/00000002-60FEB8E3.MF4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSS-Electronics/api-examples/HEAD/examples/other/matlab-basics/LOG_datastore/3BA199E2/00000165/00000002-60FEB8E3.MF4 -------------------------------------------------------------------------------- /examples/other/matlab-basics/LOG_datastore/3BA199E2/00000165/00000003-60FEBB3B.MF4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSS-Electronics/api-examples/HEAD/examples/other/matlab-basics/LOG_datastore/3BA199E2/00000165/00000003-60FEBB3B.MF4 -------------------------------------------------------------------------------- /examples/other/matlab-basics/LOG_datastore/3BA199E2/00000165/00000004-60FEBD93.MF4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSS-Electronics/api-examples/HEAD/examples/other/matlab-basics/LOG_datastore/3BA199E2/00000165/00000004-60FEBD93.MF4 -------------------------------------------------------------------------------- /examples/other/matlab-basics/LOG_datastore/3BA199E2/00000165/00000005-60FEBFEB.MF4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSS-Electronics/api-examples/HEAD/examples/other/matlab-basics/LOG_datastore/3BA199E2/00000165/00000005-60FEBFEB.MF4 -------------------------------------------------------------------------------- /examples/other/matlab-basics/LOG_datastore/3BA199E2/00000165/00000006-60FFE42F.MF4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSS-Electronics/api-examples/HEAD/examples/other/matlab-basics/LOG_datastore/3BA199E2/00000165/00000006-60FFE42F.MF4 -------------------------------------------------------------------------------- /examples/other/matlab-basics/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSS-Electronics/api-examples/HEAD/examples/other/matlab-basics/README.md -------------------------------------------------------------------------------- /examples/other/matlab-basics/dbc_files/CSS-Electronics-SAE-J1939-DEMO.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSS-Electronics/api-examples/HEAD/examples/other/matlab-basics/dbc_files/CSS-Electronics-SAE-J1939-DEMO.dbc -------------------------------------------------------------------------------- /examples/other/matlab-basics/dbc_files/canmod-gps.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSS-Electronics/api-examples/HEAD/examples/other/matlab-basics/dbc_files/canmod-gps.dbc -------------------------------------------------------------------------------- /examples/other/matlab-basics/matlab_basics.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSS-Electronics/api-examples/HEAD/examples/other/matlab-basics/matlab_basics.m -------------------------------------------------------------------------------- /examples/other/matlab-basics/matlab_datastore.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSS-Electronics/api-examples/HEAD/examples/other/matlab-basics/matlab_datastore.m -------------------------------------------------------------------------------- /examples/other/matlab-basics/matlab_mat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSS-Electronics/api-examples/HEAD/examples/other/matlab-basics/matlab_mat.m -------------------------------------------------------------------------------- /examples/other/matlab-basics/matlab_tall.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSS-Electronics/api-examples/HEAD/examples/other/matlab-basics/matlab_tall.m -------------------------------------------------------------------------------- /examples/other/matlab-basics/mf4_to_mat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSS-Electronics/api-examples/HEAD/examples/other/matlab-basics/mf4_to_mat.py -------------------------------------------------------------------------------- /examples/other/matlab-basics/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSS-Electronics/api-examples/HEAD/examples/other/matlab-basics/requirements.txt -------------------------------------------------------------------------------- /examples/other/misc/create_log_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSS-Electronics/api-examples/HEAD/examples/other/misc/create_log_files.py -------------------------------------------------------------------------------- /examples/other/misc/mdf2csv.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSS-Electronics/api-examples/HEAD/examples/other/misc/mdf2csv.exe -------------------------------------------------------------------------------- /examples/other/misc/mdf_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSS-Electronics/api-examples/HEAD/examples/other/misc/mdf_converter.py -------------------------------------------------------------------------------- /examples/other/misc/send_mail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSS-Electronics/api-examples/HEAD/examples/other/misc/send_mail.py -------------------------------------------------------------------------------- /examples/other/misc/upload_sd_to_s3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSS-Electronics/api-examples/HEAD/examples/other/misc/upload_sd_to_s3.py -------------------------------------------------------------------------------- /examples/other/s3-basics/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSS-Electronics/api-examples/HEAD/examples/other/s3-basics/requirements.txt -------------------------------------------------------------------------------- /examples/other/s3-basics/s3_basics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSS-Electronics/api-examples/HEAD/examples/other/s3-basics/s3_basics.py -------------------------------------------------------------------------------- /examples/other/s3-basics/s3_get_keys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSS-Electronics/api-examples/HEAD/examples/other/s3-basics/s3_get_keys.py -------------------------------------------------------------------------------- /examples/other/s3-events/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSS-Electronics/api-examples/HEAD/examples/other/s3-events/README.md -------------------------------------------------------------------------------- /examples/other/s3-events/aws_lambda_mdf_convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSS-Electronics/api-examples/HEAD/examples/other/s3-events/aws_lambda_mdf_convert.py -------------------------------------------------------------------------------- /examples/other/s3-events/mdf2csv.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSS-Electronics/api-examples/HEAD/examples/other/s3-events/mdf2csv.exe -------------------------------------------------------------------------------- /examples/other/s3-events/minio_listen_mdf_convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSS-Electronics/api-examples/HEAD/examples/other/s3-events/minio_listen_mdf_convert.py -------------------------------------------------------------------------------- /examples/other/s3-events/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSS-Electronics/api-examples/HEAD/examples/other/s3-events/requirements.txt --------------------------------------------------------------------------------