List functional requirements for the system (Ask the chat bot for hints if stuck.)...
List non-functional requirements for the system...
Estimate the scale of the system you are going to design...
Assume ~200 requests a second to check weather, need a system to handle that level of load, maybe ~50,000 regions each with up to 256 bytes of data, roughly 1 GB of data that will need to be updated regularly
Define what APIs are expected from the system...
Defining the system data model early on will clarify how data will flow among different components of the system. Also you could draw an ER diagram using the diagramming tool to enhance your design...
Since the National Weather Service maintains a database of weather information that is up to date a version of this app could be made without using a database since the user only needs current weather.
You should identify enough components that are needed to solve the actual problem from end to end. Also remember to draw a block diagram using the diagramming tool to augment your design. If you are unfamiliar with the tool, you can simply describe your design to the chat bot and ask it to generate a starter diagram for you to modify...
Components-
Key Interactions
Explain how the request flows from end to end in your high level design. Also you could draw a sequence diagram using the diagramming tool to enhance your explanation...
Dig deeper into 2-3 components and explain in detail how they work. For example, how well does each component scale? Any relevant algorithm or data structure you like to use for a component? Also you could draw a diagram using the diagramming tool to enhance your design...
Explain any trade offs you have made and why you made certain tech choices...
Try to discuss as many failure scenarios/bottlenecks as possible.
Possible failure scenarios:
Bottlenecks
What are some future improvements you would make? How would you mitigate the failure scenario(s) you described above?
An notification system could be added to notify users of approaching storms or other inclement weather, this could be implemented with something like AWS SNS, this increases the interactivity of the app and increases user engagement.
In addition an internal database would allow user to save favorite locations and receive notifications for multiple regions, this again would increase user engagement and app interactivity by allowing people to see current weather were friends and family may live away from them.
Localization and Internalization