Skip to content
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
Binary file modified .DS_Store
Binary file not shown.
334,630 changes: 334,630 additions & 0 deletions data/population.json

Large diffs are not rendered by default.

Binary file added html/.DS_Store
Binary file not shown.
2 changes: 1 addition & 1 deletion html/d3-examples.html
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ <h3>Team 11</h3>
<div class="caption">
<h3>Team 12</h3>
<p></p>
<p><a href="team_12.html" class="btn btn-primary" role="button">View</a>
<p><a href="../teams/team_12/team_12.html" class="btn btn-primary" role="button">View</a>
</div>
</div>
</div>
Expand Down
79 changes: 0 additions & 79 deletions html/team_12.html

This file was deleted.

Binary file added teams/.DS_Store
Binary file not shown.
Binary file added teams/team_12/.DS_Store
Binary file not shown.
16 changes: 16 additions & 0 deletions teams/team_12/Readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# UFO Sightings across the World

Team 12 presents our findings in this section.

We have 10 static visualizations and 2 dynamic visualizations (fetching data from SOLR) to support our inferences and validate our initial assumptions.

### Team Members

Srinidhi Nandakumar

Rahul Radhakrishnan

Weiwei Duan

Aditya Natarajan

52 changes: 52 additions & 0 deletions teams/team_12/css/airports.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@

.background {
fill: none;
pointer-events: all;
}

#states {
fill: #aaaaaa;
}

#states .active {
fill: #ff0000;
fill-opacity: .5;
}

#state-borders {
fill: none;
stroke: #ffffff;
stroke-width: 1.5px;
stroke-linejoin: round;
stroke-linecap: round;
pointer-events: none;
}

path.link {
fill: none;
stroke: #666666;
stroke-width: 1.5px;
}

.stroke {
fill: none;
stroke: #000;
stroke-width: 3px;
}

.fill {
fill: #fff;
}

.graticule {
fill: none;
stroke: #777;
stroke-width: .5px;
stroke-opacity: .5;
}

.route {
fill: none;
stroke: blue;
stroke-width: 3px;
}
6 changes: 6 additions & 0 deletions teams/team_12/css/bootstrap.min.css

Large diffs are not rendered by default.

58 changes: 58 additions & 0 deletions teams/team_12/css/cancer.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@

body { font: 12px Arial;}

path {
stroke: #ccc;
stroke-width: 1;
fill: none;
}

.axis path,
.axis line {
fill: none;
stroke: grey;
stroke-width: 1;
shape-rendering: crispEdges;
}
#legendContainer{
/*position:absolute;
top:60px;
left:10px;*/
overflow: auto;
height:700px;
width:110px;
}
/*#legend{
width:90px;
height:700px;
}*/
.legend {
font-size: 12px;
font-weight: normal;
text-anchor: left;
}
.legendcheckbox{
cursor: pointer;
}
#showAll{
/*position:relative;*/
/*top:20px;
left:880px;*/
}
#clearAll{
/*position:relative;*/
/*top:20px;
left:950px;*/
}
input{
border-radius:5px;
padding:5px 10px;
background:#999;
border:0;
color:#fff;
}
#inds{
/*position:relative;*/
/*top:10px;*/
/*left:30px;*/
}
24 changes: 24 additions & 0 deletions teams/team_12/css/pie.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@

.arc text {
font: 10px sans-serif;
text-anchor: middle;
}

.arc path {
stroke: #fff;
}

.toolTip {
position: absolute;
display: none;
width: auto;
height: auto;
background: none repeat scroll 0 0 white;
border: 0 none;
border-radius: 8px 8px 8px 8px;
box-shadow: -3px 3px 15px #888888;
color: black;
font: 12px sans-serif;
padding: 5px;
text-align: center;
}
Loading