Added importation of aerodromes

This commit is contained in:
2025-09-30 20:23:15 -05:00
parent 9493fffff5
commit 30b2b76290
6 changed files with 73799 additions and 0 deletions

View File

@@ -9,6 +9,7 @@ class Aerodrome(models.Model):
country = models.CharField(max_length=3)
latitude = models.FloatField()
longitude = models.FloatField()
altitude = models.IntegerField()
def __str__(self):
return f"{self.icao} - {self.city}"