Created terrain information functions for Python3 module (getTERR and sendPOST)#294
Open
axkralj990 wants to merge 3 commits intonasa:developfrom
Open
Created terrain information functions for Python3 module (getTERR and sendPOST)#294axkralj990 wants to merge 3 commits intonasa:developfrom
axkralj990 wants to merge 3 commits intonasa:developfrom
Conversation
Author
|
In the most recent commit (da8a7ef), I fixed the UDP terrain response unpacking problem. Initially, I referred to the response message structure described in the spreadsheet posted in the comments of #186, and I ignored the last 3 4-byte elements of the message. Both functions now return all the elements contained in the response ([Lat, Lon, Alt, Nx, Ny, Nz, Vx, Vy, Vz, wet, result]). |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
I created two new functions (
getTERRandsendPOST) for reading terrain information with the Python3 module. Both functions are based on the functions with the same name for the C module (#204 and #205).getTERRallows users to read terrain information (lat, lng, elevation, normals (nx, ny, nz), wet/dry, status) by sending aTERRUDP message.sendPOSTsets the position of the specified aircraft and returns terrain information by sending aPOSTUDP message (this is a combination ofsendPOSIandgetTERR, as explained in Created sendPOST function that combines functions of sendPOSI and getTERR #205).