SDAP-486: Renamed tile Z-axis dimension to 'elevation' from 'depth' (#18)

Co-authored-by: rileykk <rileykk@jpl.nasa.gov>
2 files changed
tree: d125079b3ca026d1c7490e48c718438af5cbc8e7
  1. gradle/
  2. jenkins/
  3. src/
  4. .gitignore
  5. build.gradle
  6. CHANGELOG.md
  7. CONTRIBUTING.md
  8. DISCLAIMER
  9. gradle.properties
  10. gradlew
  11. gradlew.bat
  12. LICENSE
  13. nexusproto.iml
  14. NOTICE
  15. README
  16. README.md
  17. settings.gradle
README.md

nexus-messages

This project contains the protobuf definition for a NexusTile. By compiling the protobuf specification, both Java and Python objects are generated.

For Developers

Prerequisites

This project is build using Gradle. This repository contains a Gradle wrapper so, if building from the repository, no further action is needed; however, the Gradle wrapper is not included in the source distribution. If building from the source distribution, you will need to install Gradle manually.

Developer Installation

  1. Build source:

    • If building from repository: run ./gradlew clean build install
    • If building from source distribution: run gradle clean build install
  2. cd into /build/python/nexusproto

  3. Setup a separate conda env or activate an existing one

    conda create --name nexus-messages python
    source activate nexus-messages
    
  4. Install Conda dependencies

    conda install numpy
    
  5. Run python setup.py install