first commit

This commit is contained in:
José Conde
2023-11-30 19:25:50 +01:00
parent 61c4bd5738
commit 6cc2d320a5
9 changed files with 26609 additions and 0 deletions

View File

@ -0,0 +1,19 @@
body {
font-family: Helvetica, Arial, sans-serif
}
h1 {
background-color: #2a5599;
color: #FFFFFF;
padding: 5px;
}
.mainView {
display: flex;
flex-grow: 1;
}
.mainView div {
border: solid 1px #000000;
width: 100%;
}

23042
public/assets/data/routes.csv Normal file

File diff suppressed because it is too large Load Diff

View File

22
public/index.html Normal file
View File

@ -0,0 +1,22 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Airlines Routes</title>
<link rel="stylesheet" href="./assets/css/styles.css" />
</head>
<body>
<h1>Airlines Routes</h1>
<div class="mainView">
<div>
<h2>Airlines</h2>
<svg id="AirlinesChart"></svg>
</div>
<div>
<h2>Airports</h2>
<svg id="Map"></svg>
</div>
</div>
</body>
</html>