RADA


The following are the performance requirements for the measurements: - Flight height: between 3200m to at least 3700m above sea level (at least 500m above the Aragats Research Station)
- Individual flight duration: at least 30 minutes 
- Measurements to be taken: height, temperature, humidity, atmospheric pressure at a rate of 1 Hz 
- Measurements to be taken: electric field and ionization radiation at a rate of 1 Hz in 50m intervals. 

Narrative 
In atmospheric physics, it is essential to study atmospheric electricity to understand thundercloud charging and lightning initiation. To do this, a vehicle such as a balloon or a drone must be launched during thunderstorm time and be capable of withstanding strong winds. Unfortunately, we lack sufficient data and models to explain these complex phenomena. Recent research at Aragats on thunderstorm ground enhancements (TGEs) has shown the existence of electron accelerators in thunderclouds and strong electric fields near the earth's surface. However, to confirm these discoveries, more atmospheric measurements are required.

Materials For RADA
import requests def get_weather(api_key, city): base_url = "http://api.openweathermap.org/data/2.5/weather" params = { 'q': city, 'appid': api_key, 'units': 'metric' # You can change this to 'imperial' for Fahrenheit } response = requests.get(base_url, params=params) if response.status_code == 200: weather_data = response.json() print(f"Weather in {city}:") print(f"Temperature: {weather_data['main']['temp']}°C") print(f"Description: {weather_data['weather'][0]['description']}") print(f"Humidity: {weather_data['main']['humidity']}%") print(f"Wind Speed: {weather_data['wind']['speed']} m/s") else: print(f"Error: Unable to fetch weather data. Status code: {response.status_code}") if __name__ == "__main__": # Replace 'your_api_key' with your actual API key api_key = 'your_api_key' city = 'Yerevan' get_weather(api_key, city)