-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·96 lines (78 loc) · 3.49 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<!DOCTYPE html>
<html>
<head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width,
initial-scale=1.0"> <title> Tutorials</title>
</head>
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.0/js/bootstrap.min.js" integrity="sha384-uefMccjFJAIv6A+rW+L4AHf99KvxDjWSu1z9VI8SKNVmz4sk7buKt/6v9KI65qnm" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.0/umd/popper.min.js" integrity="sha384-cs/chFZiN24E4KMATLdqdvsezGxaGsi4hLGOzlXwp5UZB1LY//20VyM2taTB4QvJ" crossorigin="anonymous"></script>
<script type="text/javascript" src="js/main.js"></script>
<script type="text/javascript" src="js/external/particles.js"></script>
<script src="https://cdn.jsdelivr.net/particles.js/2.0.0/particles.min.js"></script>
<link href="https://fonts.googleapis.com/css?family=Roboto|Roboto+Mono" rel="stylesheet">
<link rel="stylesheet" href="css/main.css"></link>
<!-- <link rel="stylesheet" href="css/particles.css"></link> -->
<!-- <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.0/css/bootstrap.min.css" integrity="sha384-9gVQ4dYFwwWSjIDZnLEWnxCjeSWFphJiwGPXr1jddIhOegiu1FwO5qRGvFXOdJZ4" crossorigin="anonymous"></link> -->
<script src="js/external/particles.js"></script>
<!-- <link rel="stylesheet" type="text/css" href="css/main.css"/> -->
<style>
</style>
</script>
<body>
<!-- <div class="container">
<div id="particles-js"></div>
</div> -->
<div class="title_container">
<div class="main_title">Geospatial Analysis in Python </div>
</div>
<!-- <script> particlesJS.load('particles-js', 'assets/particles.json', function() {
console.log('callback - particles.js config loaded');
});
</script> -->
</script>
<div class="all_blocks_cont">
<a href ="pages/part_one.html">
<div class="block_container">
<img class="bck_img" src ="assets/part_one.svg"/>
<div class="block_title_cont">
<span class="chapters">Part I: </span> Exploratory Data Analysis For Satellite Images</div>
</div>
</a>
<a href ="pages/part_two.html">
<div class="block_container">
<img class="bck_img" src ="assets/part_two.svg"/>
<div class="block_title_cont">
<span class="chapters">Part II: </span> Image Enhancement and Component Analysis</div>
</div>
</a>
<a href = "pages/part_three.html">
<div class="block_container">
<img class="bck_img" src ="assets/part_three.svg"/>
<div class="block_title_cont">
<span class="chapters">Part III: </span> Spectral Indices and Transformation </div>
</div>
</a>
<a href = "pages/part_four.html">
<div class="block_container">
<img class="bck_img" src ="assets/part_four.svg"/>
<div class="block_title_cont">
<span class="chapters">Part IV: </span> Supervised and Unsupervised Classification </div>
</div>
</a>
<a href = "pages/part_five.html">
<div class="block_container">
<img class="bck_img" src ="assets/part_five.svg"/>
<div class="block_title_cont">
<span class="chapters">Part V: </span> Post Image Classification Change Detection </div>
</div>
</a>
<a href = "pages/part_six.html">
<div class="block_container">
<img class="bck_img" src ="assets/part_six.svg"/>
<div class="block_title_cont">
<span class="chapters">Part VI: </span> Surface Extraction with Decision Trees </div>
</div>
</a>
</div>
</body>
</html>