Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

flights landed & planes in hangar #70

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
43 changes: 43 additions & 0 deletions aws_setup/end2end/macata1/flights_landed.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
import os
import sys
from datetime import datetime
import pytz

def check_flight_status():
try:
# Add the directory containing the file to Python path
sys.path.append(os.path.dirname(os.path.abspath(__file__)))

# Dynamically import the initial_info module
import initial_info

# Get the current time in UTC
current_time = datetime.now(pytz.UTC)

# Check each flight in the list
for flight in initial_info.flights:
# Parse the times and ensure they are UTC
departure_time = datetime.fromisoformat(flight['departureTime']).replace(tzinfo=pytz.UTC)
arrival_time = datetime.fromisoformat(flight['arrivalTime']).replace(tzinfo=pytz.UTC)

# Check if flight has landed (current time is past arrival time)
if current_time > arrival_time:
print(f"Landed Flight Details:")
print(f" Flight ID: {flight['flightId']}")
print(f" Plate Number: {flight['plateNumber']}")
print(f" Origin: {flight['origin']}")
print(f" Destination: {flight['destination']}")
print(f" Departure Time: {departure_time}")
print(f" Arrival Time: {arrival_time}")
print(f" Occupied Seats: {flight['occupiedSeats']}")
print() # Empty line for readability

except ImportError:
print("Error: Could not import initial_info. Please ensure the file exists and is named 'initial_info.py'.")
except KeyError as e:
print(f"Error: Missing required flight information - {e}")
except Exception as e:
print(f"An unexpected error occurred: {e}")

if __name__ == "__main__":
check_flight_status()
176 changes: 176 additions & 0 deletions aws_setup/end2end/macata1/initial_info.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,176 @@
# Info examples form Jacinto's father notebooks

airplanes = [
{
"plateNumber": "EC-XYZ1",
"type": "Cessna 208 Caravan",
"lastMaintenanceDate": "2024-04-15",
"nextMaintenanceDate": "2025-04-15",
"capacity": 9,
"ownerId": "O-12345",
"ownerName": "Madrid Flying Club",
"hangarId": "H-01",
"fuel_capacity": 700
},
{
"plateNumber": "EC-ABC2",
"type": "Piper PA-31 Navajo",
"lastMaintenanceDate": "2025-02-10",
"nextMaintenanceDate": "2027-02-10",
"capacity": 7,
"ownerId": "O-23456",
"ownerName": "Catalina Aviation",
"hangarId": "H-01",
"fuel_capacity": 1000
}
]


flights = [
{
"flightId": "FL-2025-001",
"plateNumber": "EC-XYZ1",
"arrivalTime": "2025-03-01T09:30:00",
"departureTime": "2025-03-01T14:45:00",
"fuelConsumption": 350,
"occupiedSeats": 7,
"origin": "Valencia",
"destination": "Paris",
"passengerIds": [("P-1001", 'Boarded'), ("P-1002", 'Boarded'), ("P-1003", 'Boarded'), ("P-1004", 'Boarded'), ("P-1005", 'Boarded'), ("P-1006", 'Boarded')]
},
{
"flightId": "FL-2025-002",
"plateNumber": "EC-ABC2",
"arrivalTime": "2025-03-02T11:15:00",
"departureTime": "2025-03-02T16:30:00",
"fuelConsumption": 850,
"occupiedSeats": 8,
"origin": "Barcelona",
"destination": "London",
"passengerIds": [("P-1010", 'Boarded'), ("P-1011", 'Boarded'), ("P-1012", 'Cancelled'), ("P-1013", 'Boarded'), ("P-1014", 'Boarded'), ("P-1015", 'Boarded'), ("P-1016", 'Boarded'), ("P-1017", 'Cancelled')]
}
]


passengers = [
{
"passengerId": "P-1001",
"name": "Ana García Martínez",
"nationalId": "12345678A",
"dateOfBirth": "1991-05-15",
},
{
"passengerId": "P-1002",
"name": "Carlos Rodríguez López",
"nationalId": "87654321B",
"dateOfBirth": "1973-11-30",
},
{
"passengerId": "P-1003",
"name": "Elena Sánchez García",
"nationalId": "11223344C",
"dateOfBirth": "1988-03-25",
},
{
"passengerId": "P-1004",
"name": "Javier Martínez Pérez",
"nationalId": "44332211D",
"dateOfBirth": "1995-07-10",
},
{
"passengerId": "P-1005",
"name": "María López Rodríguez",
"nationalId": "33441122E",
"dateOfBirth": "1985-09-05",
},
{
"passengerId": "P-1006",
"name": "Pedro García Sánchez",
"nationalId": "22114433F",
"dateOfBirth": "1979-01-20",
},
{
"passengerId": "P-1007",
"name": "Sara Pérez Martínez",
"nationalId": "55443322G",
"dateOfBirth": "1999-12-15",
},
{
"passengerId": "P-1008",
"name": "Juan Sánchez López",
"nationalId": "66554433H",
"dateOfBirth": "1977-08-25",
},
{
"passengerId": "P-1009",
"name": "Lucía Martínez García",
"nationalId": "77665544I",
"dateOfBirth": "1990-02-10",
},
{
"passengerId": "P-1010",
"name": "Antonio García López",
"nationalId": "88776655J",
"dateOfBirth": "1980-06-05",
},
{
"passengerId": "P-1011",
"name": "Beatriz López Sánchez",
"nationalId": "99887766K",
"dateOfBirth": "1983-04-30",
},
{
"passengerId": "P-1012",
"name": "Carmen Martínez Rodríguez",
"nationalId": "11001122L",
"dateOfBirth": "1975-10-15",
},
{
"passengerId": "P-1013",
"name": "David Sánchez Martínez",
"nationalId": "22110033M",
"dateOfBirth": "1987-03-20",
},
{
"passengerId": "P-1014",
"name": "Elena García López",
"nationalId": "33221100N",
"dateOfBirth": "1978-07-25",
},
{
"passengerId": "P-1015",
"name": "Fernando López Martínez",
"nationalId": "44332211O",
"dateOfBirth": "1982-01-10",
},
{
"passengerId": "P-1016",
"name": "Gloria Martínez Sánchez",
"nationalId": "55443322P",
"dateOfBirth": "1984-09-05",
},
{
"passengerId": "P-1017",
"name": "Hugo Sánchez García",
"nationalId": "66554433Q",
"dateOfBirth": "1986-02-20",
},
{
"passengerId": "P-1018",
"name": "Isabel García López",
"nationalId": "77665544R",
"dateOfBirth": "1976-12-15",
},
{
"passengerId": "P-1019",
"name": "Javier López Martínez",
"nationalId": "88776655S",
"dateOfBirth": "1981-08-25",
},
{
"passengerId": "P-1020",
"name": "Karla Martínez García",
"nationalId": "99887766T",
"dateOfBirth": "1989-02-10",
}
]
4 changes: 4 additions & 0 deletions aws_setup/end2end/macata1/passengers_in_aerdrome.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
from initial_info import passengers, flights, airplanes

for person in passengers:
if person['flightId'] !=
10 changes: 10 additions & 0 deletions aws_setup/end2end/macata1/planes_hangar.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
import initial_info

print("Planes in the hangar:")
for plane in initial_info.airplanes:
print(f" Plate Number: {plane['plateNumber']}")
print(f" Model: {plane['type']}")
print(f" Capacity: {plane['capacity']}")
print(f" ownerID: {plane['ownerId']}")
print(f" hangarID: {plane['hangarId']}")
print() # Empty line for readability