github.com/bluenviron/gomavlib/v2@v2.2.1-0.20240308101627-2c07e3da629c/pkg/dialects/common/message_terrain_check.go (about)

     1  //autogenerated:yes
     2  //nolint:revive,misspell,govet,lll
     3  package common
     4  
     5  // Request that the vehicle report terrain height at the given location (expected response is a TERRAIN_REPORT). Used by GCS to check if vehicle has all terrain data needed for a mission.
     6  type MessageTerrainCheck struct {
     7  	// Latitude
     8  	Lat int32
     9  	// Longitude
    10  	Lon int32
    11  }
    12  
    13  // GetID implements the message.Message interface.
    14  func (*MessageTerrainCheck) GetID() uint32 {
    15  	return 135
    16  }