Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

def get _ weather _ violation ( weather , minimums ) : Returns a string representing the type of weather violation (

def get_weather_violation(weather,minimums):
"""
Returns a string representing the type of weather violation (empty string if flight is ok)
The weather reading is a dictionary with the keys: 'visibility', 'wind', and 'sky'.
These correspond to a visibility, wind, and ceiling measurement, respectively. It
may have other keys as well, but these can be ignored. For example, this is a possible
weather value:
{
"visibility": {
"prevailing": 21120.0,
"minimum": 1400.0,
"maximum": 21120.0,
"units": "FT"
},
"wind": {
"speed": 12.0,
"crosswind": 3.0,
"gusts": 18.0,
"units": "KT"
},
"temperature": {
"value": -15.6,
"units": "C"
},
"sky": [
{
"cover": "clouds",
"type": "broken",
"height": 2100.0,
"units": "FT"
}
],
"weather": [
"light snow"
]
}
The minimums is a list of the four minimums ceiling, visibility, and max windspeed,
and max crosswind speed in that order. Ceiling is in feet, visibility is in statute
miles, max wind and cross wind speed are both in knots. For example,
[3000.0,10.0,20.0,8.0] is a potential minimums list.
This function uses bad_visibility, bad_winds, and bad_ceiling as helpers. It returns
'Visibility' if the only problem is bad visibility, 'Winds' if the only problem is
wind, and 'Ceiling' if the only problem is the ceiling. If there are multiple
problems, it returns 'Weather', It returns 'Unknown' if no weather reading is
available (e.g. weather is None). Finally, it returns ''(the empty string) if
the weather is fine and there are no violations.
Parameter weather: The weather measure
Precondition: weather is dictionary containing a visibility, wind, and ceiling measurement,
or None if no weather reading is available.
Parameter minimums: The safety minimums for ceiling, visibility, wind, and crosswind
Precondition: minimums is a list of four floats
"""
I need assistance in implementing this function.

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Machine Learning And Knowledge Discovery In Databases European Conference Ecml Pkdd 2010 Barcelona Spain September 2010 Proceedings Part 3 Lnai 6323

Authors: Jose L. Balcazar ,Francesco Bonchi ,Aristides Gionis ,Michele Sebag

2010th Edition

3642159389, 978-3642159381

More Books

Students also viewed these Databases questions

Question

Explain how psychologists use traits to describe personality.

Answered: 1 week ago