diff --git a/json/migrantHousing/ALmigrantHousing.csv b/ALmigrantHousing.csv
similarity index 100%
rename from json/migrantHousing/ALmigrantHousing.csv
rename to ALmigrantHousing.csv
diff --git a/CensusStateMigrantHousing.csv b/CensusStateMigrantHousing.csv
new file mode 100644
index 0000000..2c09fd8
--- /dev/null
+++ b/CensusStateMigrantHousing.csv
@@ -0,0 +1,53 @@
+H0050007, NAME, state
+238, Alabama, 01
+362, Alaska, 02
+538, Arizona, 04
+345, Arkansas, 05
+2100, California, 06
+524, Colorado, 08
+55, Connecticut, 09
+43, Delaware, 10
+8, District of Columbia, 11
+1541, Florida, 12
+854, Georgia, 13
+117, Hawaii, 15
+632, Idaho, 16
+315, Illinois, 17
+200, Indiana, 18
+87, Iowa, 19
+129, Kansas, 20
+627, Kentucky, 21
+999, Louisiana, 22
+160, Maine, 23
+177, Maryland, 24
+161, Massachusetts, 25
+1773, Michigan, 26
+334, Minnesota, 27
+318, Mississippi, 28
+193, Missouri, 29
+283, Montana, 30
+60, Nebraska, 31
+242, Nevada, 32
+27, New Hampshire, 33
+156, New Jersey, 34
+229, New Mexico, 35
+892, New York, 36
+1620, North Carolina, 37
+319, North Dakota, 38
+346, Ohio, 39
+318, Oklahoma, 40
+461, Oregon, 41
+411, Pennsylvania, 42
+12, Rhode Island, 44
+370, South Carolina, 45
+88, South Dakota, 46
+392, Tennessee, 47
+2209, Texas, 48
+232, Utah, 49
+39, Vermont, 50
+608, Virginia, 51
+1328, Washington, 53
+118, West Virginia, 54
+249, Wisconsin, 55
+322, Wyoming, 56
+99, Puerto Rico, 72
diff --git a/USMapPoke.js b/USMapPoke.js
old mode 100644
new mode 100755
diff --git a/USTestMap.js b/USTestMap.js
old mode 100644
new mode 100755
diff --git a/font/FontAwesome.otf b/font/FontAwesome.otf
old mode 100644
new mode 100755
diff --git a/font/fontawesome-webfont.eot b/font/fontawesome-webfont.eot
old mode 100644
new mode 100755
diff --git a/font/fontawesome-webfont.svg b/font/fontawesome-webfont.svg
old mode 100644
new mode 100755
diff --git a/font/fontawesome-webfont.ttf b/font/fontawesome-webfont.ttf
old mode 100644
new mode 100755
diff --git a/font/fontawesome-webfont.woff b/font/fontawesome-webfont.woff
old mode 100644
new mode 100755
diff --git a/font/fontawesome-webfont.woff2 b/font/fontawesome-webfont.woff2
old mode 100644
new mode 100755
diff --git a/font/glyphicons-halflings-regular.eot b/font/glyphicons-halflings-regular.eot
old mode 100644
new mode 100755
diff --git a/font/glyphicons-halflings-regular.svg b/font/glyphicons-halflings-regular.svg
old mode 100644
new mode 100755
diff --git a/font/glyphicons-halflings-regular.ttf b/font/glyphicons-halflings-regular.ttf
old mode 100644
new mode 100755
diff --git a/font/glyphicons-halflings-regular.woff b/font/glyphicons-halflings-regular.woff
old mode 100644
new mode 100755
diff --git a/font/glyphicons-halflings-regular.woff2 b/font/glyphicons-halflings-regular.woff2
old mode 100644
new mode 100755
diff --git a/genericMapCreator.js b/genericMapCreator.js
old mode 100644
new mode 100755
diff --git a/gradientUSMap.js b/gradientUSMap.js
old mode 100644
new mode 100755
index 26adfee..da61d66
--- a/gradientUSMap.js
+++ b/gradientUSMap.js
@@ -86,7 +86,8 @@ function GradientMap(feature){
// .attr("id", "comboDiv" + this.id.toString());
//this.makeCombo();
-
+
+ // Creates the map div
this.mapDiv = d3.select("#mapContainer")
.append("div")
.attr("id", "mapSVG" + this.id.toString())
@@ -94,11 +95,13 @@ function GradientMap(feature){
.style("width", this.w.toString() + "px")
//.style("height", this.h.toString() + "px");
.style("margin", "0" + newThis.columnMargin);
-
+
+ // Appends an svg with the map controls/gradient to the div
this.grad_svg = this.mapDiv.append("svg")
.attr("width", this.svgScaler * 800)
.attr("height", 40);
-
+
+ // Checks to see if the zoom function is compatible with the web browser being used
if(this.canZoom){
this.svg = this.mapDiv.append("svg")
@@ -110,7 +113,7 @@ function GradientMap(feature){
.append("g");
} else {
-
+ // Appends an svg to the div for us to put a map into
this.svg = this.mapDiv.append("svg")
.attr("style", "border: thin solid gray; border-radius: 5px;")
.attr("width", this.w)
@@ -119,7 +122,7 @@ function GradientMap(feature){
.append("g");
}
-
+
d3.select("#mapContainer")
.append("div")
.attr("id", "tooltip" + this.id.toString())
@@ -128,9 +131,10 @@ function GradientMap(feature){
return this;
};
-
+
+ // This function resets the map to its original scale and position
this.reset = function(){
-
+
this.zoom.scale(1);
this.zoom.translate([0, 0]);
this.svg.transition().duration(0).
@@ -317,6 +321,7 @@ function GradientMap(feature){
}
})
+ // Apply these attributes to this map object
.on("click", newThis.linkWithObservers)
.on("mouseover", newThis.mouseOver)
.on("mouseout", newThis.mouseOut)
@@ -466,9 +471,8 @@ function GradientMap(feature){
this.rest_of_filename = new_name;
return this;
};
-
- this.drawBoxes = function(boxNum){
+ this.drawBoxes = function(boxNum){
var colorArray = makeRange(boxNum, newThis.start_color, newThis.end_color);
newThis.grad_svg.selectAll(".rectangle").remove();
@@ -696,7 +700,9 @@ function GradientMap(feature){
});
};
-
+
+ // This function computes the geometric center of each state based on the furthest points of the country/state
+ // rather than the center of mass
this.computeCenter = function(data){
var nums = [];
@@ -865,6 +871,7 @@ function GradientMap(feature){
return "#ccc";
}
})
+ // Apply these attributes to this map object
.style("stroke-width", "1")
.style("stroke", "black")
.on("click", newThis.clickWithObservers)
diff --git a/images/MS_thumb.jpg b/images/MS_thumb.jpg
old mode 100644
new mode 100755
diff --git a/images/bg_direction_nav.png b/images/bg_direction_nav.png
old mode 100644
new mode 100755
diff --git a/images/fullscreen/1.jpg b/images/fullscreen/1.jpg
deleted file mode 100644
index ffb4763..0000000
Binary files a/images/fullscreen/1.jpg and /dev/null differ
diff --git a/images/fullscreen/2.jpg b/images/fullscreen/2.jpg
deleted file mode 100644
index b8759b4..0000000
Binary files a/images/fullscreen/2.jpg and /dev/null differ
diff --git a/images/fullscreen/3.jpg b/images/fullscreen/3.jpg
deleted file mode 100644
index 145c696..0000000
Binary files a/images/fullscreen/3.jpg and /dev/null differ
diff --git a/images/fullscreen/4.jpg b/images/fullscreen/4.jpg
deleted file mode 100644
index 33f221c..0000000
Binary files a/images/fullscreen/4.jpg and /dev/null differ
diff --git a/images/fullscreen/5.jpg b/images/fullscreen/5.jpg
deleted file mode 100644
index 47d0b90..0000000
Binary files a/images/fullscreen/5.jpg and /dev/null differ
diff --git a/images/fullscreen/6.jpg b/images/fullscreen/6.jpg
deleted file mode 100644
index 31524dc..0000000
Binary files a/images/fullscreen/6.jpg and /dev/null differ
diff --git a/images/fullscreen/high.gif b/images/fullscreen/high.gif
deleted file mode 100644
index ccf5d16..0000000
Binary files a/images/fullscreen/high.gif and /dev/null differ
diff --git a/images/fullscreen/huge.gif b/images/fullscreen/huge.gif
deleted file mode 100644
index 5b3102e..0000000
Binary files a/images/fullscreen/huge.gif and /dev/null differ
diff --git a/images/fullscreen/wide.gif b/images/fullscreen/wide.gif
deleted file mode 100644
index f17c5b8..0000000
Binary files a/images/fullscreen/wide.gif and /dev/null differ
diff --git a/images/mocologo.png b/images/mocologo.png
old mode 100644
new mode 100755
diff --git a/images/mocostar.png b/images/mocostar.png
old mode 100644
new mode 100755
diff --git a/images/mocostar_icon.png b/images/mocostar_icon.png
old mode 100644
new mode 100755
diff --git a/images/overlay-bg.png b/images/overlay-bg.png
old mode 100644
new mode 100755
diff --git a/images/prettyPhoto/dark_rounded/btnNext.png b/images/prettyPhoto/dark_rounded/btnNext.png
old mode 100644
new mode 100755
diff --git a/images/prettyPhoto/dark_rounded/btnPrevious.png b/images/prettyPhoto/dark_rounded/btnPrevious.png
old mode 100644
new mode 100755
diff --git a/images/prettyPhoto/dark_rounded/contentPattern.png b/images/prettyPhoto/dark_rounded/contentPattern.png
old mode 100644
new mode 100755
diff --git a/images/prettyPhoto/dark_rounded/default_thumbnail.gif b/images/prettyPhoto/dark_rounded/default_thumbnail.gif
old mode 100644
new mode 100755
diff --git a/images/prettyPhoto/dark_rounded/loader.gif b/images/prettyPhoto/dark_rounded/loader.gif
old mode 100644
new mode 100755
diff --git a/images/prettyPhoto/dark_rounded/sprite.png b/images/prettyPhoto/dark_rounded/sprite.png
old mode 100644
new mode 100755
diff --git a/images/prettyPhoto/dark_square/btnNext.png b/images/prettyPhoto/dark_square/btnNext.png
old mode 100644
new mode 100755
diff --git a/images/prettyPhoto/dark_square/btnPrevious.png b/images/prettyPhoto/dark_square/btnPrevious.png
old mode 100644
new mode 100755
diff --git a/images/prettyPhoto/dark_square/contentPattern.png b/images/prettyPhoto/dark_square/contentPattern.png
old mode 100644
new mode 100755
diff --git a/images/prettyPhoto/dark_square/default_thumbnail.gif b/images/prettyPhoto/dark_square/default_thumbnail.gif
old mode 100644
new mode 100755
diff --git a/images/prettyPhoto/dark_square/loader.gif b/images/prettyPhoto/dark_square/loader.gif
old mode 100644
new mode 100755
diff --git a/images/prettyPhoto/dark_square/sprite.png b/images/prettyPhoto/dark_square/sprite.png
old mode 100644
new mode 100755
diff --git a/images/prettyPhoto/default/default_thumb.png b/images/prettyPhoto/default/default_thumb.png
old mode 100644
new mode 100755
diff --git a/images/prettyPhoto/default/loader.gif b/images/prettyPhoto/default/loader.gif
old mode 100644
new mode 100755
diff --git a/images/prettyPhoto/default/sprite.png b/images/prettyPhoto/default/sprite.png
old mode 100644
new mode 100755
diff --git a/images/prettyPhoto/default/sprite_next.png b/images/prettyPhoto/default/sprite_next.png
old mode 100644
new mode 100755
diff --git a/images/prettyPhoto/default/sprite_prev.png b/images/prettyPhoto/default/sprite_prev.png
old mode 100644
new mode 100755
diff --git a/images/prettyPhoto/default/sprite_x.png b/images/prettyPhoto/default/sprite_x.png
old mode 100644
new mode 100755
diff --git a/images/prettyPhoto/default/sprite_y.png b/images/prettyPhoto/default/sprite_y.png
old mode 100644
new mode 100755
diff --git a/images/prettyPhoto/facebook/btnNext.png b/images/prettyPhoto/facebook/btnNext.png
old mode 100644
new mode 100755
diff --git a/images/prettyPhoto/facebook/btnPrevious.png b/images/prettyPhoto/facebook/btnPrevious.png
old mode 100644
new mode 100755
diff --git a/images/prettyPhoto/facebook/contentPatternBottom.png b/images/prettyPhoto/facebook/contentPatternBottom.png
old mode 100644
new mode 100755
diff --git a/images/prettyPhoto/facebook/contentPatternLeft.png b/images/prettyPhoto/facebook/contentPatternLeft.png
old mode 100644
new mode 100755
diff --git a/images/prettyPhoto/facebook/contentPatternRight.png b/images/prettyPhoto/facebook/contentPatternRight.png
old mode 100644
new mode 100755
diff --git a/images/prettyPhoto/facebook/contentPatternTop.png b/images/prettyPhoto/facebook/contentPatternTop.png
old mode 100644
new mode 100755
diff --git a/images/prettyPhoto/facebook/default_thumbnail.gif b/images/prettyPhoto/facebook/default_thumbnail.gif
old mode 100644
new mode 100755
diff --git a/images/prettyPhoto/facebook/loader.gif b/images/prettyPhoto/facebook/loader.gif
old mode 100644
new mode 100755
diff --git a/images/prettyPhoto/facebook/sprite.png b/images/prettyPhoto/facebook/sprite.png
old mode 100644
new mode 100755
diff --git a/images/prettyPhoto/light_rounded/btnNext.png b/images/prettyPhoto/light_rounded/btnNext.png
old mode 100644
new mode 100755
diff --git a/images/prettyPhoto/light_rounded/btnPrevious.png b/images/prettyPhoto/light_rounded/btnPrevious.png
old mode 100644
new mode 100755
diff --git a/images/prettyPhoto/light_rounded/default_thumbnail.gif b/images/prettyPhoto/light_rounded/default_thumbnail.gif
old mode 100644
new mode 100755
diff --git a/images/prettyPhoto/light_rounded/loader.gif b/images/prettyPhoto/light_rounded/loader.gif
old mode 100644
new mode 100755
diff --git a/images/prettyPhoto/light_rounded/sprite.png b/images/prettyPhoto/light_rounded/sprite.png
old mode 100644
new mode 100755
diff --git a/images/prettyPhoto/light_square/btnNext.png b/images/prettyPhoto/light_square/btnNext.png
old mode 100644
new mode 100755
diff --git a/images/prettyPhoto/light_square/btnPrevious.png b/images/prettyPhoto/light_square/btnPrevious.png
old mode 100644
new mode 100755
diff --git a/images/prettyPhoto/light_square/default_thumbnail.gif b/images/prettyPhoto/light_square/default_thumbnail.gif
old mode 100644
new mode 100755
diff --git a/images/prettyPhoto/light_square/loader.gif b/images/prettyPhoto/light_square/loader.gif
old mode 100644
new mode 100755
diff --git a/images/prettyPhoto/light_square/sprite.png b/images/prettyPhoto/light_square/sprite.png
old mode 100644
new mode 100755
diff --git a/images/thumbnails/flash-logo.png b/images/thumbnails/flash-logo.png
deleted file mode 100644
index 4b81e00..0000000
Binary files a/images/thumbnails/flash-logo.png and /dev/null differ
diff --git a/images/thumbnails/quicktime-logo.gif b/images/thumbnails/quicktime-logo.gif
deleted file mode 100644
index b6a20ef..0000000
Binary files a/images/thumbnails/quicktime-logo.gif and /dev/null differ
diff --git a/images/thumbnails/t_1.jpg b/images/thumbnails/t_1.jpg
deleted file mode 100644
index 8c4e865..0000000
Binary files a/images/thumbnails/t_1.jpg and /dev/null differ
diff --git a/images/thumbnails/t_2.jpg b/images/thumbnails/t_2.jpg
deleted file mode 100644
index 7f427c6..0000000
Binary files a/images/thumbnails/t_2.jpg and /dev/null differ
diff --git a/images/thumbnails/t_3.jpg b/images/thumbnails/t_3.jpg
deleted file mode 100644
index 91b774a..0000000
Binary files a/images/thumbnails/t_3.jpg and /dev/null differ
diff --git a/images/thumbnails/t_4.jpg b/images/thumbnails/t_4.jpg
deleted file mode 100644
index 9781430..0000000
Binary files a/images/thumbnails/t_4.jpg and /dev/null differ
diff --git a/images/thumbnails/t_5.jpg b/images/thumbnails/t_5.jpg
deleted file mode 100644
index 7c16952..0000000
Binary files a/images/thumbnails/t_5.jpg and /dev/null differ
diff --git a/index.html b/index.html
old mode 100644
new mode 100755
diff --git a/js/bootstrap.js b/js/bootstrap.js
old mode 100644
new mode 100755
diff --git a/js/bootstrap.min.js b/js/bootstrap.min.js
old mode 100644
new mode 100755
diff --git a/js/npm.js b/js/npm.js
old mode 100644
new mode 100755
diff --git a/jscolor/arrow.gif b/jscolor/arrow.gif
old mode 100644
new mode 100755
diff --git a/jscolor/cross.gif b/jscolor/cross.gif
old mode 100644
new mode 100755
diff --git a/jscolor/demo.html b/jscolor/demo.html
old mode 100644
new mode 100755
diff --git a/jscolor/hs.png b/jscolor/hs.png
old mode 100644
new mode 100755
diff --git a/jscolor/hv.png b/jscolor/hv.png
old mode 100644
new mode 100755
diff --git a/jscolor/jscolor.js b/jscolor/jscolor.js
old mode 100644
new mode 100755
diff --git a/json/CensusStateMigrantHousing.csv b/json/CensusStateMigrantHousing.csv
new file mode 100644
index 0000000..2c09fd8
--- /dev/null
+++ b/json/CensusStateMigrantHousing.csv
@@ -0,0 +1,53 @@
+H0050007, NAME, state
+238, Alabama, 01
+362, Alaska, 02
+538, Arizona, 04
+345, Arkansas, 05
+2100, California, 06
+524, Colorado, 08
+55, Connecticut, 09
+43, Delaware, 10
+8, District of Columbia, 11
+1541, Florida, 12
+854, Georgia, 13
+117, Hawaii, 15
+632, Idaho, 16
+315, Illinois, 17
+200, Indiana, 18
+87, Iowa, 19
+129, Kansas, 20
+627, Kentucky, 21
+999, Louisiana, 22
+160, Maine, 23
+177, Maryland, 24
+161, Massachusetts, 25
+1773, Michigan, 26
+334, Minnesota, 27
+318, Mississippi, 28
+193, Missouri, 29
+283, Montana, 30
+60, Nebraska, 31
+242, Nevada, 32
+27, New Hampshire, 33
+156, New Jersey, 34
+229, New Mexico, 35
+892, New York, 36
+1620, North Carolina, 37
+319, North Dakota, 38
+346, Ohio, 39
+318, Oklahoma, 40
+461, Oregon, 41
+411, Pennsylvania, 42
+12, Rhode Island, 44
+370, South Carolina, 45
+88, South Dakota, 46
+392, Tennessee, 47
+2209, Texas, 48
+232, Utah, 49
+39, Vermont, 50
+608, Virginia, 51
+1328, Washington, 53
+118, West Virginia, 54
+249, Wisconsin, 55
+322, Wyoming, 56
+99, Puerto Rico, 72
diff --git a/json/countyPokes/AKpoke.csv b/json/countyPokes/AKpoke.csv
old mode 100644
new mode 100755
diff --git a/json/countyPokes/ALpoke.csv b/json/countyPokes/ALpoke.csv
old mode 100644
new mode 100755
diff --git a/json/countyPokes/ARpoke.csv b/json/countyPokes/ARpoke.csv
old mode 100644
new mode 100755
diff --git a/json/countyPokes/AZpoke.csv b/json/countyPokes/AZpoke.csv
old mode 100644
new mode 100755
diff --git a/json/countyPokes/CApoke.csv b/json/countyPokes/CApoke.csv
old mode 100644
new mode 100755
diff --git a/json/countyPokes/COpoke.csv b/json/countyPokes/COpoke.csv
old mode 100644
new mode 100755
diff --git a/json/countyPokes/CTpoke.csv b/json/countyPokes/CTpoke.csv
old mode 100644
new mode 100755
diff --git a/json/countyPokes/DCpoke.csv b/json/countyPokes/DCpoke.csv
old mode 100644
new mode 100755
diff --git a/json/countyPokes/DEpoke.csv b/json/countyPokes/DEpoke.csv
old mode 100644
new mode 100755
diff --git a/json/countyPokes/FLpoke.csv b/json/countyPokes/FLpoke.csv
old mode 100644
new mode 100755
diff --git a/json/countyPokes/GApoke.csv b/json/countyPokes/GApoke.csv
old mode 100644
new mode 100755
diff --git a/json/countyPokes/HIpoke.csv b/json/countyPokes/HIpoke.csv
old mode 100644
new mode 100755
diff --git a/json/countyPokes/IApoke.csv b/json/countyPokes/IApoke.csv
old mode 100644
new mode 100755
diff --git a/json/countyPokes/IDpoke.csv b/json/countyPokes/IDpoke.csv
old mode 100644
new mode 100755
diff --git a/json/countyPokes/ILpoke.csv b/json/countyPokes/ILpoke.csv
old mode 100644
new mode 100755
diff --git a/json/countyPokes/INpoke.csv b/json/countyPokes/INpoke.csv
old mode 100644
new mode 100755
diff --git a/json/countyPokes/KSpoke.csv b/json/countyPokes/KSpoke.csv
old mode 100644
new mode 100755
diff --git a/json/countyPokes/KYpoke.csv b/json/countyPokes/KYpoke.csv
old mode 100644
new mode 100755
diff --git a/json/countyPokes/LApoke.csv b/json/countyPokes/LApoke.csv
old mode 100644
new mode 100755
diff --git a/json/countyPokes/MApoke.csv b/json/countyPokes/MApoke.csv
old mode 100644
new mode 100755
diff --git a/json/countyPokes/MDpoke.csv b/json/countyPokes/MDpoke.csv
old mode 100644
new mode 100755
diff --git a/json/countyPokes/MEpoke.csv b/json/countyPokes/MEpoke.csv
old mode 100644
new mode 100755
diff --git a/json/countyPokes/MIpoke.csv b/json/countyPokes/MIpoke.csv
old mode 100644
new mode 100755
diff --git a/json/countyPokes/MNpoke.csv b/json/countyPokes/MNpoke.csv
old mode 100644
new mode 100755
diff --git a/json/countyPokes/MOpoke.csv b/json/countyPokes/MOpoke.csv
old mode 100644
new mode 100755
diff --git a/json/countyPokes/MSpoke.csv b/json/countyPokes/MSpoke.csv
old mode 100644
new mode 100755
diff --git a/json/countyPokes/MTpoke.csv b/json/countyPokes/MTpoke.csv
old mode 100644
new mode 100755
diff --git a/json/countyPokes/NCpoke.csv b/json/countyPokes/NCpoke.csv
old mode 100644
new mode 100755
diff --git a/json/countyPokes/NDpoke.csv b/json/countyPokes/NDpoke.csv
old mode 100644
new mode 100755
diff --git a/json/countyPokes/NEpoke.csv b/json/countyPokes/NEpoke.csv
old mode 100644
new mode 100755
diff --git a/json/countyPokes/NHpoke.csv b/json/countyPokes/NHpoke.csv
old mode 100644
new mode 100755
diff --git a/json/countyPokes/NJpoke.csv b/json/countyPokes/NJpoke.csv
old mode 100644
new mode 100755
diff --git a/json/countyPokes/NMpoke.csv b/json/countyPokes/NMpoke.csv
old mode 100644
new mode 100755
diff --git a/json/countyPokes/NVpoke.csv b/json/countyPokes/NVpoke.csv
old mode 100644
new mode 100755
diff --git a/json/countyPokes/NYpoke.csv b/json/countyPokes/NYpoke.csv
old mode 100644
new mode 100755
diff --git a/json/countyPokes/OHpoke.csv b/json/countyPokes/OHpoke.csv
old mode 100644
new mode 100755
diff --git a/json/countyPokes/OKpoke.csv b/json/countyPokes/OKpoke.csv
old mode 100644
new mode 100755
diff --git a/json/countyPokes/ORpoke.csv b/json/countyPokes/ORpoke.csv
old mode 100644
new mode 100755
diff --git a/json/countyPokes/PApoke.csv b/json/countyPokes/PApoke.csv
old mode 100644
new mode 100755
diff --git a/json/countyPokes/PRpoke.csv b/json/countyPokes/PRpoke.csv
old mode 100644
new mode 100755
diff --git a/json/countyPokes/RIpoke.csv b/json/countyPokes/RIpoke.csv
old mode 100644
new mode 100755
diff --git a/json/countyPokes/SCpoke.csv b/json/countyPokes/SCpoke.csv
old mode 100644
new mode 100755
diff --git a/json/countyPokes/SDpoke.csv b/json/countyPokes/SDpoke.csv
old mode 100644
new mode 100755
diff --git a/json/countyPokes/TNpoke.csv b/json/countyPokes/TNpoke.csv
old mode 100644
new mode 100755
diff --git a/json/countyPokes/TXpoke.csv b/json/countyPokes/TXpoke.csv
old mode 100644
new mode 100755
diff --git a/json/countyPokes/UTpoke.csv b/json/countyPokes/UTpoke.csv
old mode 100644
new mode 100755
diff --git a/json/countyPokes/VApoke.csv b/json/countyPokes/VApoke.csv
old mode 100644
new mode 100755
diff --git a/json/countyPokes/VTpoke.csv b/json/countyPokes/VTpoke.csv
old mode 100644
new mode 100755
diff --git a/json/countyPokes/WApoke.csv b/json/countyPokes/WApoke.csv
old mode 100644
new mode 100755
diff --git a/json/countyPokes/WIpoke.csv b/json/countyPokes/WIpoke.csv
old mode 100644
new mode 100755
diff --git a/json/countyPokes/WVpoke.csv b/json/countyPokes/WVpoke.csv
old mode 100644
new mode 100755
diff --git a/json/countyPokes/WYpoke.csv b/json/countyPokes/WYpoke.csv
old mode 100644
new mode 100755
diff --git a/json/dataScraper.py b/json/dataScraper.py
old mode 100644
new mode 100755
diff --git a/json/migrantHousing/AKpoke.csv b/json/migrantHousing/AKpoke.csv
old mode 100644
new mode 100755
diff --git a/json/migrantHousing/ALpoke.csv b/json/migrantHousing/ALpoke.csv
old mode 100644
new mode 100755
diff --git a/json/migrantHousing/ARpoke.csv b/json/migrantHousing/ARpoke.csv
old mode 100644
new mode 100755
diff --git a/json/migrantHousing/AZpoke.csv b/json/migrantHousing/AZpoke.csv
old mode 100644
new mode 100755
diff --git a/json/migrantHousing/CApoke.csv b/json/migrantHousing/CApoke.csv
old mode 100644
new mode 100755
diff --git a/json/migrantHousing/COpoke.csv b/json/migrantHousing/COpoke.csv
old mode 100644
new mode 100755
diff --git a/json/migrantHousing/CTpoke.csv b/json/migrantHousing/CTpoke.csv
old mode 100644
new mode 100755
diff --git a/json/migrantHousing/DCpoke.csv b/json/migrantHousing/DCpoke.csv
old mode 100644
new mode 100755
diff --git a/json/migrantHousing/DEpoke.csv b/json/migrantHousing/DEpoke.csv
old mode 100644
new mode 100755
diff --git a/json/migrantHousing/FLpoke.csv b/json/migrantHousing/FLpoke.csv
old mode 100644
new mode 100755
diff --git a/json/migrantHousing/GApoke.csv b/json/migrantHousing/GApoke.csv
old mode 100644
new mode 100755
diff --git a/json/migrantHousing/HIpoke.csv b/json/migrantHousing/HIpoke.csv
old mode 100644
new mode 100755
diff --git a/json/migrantHousing/IApoke.csv b/json/migrantHousing/IApoke.csv
old mode 100644
new mode 100755
diff --git a/json/migrantHousing/IDpoke.csv b/json/migrantHousing/IDpoke.csv
old mode 100644
new mode 100755
diff --git a/json/migrantHousing/ILpoke.csv b/json/migrantHousing/ILpoke.csv
old mode 100644
new mode 100755
diff --git a/json/migrantHousing/INpoke.csv b/json/migrantHousing/INpoke.csv
old mode 100644
new mode 100755
diff --git a/json/migrantHousing/KSpoke.csv b/json/migrantHousing/KSpoke.csv
old mode 100644
new mode 100755
diff --git a/json/migrantHousing/KYpoke.csv b/json/migrantHousing/KYpoke.csv
old mode 100644
new mode 100755
diff --git a/json/migrantHousing/LApoke.csv b/json/migrantHousing/LApoke.csv
old mode 100644
new mode 100755
diff --git a/json/migrantHousing/MApoke.csv b/json/migrantHousing/MApoke.csv
old mode 100644
new mode 100755
diff --git a/json/migrantHousing/MDpoke.csv b/json/migrantHousing/MDpoke.csv
old mode 100644
new mode 100755
diff --git a/json/migrantHousing/MEpoke.csv b/json/migrantHousing/MEpoke.csv
old mode 100644
new mode 100755
diff --git a/json/migrantHousing/MImigrantHousing.csv b/json/migrantHousing/MImigrantHousing.csv
new file mode 100644
index 0000000..507fe9b
--- /dev/null
+++ b/json/migrantHousing/MImigrantHousing.csv
@@ -0,0 +1,84 @@
+migrant_housing,county,
+0,Alcona County,26,001
+0,Alger County,26,003
+75,Allegan County,26,005
+1,Alpena County,26,007
+40,Antrim County,26,009
+44,Arenac County,26,011
+0,Baraga County,26,013
+0,Barry County,26,015
+2,Bay County,26,017
+14,Benzie County,26,019
+262,Berrien County,26,021
+6,Branch County,26,023
+10,Calhoun County,26,025
+24,Cass County,26,027
+4,Charlevoix County,26,029
+2,Cheboygan County,26,031
+1,Chippewa County,26,033
+5,Clare County,26,035
+3,Clinton County,26,037
+1,Crawford County,26,039
+1,Delta County,26,041
+0,Dickinson County,26,043
+2,Eaton County,26,045
+5,Emmet County,26,047
+1,Genesee County,26,049
+1,Gladwin County,26,051
+2,Gogebic County,26,053
+54,Grand Traverse County,26,055
+18,Gratiot County,26,057
+0,Hillsdale County,26,059
+0,Houghton County,26,061
+7,Huron County,26,063
+20,Ingham County,26,065
+17,Ionia County,26,067
+0,Iosco County,26,069
+1,Iron County,26,071
+8,Isabella County,26,073
+4,Jackson County,26,075
+1,Kalamazoo County,26,077
+1,Kalkaska County,26,079
+157,Kent County,26,081
+0,Keweenaw County,26,083
+0,Lake County,26,085
+40,Lapeer County,26,087
+39,Leelanau County,26,089
+8,Lenawee County,26,091
+22,Livingston County,26,093
+1,Luce County,26,095
+1,Mackinac County,26,097
+7,Macomb County,26,099
+43,Manistee County,26,101
+2,Marquette County,26,103
+23,Mason County,26,105
+1,Mecosta County,26,107
+2,Menominee County,26,109
+7,Midland County,26,111
+3,Missaukee County,26,113
+14,Monroe County,26,115
+14,Montcalm County,26,117
+0,Montmorency County,26,119
+22,Muskegon County,26,121
+47,Newaygo County,26,123
+11,Oakland County,26,125
+300,Oceana County,26,127
+0,Ogemaw County,26,129
+0,Ontonagon County,26,131
+0,Osceola County,26,133
+0,Oscoda County,26,135
+2,Otsego County,26,137
+79,Ottawa County,26,139
+0,Presque Isle County,26,141
+0,Roscommon County,26,143
+1,Saginaw County,26,145
+5,St. Clair County,26,147
+9,St. Joseph County,26,149
+9,Sanilac County,26,151
+0,Schoolcraft County,26,153
+3,Shiawassee County,26,155
+6,Tuscola County,26,157
+249,Van Buren County,26,159
+1,Washtenaw County,26,161
+6,Wayne County,26,163
+2,Wexford County,26,165
\ No newline at end of file
diff --git a/json/migrantHousing/MIpoke.csv b/json/migrantHousing/MIpoke.csv
old mode 100644
new mode 100755
diff --git a/json/migrantHousing/MNmigrantHousing.csv b/json/migrantHousing/MNmigrantHousing.csv
new file mode 100644
index 0000000..81bb452
--- /dev/null
+++ b/json/migrantHousing/MNmigrantHousing.csv
@@ -0,0 +1,88 @@
+migrant_housing,county,
+0,Aitkin County,27,001
+2,Anoka County,27,003
+1,Becker County,27,005
+0,Beltrami County,27,007
+0,Benton County,27,009
+1,Big Stone County,27,011
+2,Blue Earth County,27,013
+9,Brown County,27,015
+1,Carlton County,27,017
+3,Carver County,27,019
+0,Cass County,27,021
+1,Chippewa County,27,023
+10,Chisago County,27,025
+4,Clay County,27,027
+0,Clearwater County,27,029
+0,Cook County,27,031
+0,Cottonwood County,27,033
+1,Crow Wing County,27,035
+4,Dakota County,27,037
+18,Dodge County,27,039
+0,Douglas County,27,041
+4,Faribault County,27,043
+1,Fillmore County,27,045
+6,Freeborn County,27,047
+0,Goodhue County,27,049
+1,Grant County,27,051
+9,Hennepin County,27,053
+0,Houston County,27,055
+0,Hubbard County,27,057
+0,Isanti County,27,059
+1,Itasca County,27,061
+1,Jackson County,27,063
+0,Kanabec County,27,065
+10,Kandiyohi County,27,067
+1,Kittson County,27,069
+0,Koochiching County,27,071
+2,Lac qui Parle County,27,073
+1,Lake County,27,075
+0,Lake of the Woods County,27,077
+0,Le Sueur County,27,079
+0,Lincoln County,27,081
+3,Lyon County,27,083
+3,McLeod County,27,085
+1,Mahnomen County,27,087
+18,Marshall County,27,089
+3,Martin County,27,091
+1,Meeker County,27,093
+0,Mille Lacs County,27,095
+0,Morrison County,27,097
+1,Mower County,27,099
+0,Murray County,27,101
+0,Nicollet County,27,103
+0,Nobles County,27,105
+13,Norman County,27,107
+41,Olmsted County,27,109
+8,Otter Tail County,27,111
+1,Pennington County,27,113
+0,Pine County,27,115
+0,Pipestone County,27,117
+7,Polk County,27,119
+0,Pope County,27,121
+0,Ramsey County,27,123
+1,Red Lake County,27,125
+3,Redwood County,27,127
+31,Renville County,27,129
+0,Rice County,27,131
+0,Rock County,27,133
+0,Roseau County,27,135
+0,St. Louis County,27,137
+0,Scott County,27,139
+9,Sherburne County,27,141
+28,Sibley County,27,143
+1,Stearns County,27,145
+0,Steele County,27,147
+4,Stevens County,27,149
+1,Swift County,27,151
+4,Todd County,27,153
+3,Traverse County,27,155
+17,Wabasha County,27,157
+1,Wadena County,27,159
+3,Waseca County,27,161
+13,Washington County,27,163
+0,Watonwan County,27,165
+14,Wilkin County,27,167
+3,Winona County,27,169
+1,Wright County,27,171
+3,Yellow Medicine County,27,173
\ No newline at end of file
diff --git a/json/migrantHousing/MNpoke.csv b/json/migrantHousing/MNpoke.csv
old mode 100644
new mode 100755
diff --git a/json/migrantHousing/MOmigrantHousing.csv b/json/migrantHousing/MOmigrantHousing.csv
new file mode 100644
index 0000000..ba495f5
--- /dev/null
+++ b/json/migrantHousing/MOmigrantHousing.csv
@@ -0,0 +1,116 @@
+migrant_housing,county,
+1,Adair County,29,001
+0,Andrew County,29,003
+0,Atchison County,29,005
+2,Audrain County,29,007
+0,Barry County,29,009
+2,Barton County,29,011
+1,Bates County,29,013
+2,Benton County,29,015
+2,Bollinger County,29,017
+2,Boone County,29,019
+0,Buchanan County,29,021
+5,Butler County,29,023
+0,Caldwell County,29,025
+5,Callaway County,29,027
+5,Camden County,29,029
+26,Cape Girardeau County,29,031
+1,Carroll County,29,033
+0,Carter County,29,035
+3,Cass County,29,037
+1,Cedar County,29,039
+0,Chariton County,29,041
+0,Christian County,29,043
+0,Clark County,29,045
+1,Clay County,29,047
+0,Clinton County,29,049
+0,Cole County,29,051
+0,Cooper County,29,053
+0,Crawford County,29,055
+0,Dade County,29,057
+0,Dallas County,29,059
+0,Daviess County,29,061
+0,DeKalb County,29,063
+0,Dent County,29,065
+1,Douglas County,29,067
+12,Dunklin County,29,069
+0,Franklin County,29,071
+0,Gasconade County,29,073
+0,Gentry County,29,075
+22,Greene County,29,077
+0,Grundy County,29,079
+0,Harrison County,29,081
+0,Henry County,29,083
+0,Hickory County,29,085
+0,Holt County,29,087
+0,Howard County,29,089
+0,Howell County,29,091
+0,Iron County,29,093
+14,Jackson County,29,095
+0,Jasper County,29,097
+4,Jefferson County,29,099
+1,Johnson County,29,101
+0,Knox County,29,103
+0,Laclede County,29,105
+25,Lafayette County,29,107
+1,Lawrence County,29,109
+0,Lewis County,29,111
+1,Lincoln County,29,113
+0,Linn County,29,115
+0,Livingston County,29,117
+0,McDonald County,29,119
+0,Macon County,29,121
+0,Madison County,29,123
+1,Maries County,29,125
+0,Marion County,29,127
+0,Mercer County,29,129
+3,Miller County,29,131
+6,Mississippi County,29,133
+1,Moniteau County,29,135
+0,Monroe County,29,137
+0,Montgomery County,29,139
+3,Morgan County,29,141
+3,New Madrid County,29,143
+2,Newton County,29,145
+0,Nodaway County,29,147
+0,Oregon County,29,149
+1,Osage County,29,151
+0,Ozark County,29,153
+1,Pemiscot County,29,155
+1,Perry County,29,157
+0,Pettis County,29,159
+0,Phelps County,29,161
+0,Pike County,29,163
+3,Platte County,29,165
+0,Polk County,29,167
+0,Pulaski County,29,169
+0,Putnam County,29,171
+0,Ralls County,29,173
+0,Randolph County,29,175
+0,Ray County,29,177
+0,Reynolds County,29,179
+0,Ripley County,29,181
+2,St. Charles County,29,183
+0,St. Clair County,29,185
+2,Ste. Genevieve County,29,186
+0,St. Francois County,29,187
+4,St. Louis County,29,189
+1,Saline County,29,195
+0,Schuyler County,29,197
+0,Scotland County,29,199
+1,Scott County,29,201
+0,Shannon County,29,203
+0,Shelby County,29,205
+8,Stoddard County,29,207
+0,Stone County,29,209
+0,Sullivan County,29,211
+0,Taney County,29,213
+0,Texas County,29,215
+7,Vernon County,29,217
+1,Warren County,29,219
+0,Washington County,29,221
+0,Wayne County,29,223
+0,Webster County,29,225
+0,Worth County,29,227
+1,Wright County,29,229
+1,St. Louis city,29,510
\ No newline at end of file
diff --git a/json/migrantHousing/MOpoke.csv b/json/migrantHousing/MOpoke.csv
old mode 100644
new mode 100755
diff --git a/json/migrantHousing/MSmigrantHousing.csv b/json/migrantHousing/MSmigrantHousing.csv
new file mode 100644
index 0000000..7933f12
--- /dev/null
+++ b/json/migrantHousing/MSmigrantHousing.csv
@@ -0,0 +1,83 @@
+migrant_housing,county,
+5,Adams County,28,001
+1,Alcorn County,28,003
+2,Amite County,28,005
+0,Attala County,28,007
+0,Benton County,28,009
+11,Bolivar County,28,011
+19,Calhoun County,28,013
+0,Carroll County,28,015
+0,Chickasaw County,28,017
+1,Choctaw County,28,019
+1,Claiborne County,28,021
+0,Clarke County,28,023
+0,Clay County,28,025
+18,Coahoma County,28,027
+0,Copiah County,28,029
+1,Covington County,28,031
+15,DeSoto County,28,033
+6,Forrest County,28,035
+0,Franklin County,28,037
+7,George County,28,039
+0,Greene County,28,041
+0,Grenada County,28,043
+7,Hancock County,28,045
+31,Harrison County,28,047
+4,Hinds County,28,049
+4,Holmes County,28,051
+13,Humphreys County,28,053
+0,Issaquena County,28,055
+0,Itawamba County,28,057
+5,Jackson County,28,059
+1,Jasper County,28,061
+0,Jefferson County,28,063
+1,Jefferson Davis County,28,065
+3,Jones County,28,067
+1,Kemper County,28,069
+4,Lafayette County,28,071
+12,Lamar County,28,073
+1,Lauderdale County,28,075
+2,Lawrence County,28,077
+0,Leake County,28,079
+2,Lee County,28,081
+7,Leflore County,28,083
+0,Lincoln County,28,085
+11,Lowndes County,28,087
+1,Madison County,28,089
+1,Marion County,28,091
+1,Marshall County,28,093
+4,Monroe County,28,095
+0,Montgomery County,28,097
+8,Neshoba County,28,099
+0,Newton County,28,101
+0,Noxubee County,28,103
+3,Oktibbeha County,28,105
+2,Panola County,28,107
+3,Pearl River County,28,109
+2,Perry County,28,111
+9,Pike County,28,113
+0,Pontotoc County,28,115
+0,Prentiss County,28,117
+1,Quitman County,28,119
+4,Rankin County,28,121
+2,Scott County,28,123
+1,Sharkey County,28,125
+2,Simpson County,28,127
+3,Smith County,28,129
+2,Stone County,28,131
+17,Sunflower County,28,133
+2,Tallahatchie County,28,135
+5,Tate County,28,137
+0,Tippah County,28,139
+1,Tishomingo County,28,141
+8,Tunica County,28,143
+0,Union County,28,145
+3,Walthall County,28,147
+0,Warren County,28,149
+6,Washington County,28,151
+4,Wayne County,28,153
+1,Webster County,28,155
+9,Wilkinson County,28,157
+2,Winston County,28,159
+0,Yalobusha County,28,161
+15,Yazoo County,28,163
\ No newline at end of file
diff --git a/json/migrantHousing/MSpoke.csv b/json/migrantHousing/MSpoke.csv
old mode 100644
new mode 100755
diff --git a/json/migrantHousing/MTmigrantHousing.csv b/json/migrantHousing/MTmigrantHousing.csv
new file mode 100644
index 0000000..71d508d
--- /dev/null
+++ b/json/migrantHousing/MTmigrantHousing.csv
@@ -0,0 +1,57 @@
+migrant_housing,county,
+62,Beaverhead County,30,001
+8,Big Horn County,30,003
+2,Blaine County,30,005
+2,Broadwater County,30,007
+2,Carbon County,30,009
+2,Carter County,30,011
+3,Cascade County,30,013
+3,Chouteau County,30,015
+2,Custer County,30,017
+1,Daniels County,30,019
+0,Dawson County,30,021
+4,Deer Lodge County,30,023
+7,Fallon County,30,025
+2,Fergus County,30,027
+17,Flathead County,30,029
+23,Gallatin County,30,031
+3,Garfield County,30,033
+3,Glacier County,30,035
+2,Golden Valley County,30,037
+0,Granite County,30,039
+3,Hill County,30,041
+1,Jefferson County,30,043
+0,Judith Basin County,30,045
+31,Lake County,30,047
+2,Lewis and Clark County,30,049
+0,Liberty County,30,051
+5,Lincoln County,30,053
+0,McCone County,30,055
+16,Madison County,30,057
+1,Meagher County,30,059
+0,Mineral County,30,061
+3,Missoula County,30,063
+0,Musselshell County,30,065
+6,Park County,30,067
+0,Petroleum County,30,069
+2,Phillips County,30,071
+0,Pondera County,30,073
+5,Powder River County,30,075
+4,Powell County,30,077
+0,Prairie County,30,079
+13,Ravalli County,30,081
+10,Richland County,30,083
+2,Roosevelt County,30,085
+3,Rosebud County,30,087
+9,Sanders County,30,089
+0,Sheridan County,30,091
+0,Silver Bow County,30,093
+4,Stillwater County,30,095
+1,Sweet Grass County,30,097
+1,Teton County,30,099
+1,Toole County,30,101
+1,Treasure County,30,103
+2,Valley County,30,105
+1,Wheatland County,30,107
+0,Wibaux County,30,109
+8,Yellowstone County,30,111
\ No newline at end of file
diff --git a/json/migrantHousing/MTpoke.csv b/json/migrantHousing/MTpoke.csv
old mode 100644
new mode 100755
diff --git a/json/migrantHousing/NCmigrantHousing.csv b/json/migrantHousing/NCmigrantHousing.csv
new file mode 100644
index 0000000..bba53e8
--- /dev/null
+++ b/json/migrantHousing/NCmigrantHousing.csv
@@ -0,0 +1,101 @@
+migrant_housing,county,
+3,Alamance County,37,001
+3,Alexander County,37,003
+30,Alleghany County,37,005
+3,Anson County,37,007
+10,Ashe County,37,009
+8,Avery County,37,011
+7,Beaufort County,37,013
+5,Bertie County,37,015
+78,Bladen County,37,017
+10,Brunswick County,37,019
+18,Buncombe County,37,021
+3,Burke County,37,023
+2,Cabarrus County,37,025
+1,Caldwell County,37,027
+1,Camden County,37,029
+4,Carteret County,37,031
+18,Caswell County,37,033
+3,Catawba County,37,035
+6,Chatham County,37,037
+1,Cherokee County,37,039
+4,Chowan County,37,041
+1,Clay County,37,043
+28,Cleveland County,37,045
+22,Columbus County,37,047
+18,Craven County,37,049
+25,Cumberland County,37,051
+2,Currituck County,37,053
+5,Dare County,37,055
+7,Davidson County,37,057
+2,Davie County,37,059
+66,Duplin County,37,061
+3,Durham County,37,063
+32,Edgecombe County,37,065
+9,Forsyth County,37,067
+27,Franklin County,37,069
+0,Gaston County,37,071
+0,Gates County,37,073
+0,Graham County,37,075
+36,Granville County,37,077
+47,Greene County,37,079
+12,Guilford County,37,081
+18,Halifax County,37,083
+23,Harnett County,37,085
+6,Haywood County,37,087
+102,Henderson County,37,089
+0,Hertford County,37,091
+4,Hoke County,37,093
+34,Hyde County,37,095
+10,Iredell County,37,097
+9,Jackson County,37,099
+58,Johnston County,37,101
+6,Jones County,37,103
+1,Lee County,37,105
+38,Lenoir County,37,107
+5,Lincoln County,37,109
+3,McDowell County,37,111
+50,Macon County,37,113
+5,Madison County,37,115
+10,Martin County,37,117
+11,Mecklenburg County,37,119
+6,Mitchell County,37,121
+5,Montgomery County,37,123
+5,Moore County,37,125
+69,Nash County,37,127
+9,New Hanover County,37,129
+8,Northampton County,37,131
+16,Onslow County,37,133
+9,Orange County,37,135
+13,Pamlico County,37,137
+0,Pasquotank County,37,139
+26,Pender County,37,141
+1,Perquimans County,37,143
+36,Person County,37,145
+29,Pitt County,37,147
+1,Polk County,37,149
+19,Randolph County,37,151
+4,Richmond County,37,153
+11,Robeson County,37,155
+32,Rockingham County,37,157
+4,Rowan County,37,159
+5,Rutherford County,37,161
+155,Sampson County,37,163
+3,Scotland County,37,165
+1,Stanly County,37,167
+23,Stokes County,37,169
+16,Surry County,37,171
+8,Swain County,37,173
+9,Transylvania County,37,175
+9,Tyrrell County,37,177
+2,Union County,37,179
+9,Vance County,37,181
+27,Wake County,37,183
+11,Warren County,37,185
+1,Washington County,37,187
+4,Watauga County,37,189
+40,Wayne County,37,191
+13,Wilkes County,37,193
+14,Wilson County,37,195
+14,Yadkin County,37,197
+0,Yancey County,37,199
\ No newline at end of file
diff --git a/json/migrantHousing/NCpoke.csv b/json/migrantHousing/NCpoke.csv
old mode 100644
new mode 100755
diff --git a/json/migrantHousing/NDmigrantHousing.csv b/json/migrantHousing/NDmigrantHousing.csv
new file mode 100644
index 0000000..9217ca0
--- /dev/null
+++ b/json/migrantHousing/NDmigrantHousing.csv
@@ -0,0 +1,54 @@
+migrant_housing,county,
+1,Adams County,38,001
+0,Barnes County,38,003
+0,Benson County,38,005
+0,Billings County,38,007
+1,Bottineau County,38,009
+3,Bowman County,38,011
+0,Burke County,38,013
+1,Burleigh County,38,015
+2,Cass County,38,017
+4,Cavalier County,38,019
+6,Dickey County,38,021
+6,Divide County,38,023
+3,Dunn County,38,025
+0,Eddy County,38,027
+1,Emmons County,38,029
+4,Foster County,38,031
+2,Golden Valley County,38,033
+18,Grand Forks County,38,035
+0,Grant County,38,037
+0,Griggs County,38,039
+0,Hettinger County,38,041
+4,Kidder County,38,043
+1,LaMoure County,38,045
+0,Logan County,38,047
+0,McHenry County,38,049
+0,McIntosh County,38,051
+0,McKenzie County,38,053
+7,McLean County,38,055
+1,Mercer County,38,057
+3,Morton County,38,059
+35,Mountrail County,38,061
+5,Nelson County,38,063
+1,Oliver County,38,065
+21,Pembina County,38,067
+1,Pierce County,38,069
+0,Ramsey County,38,071
+0,Ransom County,38,073
+0,Renville County,38,075
+2,Richland County,38,077
+0,Rolette County,38,079
+10,Sargent County,38,081
+0,Sheridan County,38,083
+0,Sioux County,38,085
+0,Slope County,38,087
+10,Stark County,38,089
+2,Steele County,38,091
+5,Stutsman County,38,093
+0,Towner County,38,095
+2,Traill County,38,097
+100,Walsh County,38,099
+9,Ward County,38,101
+1,Wells County,38,103
+47,Williams County,38,105
\ No newline at end of file
diff --git a/json/migrantHousing/NDpoke.csv b/json/migrantHousing/NDpoke.csv
old mode 100644
new mode 100755
diff --git a/json/migrantHousing/NEmigrantHousing.csv b/json/migrantHousing/NEmigrantHousing.csv
new file mode 100644
index 0000000..944f6d3
--- /dev/null
+++ b/json/migrantHousing/NEmigrantHousing.csv
@@ -0,0 +1,94 @@
+migrant_housing,county,
+3,Adams County,31,001
+0,Antelope County,31,003
+0,Arthur County,31,005
+1,Banner County,31,007
+0,Blaine County,31,009
+1,Boone County,31,011
+4,Box Butte County,31,013
+0,Boyd County,31,015
+0,Brown County,31,017
+0,Buffalo County,31,019
+0,Burt County,31,021
+0,Butler County,31,023
+0,Cass County,31,025
+0,Cedar County,31,027
+1,Chase County,31,029
+1,Cherry County,31,031
+0,Cheyenne County,31,033
+0,Clay County,31,035
+0,Colfax County,31,037
+0,Cuming County,31,039
+1,Custer County,31,041
+0,Dakota County,31,043
+0,Dawes County,31,045
+3,Dawson County,31,047
+4,Deuel County,31,049
+0,Dixon County,31,051
+0,Dodge County,31,053
+5,Douglas County,31,055
+2,Dundy County,31,057
+0,Fillmore County,31,059
+0,Franklin County,31,061
+1,Frontier County,31,063
+0,Furnas County,31,065
+0,Gage County,31,067
+0,Garden County,31,069
+0,Garfield County,31,071
+0,Gosper County,31,073
+0,Grant County,31,075
+0,Greeley County,31,077
+1,Hall County,31,079
+0,Hamilton County,31,081
+2,Harlan County,31,083
+0,Hayes County,31,085
+1,Hitchcock County,31,087
+4,Holt County,31,089
+0,Hooker County,31,091
+0,Howard County,31,093
+0,Jefferson County,31,095
+0,Johnson County,31,097
+1,Kearney County,31,099
+2,Keith County,31,101
+0,Keya Paha County,31,103
+0,Kimball County,31,105
+0,Knox County,31,107
+1,Lancaster County,31,109
+2,Lincoln County,31,111
+1,Logan County,31,113
+0,Loup County,31,115
+1,McPherson County,31,117
+0,Madison County,31,119
+0,Merrick County,31,121
+1,Morrill County,31,123
+0,Nance County,31,125
+0,Nemaha County,31,127
+0,Nuckolls County,31,129
+1,Otoe County,31,131
+0,Pawnee County,31,133
+1,Perkins County,31,135
+3,Phelps County,31,137
+0,Pierce County,31,139
+0,Platte County,31,141
+0,Polk County,31,143
+1,Red Willow County,31,145
+2,Richardson County,31,147
+0,Rock County,31,149
+0,Saline County,31,151
+0,Sarpy County,31,153
+3,Saunders County,31,155
+1,Scotts Bluff County,31,157
+1,Seward County,31,159
+0,Sheridan County,31,161
+0,Sherman County,31,163
+1,Sioux County,31,165
+1,Stanton County,31,167
+0,Thayer County,31,169
+0,Thomas County,31,171
+0,Thurston County,31,173
+0,Valley County,31,175
+1,Washington County,31,177
+0,Wayne County,31,179
+0,Webster County,31,181
+0,Wheeler County,31,183
+0,York County,31,185
\ No newline at end of file
diff --git a/json/migrantHousing/NEpoke.csv b/json/migrantHousing/NEpoke.csv
old mode 100644
new mode 100755
diff --git a/json/migrantHousing/NHmigrantHousing.csv b/json/migrantHousing/NHmigrantHousing.csv
new file mode 100644
index 0000000..831c4ac
--- /dev/null
+++ b/json/migrantHousing/NHmigrantHousing.csv
@@ -0,0 +1,11 @@
+migrant_housing,county,
+4,Belknap County,33,001
+2,Carroll County,33,003
+2,Cheshire County,33,005
+3,Coos County,33,007
+6,Grafton County,33,009
+4,Hillsborough County,33,011
+0,Merrimack County,33,013
+3,Rockingham County,33,015
+1,Strafford County,33,017
+2,Sullivan County,33,019
\ No newline at end of file
diff --git a/json/migrantHousing/NHpoke.csv b/json/migrantHousing/NHpoke.csv
old mode 100644
new mode 100755
diff --git a/json/migrantHousing/NJmigrantHousing.csv b/json/migrantHousing/NJmigrantHousing.csv
new file mode 100644
index 0000000..4a8da17
--- /dev/null
+++ b/json/migrantHousing/NJmigrantHousing.csv
@@ -0,0 +1,22 @@
+migrant_housing,county,
+21,Atlantic County,34,001
+4,Bergen County,34,003
+9,Burlington County,34,005
+4,Camden County,34,007
+17,Cape May County,34,009
+12,Cumberland County,34,011
+1,Essex County,34,013
+4,Gloucester County,34,015
+27,Hudson County,34,017
+3,Hunterdon County,34,019
+4,Mercer County,34,021
+4,Middlesex County,34,023
+13,Monmouth County,34,025
+8,Morris County,34,027
+4,Ocean County,34,029
+1,Passaic County,34,031
+3,Salem County,34,033
+4,Somerset County,34,035
+3,Sussex County,34,037
+5,Union County,34,039
+5,Warren County,34,041
\ No newline at end of file
diff --git a/json/migrantHousing/NJpoke.csv b/json/migrantHousing/NJpoke.csv
old mode 100644
new mode 100755
diff --git a/json/migrantHousing/NMmigrantHousing.csv b/json/migrantHousing/NMmigrantHousing.csv
new file mode 100644
index 0000000..a6b4cd2
--- /dev/null
+++ b/json/migrantHousing/NMmigrantHousing.csv
@@ -0,0 +1,34 @@
+migrant_housing,county,
+4,Bernalillo County,35,001
+5,Catron County,35,003
+5,Chaves County,35,005
+4,Cibola County,35,006
+5,Colfax County,35,007
+3,Curry County,35,009
+3,De Baca County,35,011
+16,Doña Ana County,35,013
+4,Eddy County,35,015
+1,Grant County,35,017
+7,Guadalupe County,35,019
+0,Harding County,35,021
+2,Hidalgo County,35,023
+13,Lea County,35,025
+25,Lincoln County,35,027
+1,Los Alamos County,35,028
+12,Luna County,35,029
+25,McKinley County,35,031
+2,Mora County,35,033
+1,Otero County,35,035
+3,Quay County,35,037
+8,Rio Arriba County,35,039
+11,Roosevelt County,35,041
+4,Sandoval County,35,043
+20,San Juan County,35,045
+3,San Miguel County,35,047
+2,Santa Fe County,35,049
+1,Sierra County,35,051
+5,Socorro County,35,053
+3,Taos County,35,055
+11,Torrance County,35,057
+2,Union County,35,059
+18,Valencia County,35,061
\ No newline at end of file
diff --git a/json/migrantHousing/NMpoke.csv b/json/migrantHousing/NMpoke.csv
old mode 100644
new mode 100755
diff --git a/json/migrantHousing/NVmigrantHousing.csv b/json/migrantHousing/NVmigrantHousing.csv
new file mode 100644
index 0000000..acc1ee8
--- /dev/null
+++ b/json/migrantHousing/NVmigrantHousing.csv
@@ -0,0 +1,18 @@
+migrant_housing,county,
+8,Churchill County,32,001
+45,Clark County,32,003
+3,Douglas County,32,005
+37,Elko County,32,007
+0,Esmeralda County,32,009
+15,Eureka County,32,011
+48,Humboldt County,32,013
+8,Lander County,32,015
+16,Lincoln County,32,017
+24,Lyon County,32,019
+5,Mineral County,32,021
+12,Nye County,32,023
+13,Pershing County,32,027
+1,Storey County,32,029
+2,Washoe County,32,031
+4,White Pine County,32,033
+1,Carson City,32,510
\ No newline at end of file
diff --git a/json/migrantHousing/NVpoke.csv b/json/migrantHousing/NVpoke.csv
old mode 100644
new mode 100755
diff --git a/json/migrantHousing/NYmigrantHousing.csv b/json/migrantHousing/NYmigrantHousing.csv
new file mode 100644
index 0000000..a468d93
--- /dev/null
+++ b/json/migrantHousing/NYmigrantHousing.csv
@@ -0,0 +1,63 @@
+migrant_housing,county,
+8,Albany County,36,001
+0,Allegany County,36,003
+4,Bronx County,36,005
+2,Broome County,36,007
+5,Cattaraugus County,36,009
+8,Cayuga County,36,011
+4,Chautauqua County,36,013
+7,Chemung County,36,015
+5,Chenango County,36,017
+10,Clinton County,36,019
+20,Columbia County,36,021
+0,Cortland County,36,023
+4,Delaware County,36,025
+13,Dutchess County,36,027
+6,Erie County,36,029
+4,Essex County,36,031
+10,Franklin County,36,033
+0,Fulton County,36,035
+11,Genesee County,36,037
+8,Greene County,36,039
+0,Hamilton County,36,041
+3,Herkimer County,36,043
+2,Jefferson County,36,045
+13,Kings County,36,047
+0,Lewis County,36,049
+0,Livingston County,36,051
+3,Madison County,36,053
+30,Monroe County,36,055
+5,Montgomery County,36,057
+3,Nassau County,36,059
+46,New York County,36,061
+40,Niagara County,36,063
+3,Oneida County,36,065
+16,Onondaga County,36,067
+18,Ontario County,36,069
+46,Orange County,36,071
+106,Orleans County,36,073
+29,Oswego County,36,075
+5,Otsego County,36,077
+1,Putnam County,36,079
+20,Queens County,36,081
+7,Rensselaer County,36,083
+8,Richmond County,36,085
+2,Rockland County,36,087
+0,St. Lawrence County,36,089
+17,Saratoga County,36,091
+1,Schenectady County,36,093
+2,Schoharie County,36,095
+1,Schuyler County,36,097
+0,Seneca County,36,099
+4,Steuben County,36,101
+33,Suffolk County,36,103
+8,Sullivan County,36,105
+1,Tioga County,36,107
+0,Tompkins County,36,109
+97,Ulster County,36,111
+12,Warren County,36,113
+14,Washington County,36,115
+160,Wayne County,36,117
+3,Westchester County,36,119
+3,Wyoming County,36,121
+1,Yates County,36,123
\ No newline at end of file
diff --git a/json/migrantHousing/NYpoke.csv b/json/migrantHousing/NYpoke.csv
old mode 100644
new mode 100755
diff --git a/json/migrantHousing/OHmigrantHousing.csv b/json/migrantHousing/OHmigrantHousing.csv
new file mode 100644
index 0000000..e69de29
diff --git a/json/migrantHousing/OHpoke.csv b/json/migrantHousing/OHpoke.csv
old mode 100644
new mode 100755
diff --git a/json/migrantHousing/OKpoke.csv b/json/migrantHousing/OKpoke.csv
old mode 100644
new mode 100755
diff --git a/json/migrantHousing/ORpoke.csv b/json/migrantHousing/ORpoke.csv
old mode 100644
new mode 100755
diff --git a/json/migrantHousing/PApoke.csv b/json/migrantHousing/PApoke.csv
old mode 100644
new mode 100755
diff --git a/json/migrantHousing/PRpoke.csv b/json/migrantHousing/PRpoke.csv
old mode 100644
new mode 100755
diff --git a/json/migrantHousing/RIpoke.csv b/json/migrantHousing/RIpoke.csv
old mode 100644
new mode 100755
diff --git a/json/migrantHousing/SCpoke.csv b/json/migrantHousing/SCpoke.csv
old mode 100644
new mode 100755
diff --git a/json/migrantHousing/SDpoke.csv b/json/migrantHousing/SDpoke.csv
old mode 100644
new mode 100755
diff --git a/json/migrantHousing/TNpoke.csv b/json/migrantHousing/TNpoke.csv
old mode 100644
new mode 100755
diff --git a/json/migrantHousing/TXpoke.csv b/json/migrantHousing/TXpoke.csv
old mode 100644
new mode 100755
diff --git a/json/migrantHousing/UTpoke.csv b/json/migrantHousing/UTpoke.csv
old mode 100644
new mode 100755
diff --git a/json/migrantHousing/VApoke.csv b/json/migrantHousing/VApoke.csv
old mode 100644
new mode 100755
diff --git a/json/migrantHousing/VTpoke.csv b/json/migrantHousing/VTpoke.csv
old mode 100644
new mode 100755
diff --git a/json/migrantHousing/WApoke.csv b/json/migrantHousing/WApoke.csv
old mode 100644
new mode 100755
diff --git a/json/migrantHousing/WIpoke.csv b/json/migrantHousing/WIpoke.csv
old mode 100644
new mode 100755
diff --git a/json/migrantHousing/WVpoke.csv b/json/migrantHousing/WVpoke.csv
old mode 100644
new mode 100755
diff --git a/json/migrantHousing/WYpoke.csv b/json/migrantHousing/WYpoke.csv
old mode 100644
new mode 100755
diff --git a/json/test.txt b/json/test.txt
old mode 100644
new mode 100755
diff --git a/json/us-states.json b/json/us-states.json
old mode 100644
new mode 100755
diff --git a/mapManager.js b/mapManager.js
old mode 100644
new mode 100755
diff --git a/morningstar.html b/morningstar.html
old mode 100644
new mode 100755
index b3f6492..d9a86ad
--- a/morningstar.html
+++ b/morningstar.html
@@ -1,8 +1,8 @@
-
+
+ ================================================== -->
CS Projects: MorningStar
@@ -10,31 +10,31 @@
+ ================================================== -->
+ ================================================== -->
-
-
-
-
-
-
+
+
+
+
+
+
-
-
+
+
-
+
-
-
+
+
@@ -42,87 +42,89 @@
+
+
+
+
+
+
-
+
-
-
-
- Back to Projects Page
-
-
MorningStar
-
-
-
-
-
-
-
-
-
-
-
-
If you'd like to check out the blog that the group has written about the progress of the project, you can click here , or for the Github repository for the project is located here .
-
-
Map Description
-
The Hemoglobin A1c (HA1c) test is a blood test measuring the average blood sugar level over the past 2 to 3 months, and is used to see how well a person's diabetes is being controlled. Poke ratio is a ratio represented by the average number of tests done per patient over the number of tests, with an ideal number of 4 tests per year per patient. The Medicare billing data used in this project is collected in 2013. The average poke ratio across the United States is 1.63; State ratio ranges from a minimum of 1.39 to a maximum of 1.79. The map below shows poke ratio per state (including Puerto Rico) by Blue-White Scale, while areas without any data available are in grey. You may change the gradient level and colors for more details.
-
-
Directions: To navigate the map simply click on any state to enter the state and view county data. To return to the Country Map, click on the state again or click on Reload Map Button.
-
* Note - The zoom function is not compatible with Mozilla Firefox.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
-
-
-
\ No newline at end of file
+ }
+
+ function removeUS(){
+ removeUSMap();
+ }
+ function getColor(input_id){
+ return "#" + document.getElementById(input_id).color.toString();
+ }
+ function recolor(){
+ manager.setMapColors(String(getColor("min_color_picker")), String(getColor("max_color_picker")));
+ }
+
+
+