Complete the code to set the maximum altitude for the geofence.
geofence.set_max_altitude([1])The maximum altitude is set by passing a numeric value like 100 to the set_max_altitude method.
Complete the code to define the geofence boundary as a circle with a radius.
geofence.set_boundary_circle(center, [1])The geofence boundary circle is defined by its radius, not diameter or perimeter.
Fix the error in the code to activate the geofence.
geofence.[1]()The correct method to turn on the geofence is activate().
Fill both blanks to create a rectangular geofence boundary with given corners.
geofence.set_boundary_rectangle([1], [2])
A rectangular geofence is defined by its top_left_corner and bottom_right_corner coordinates.
Fill both blanks to create a geofence dictionary with keys and a condition.
geofence_data = {: {BLANK_2}} for [2] in boundaries if [1] > 0This is a dictionary comprehension. It starts with {, uses key and boundary as variables, and ends with }.