A small math example package
Project description
EDIE
EDIE, the Encode Decode Interface Engine software development kit allows interfacing and decoding data output from NovAtel's OEM7 receivers.
Building EDIE from source code
Compiling binaries
Linux
These instructions assume that you are using Ubuntu 18.04 or newer.
- Open terminal
- Update the system:
apt-get update
- Install make, cmake tools and g++ compiler:
apt-get install -y cmake make g++
- Install multilib for gcc and g++:
apt-get install --yes gcc-multilib g++-multilib
- Clone the EDIE repository and change the folder permission:
sudo chmod -R 777 nov-decoder/
- Create a build folder in the root directory:
mkdir build
- Go to build folder:
cd build
- Configure cmake for static library:
cmake -DCMAKE_BUILD_TYPE=Release ..
- Configure cmake for shared along with static library:
cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_LIB_SHARED=1 ..
- Build:
make
After compiling the binaries you can also run make install
to copy the binaries to the /usr/ directory.
- Archives will be copied to
/usr/lib
- Libraries will be copied to
/usr/lib
- Public headers will be copied to
/usr/include/novatel/edie/decoder
Note:
- 'CMAKE_BUILD_TYPE' could be 'Release or Debug'
Windows
These instructions assume that you are using Windows 10.
- Install the latest version of CMAKE (https://cmake.org/install/)
- Clone the EDIE repository
- Open a PowerShell session in the root directory
- Create build directory and navigate to it:
mkdir build && cd build
- Generate configuration for static library for VS 2017:
cmake .. -G "Visual Studio 15 2017" -A Win32
- Generate configuration for shared along with static library for VS 2017:
cmake .. -G "Visual Studio 15 2017" -A Win32 -DCMAKE_LIB_SHARED=1
- You can replace the
-G
argument with any version VS newer than "Visual Studio 15 2017"
- You can replace the
- Build & Install:
cmake --build . --config Release --target install
- '--config' could be 'Release or Debug'
Build artifacts (such as public include files) will be copied to the bin directory in the root of the project. Building EDIE in Windows will also create a solution file (.sln) in the build directory, which can be opened in Visual Studio 2017. EDIE can be built by Visual Studio through this solution file. Alternatively newer version of Visual Studio can open cmake projects directly.
Generate documentation
Linux
- Update the system:
apt-get update
- Install tzdata package:
apt-get install -y tzdata
- Install doxygen and python3-pip:
apt-get install -y doxygen python3-pip
- Install exhale and sphinx_rtd_theme:
pip3 install exhale sphinx_rtd_theme
- Run Sphinx on each component e.g.
sphinx-build src/decoders/common/doc doc/decoders/common/doc/html
Windows
- Install exhale and sphinx_rtd_theme:
pip3 install exhale sphinx_rtd_theme
- Run Sphinx on each component e.g.
sphinx-build src/decoders/common/doc doc/decoders/common/doc/html
FAQ
Q: Where can I find the documention for the logs.
A: Click here to view our documentation
Q: How can the binary log data be used to extract data from a log.
A: The database folder contains the file novatel_log_definitions.hpp that can be used to cast the binary data to a structure.
Roadmap
Short-term
- Work on more examples and integration guides
- Create a script to generate log and fieldnames so it's will be easier to use the JSON format
- Expose more Stream Interfaces though the dynamic library
- More unit testing
- Support compiling in Windows with Cygwin
Long-term
- Rewrite Framing and Decoder code to remove the current couping from each other and clean up the codebase and logic
- Change DLL to output binary data. JSON parsing in Python slows down the decoder consideribly.
Authors
License
This project is licensed under the MIT License - see the LICENSE file for details
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file mymath_pkg_gravada-1.0.0.tar.gz
.
File metadata
- Download URL: mymath_pkg_gravada-1.0.0.tar.gz
- Upload date:
- Size: 4.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/4.5.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.61.0 CPython/3.8.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | cd3c26e8b0e6ff65be754378b1e68f1faccc4344112dd27f646e64714e363ca7 |
|
MD5 | c85f4044c47e789748a56e4e58750635 |
|
BLAKE2b-256 | 3bb99b65b122a81d6dd03f5b04b6e15c36b702a60b0071c671dee5d94917cae8 |
File details
Details for the file mymath_pkg_gravada-1.0.0-py3-none-any.whl
.
File metadata
- Download URL: mymath_pkg_gravada-1.0.0-py3-none-any.whl
- Upload date:
- Size: 4.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/4.5.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.61.0 CPython/3.8.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c349e9a47038bfb612747e69f0e1e1ed6ee0c44fa2873d1679dc4b8efc355dca |
|
MD5 | f7bf6128d175d6c264353bb6d2073cb0 |
|
BLAKE2b-256 | f6dfc4d84c0bbb371c7e93f3ecf54365f96be2fe022ddb9800f0ff7efd235a68 |