Created terrain information functions for Python3 module (getTERR and sendPOST) #294
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 (
getTERR
andsendPOST
) 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).getTERR
allows users to read terrain information (lat, lng, elevation, normals (nx, ny, nz), wet/dry, status) by sending aTERR
UDP message.sendPOST
sets the position of the specified aircraft and returns terrain information by sending aPOST
UDP message (this is a combination ofsendPOSI
andgetTERR
, as explained in Created sendPOST function that combines functions of sendPOSI and getTERR #205).