Skip to content

Instantly share code, notes, and snippets.

@pbogden
Last active December 19, 2015 18:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pbogden/5998845 to your computer and use it in GitHub Desktop.
Save pbogden/5998845 to your computer and use it in GitHub Desktop.
data from medicare.gov

This demo uses a small sampling of the data from medicare.gov. Scores plotted below the map provide a measure the quality of care from Medicare-certified hospitals across the country. This visualization uses tooltips and color change to extend the capabilities of the USGS earthake demo.

Functionality includes:

  1. Sub-sampling -- As with the earthake demo, you can run your mouse along the lower plot to sub-sample medicare providers. The plot shows score versus (east-west) location on the map for each provider.

  2. Tooltips -- Run your mouse over a provider location on the map to see additional information, in this case a tooltip pops up and displays the provider ID and name.
    In addition, the selected value changes from brown to yellow on both the map and the lower plot to reveal relative score.

  3. Multiple data sets -- Use the full-screen view to select among the various measures that the Centers for Medicare & Medicaid Services uses to compare providers.

All of these features are readily customized, and many other analysis capabilties can be added.

var outerWidth=960,outerHeight=500,mapHeight=300,marginWidth=30,strokeWidth=1,jsonData,measureIndex,overlay,layer,map,mapCircleRadius=8,mapCirclePadding=10,plotCircleRadius=5,tooltip,originLon=-95,originLat=35,plotContainerHeight=outerHeight-mapHeight;plotWidth=outerWidth-2*marginWidth;plotHeight=plotContainerHeight-2*marginWidth;d3.select("body").append("div").attr("id","map").style("width",outerWidth+"px").style("height",mapHeight+"px");
var svg=d3.select("body").append("svg").attr("width",outerWidth).attr("height",plotContainerHeight),x=d3.scale.linear().range([0,plotWidth]),y=d3.scale.linear().range([plotHeight,0]),xAxis=d3.svg.axis().scale(x).orient("bottom").ticks(5),yAxis=d3.svg.axis().scale(y).orient("left").ticks(5),brush=d3.svg.brush().x(x).y(y).on("brush",brushed);map=new google.maps.Map(document.getElementById("map"),{zoom:3,center:new google.maps.LatLng(originLat,originLon),mapTypeId:google.maps.MapTypeId.TERRAIN});
tooltip=d3.select("body").append("div").attr("class","tooltip").style("visibility","hidden").text("a simple tooltip");var subPlot=svg.append("g").attr("transform","translate("+1.5*marginWidth+", "+marginWidth/2+")");subPlot.append("rect").attr("width",plotWidth).attr("height",plotHeight).attr("stroke-width",strokeWidth).attr("stroke","black").attr("fill","none");subPlot.append("g").attr("class","x brush").call(brush);overlay=new google.maps.OverlayView;
d3.json("sample.json",function(c,b){console.log("Reading the json data...error = "+c);for(var d=[],a=b.length,g=0;g<a;g++)d.push(b[g].measure);jsonData=b;a=filterMeasures(b,d[0]);createMap(a);g=d.getUnique();console.log("# of filtered data: "+a.length);console.log("# of measures: "+d.length);console.log("# of unique measures: "+g.length);select=d3.select("body").append("table").selectAll("tr").data(g).enter().append("tr").append("td").text(function(a){return a}).attr("id",function(a,e){return e}).attr("onclick",
function(a,e){return"myFunction("+e+");"});myFunction(0)});overlay.onRemove=function(){d3.selectAll("div.stations").remove();subPlot.selectAll("circle.dot").remove();subPlot.selectAll("g.x.axis").remove();subPlot.selectAll("g.y.axis").remove()};
function createMap(c){overlay.onAdd=function(){x.domain(d3.extent(c.map(function(a){return+a.location.longitude})));y.domain(d3.extent(c.map(function(a){return+a.score})));subPlot.append("g").attr("class","x axis").attr("transform","translate(0,"+plotHeight+")").call(xAxis);subPlot.append("g").attr("class","y axis").attr("transform","translate(0,0)").attr("x",plotWidth).attr("y",plotHeight+marginWidth).call(yAxis);subPlot.append("text").attr("class","x label").attr("text-anchor","middle").attr("x",
plotWidth/2).attr("y",plotHeight+marginWidth).text("East-West Provider Location (degrees longitude)");subPlot.append("text").attr("class","y label").attr("text-anchor","end").attr("x",-plotHeight/2).attr("y",-6-marginWidth/3).attr("dy","-1em").attr("transform","rotate(-90)").text("Score");var b=subPlot.selectAll(".dot").data(c);b.enter().append("circle").attr("class","dot").attr("cx",function(a){return x(+a.location.longitude)}).attr("cy",function(a){return y(+a.score)}).attr("r",plotCircleRadius).attr("id",
function(a){return"circle"+a.provider_id}).on("mouseover",function(a){tooltip.style("visibility","visible").style("top",event.pageY-10+"px").style("left",event.pageX+20+"px");tooltip[0][0].innerHTML="Provider ID: "+a.provider_id+"<br>"+a.hospital_name;console.log("mouseover: "+a.provider_id);console.log("looking for this circle: #circle"+a.provider_id);window["circle"+a.provider_id].style.fill="yellow";window["mapCircle"+a.provider_id].style.fill="yellow"}).on("mousemove",function(a){tooltip.style("top",
event.pageY-10+"px").style("left",event.pageX+20+"px");console.log("mousemove: "+a.provider_id)}).on("mouseout",function(a){tooltip.style("visibility","hidden");console.log("mouseout: "+a.provider_id);window["circle"+a.provider_id].style.fill="brown";window["mapCircle"+a.provider_id].style.fill="brown"});b.exit().remove();var d=d3.select(this.getPanes().overlayMouseTarget).append("div").attr("class","stations");overlay.draw=function(){function a(a){this.longitude=a.location.longitude;this.latitude=
a.location.latitude;this.score=a.score;a=new google.maps.LatLng(+a.location.latitude,+a.location.longitude);a=b.fromLatLngToDivPixel(a);return d3.select(this).style("left",a.x-mapCirclePadding+"px").style("top",a.y-mapCirclePadding+"px")}var b=this.getProjection(),h=d.selectAll("svg").data(c);h.exit().remove();h.each(a);h.enter().append("svg:svg").each(a).append("svg:circle").attr("r",mapCircleRadius).attr("cx",mapCirclePadding).attr("cy",mapCirclePadding).attr("id",function(a){return"mapCircle"+
a.provider_id}).on("mouseover",function(a){tooltip.style("visibility","visible");tooltip[0][0].innerHTML="Provider ID: "+a.provider_id+"<br>"+a.hospital_name;console.log("mouseover: "+a.provider_id);console.log("looking for this circle: #circle"+a.provider_id);window["circle"+a.provider_id].style.fill="yellow";window["mapCircle"+a.provider_id].style.fill="yellow"}).on("mousemove",function(a){tooltip.style("top",event.pageY-10+"px").style("left",event.pageX+20+"px");console.log("mousemove: "+a.provider_id)}).on("mouseout",
function(a){tooltip.style("visibility","hidden");console.log("mouseout: "+a.provider_id);window["circle"+a.provider_id].style.fill="brown";window["mapCircle"+a.provider_id].style.fill="brown"})}};overlay.toggle=function(b){var d,a,c,h;2==b[1].length?(d=b[0][0],c=b[0][1],a=b[1][0],h=b[1][1]):(d=b[0][0],a=b[0][1]);layer=this.getPanes().overlayMouseTarget;var e=layer.getElementsByTagName("svg"),k=e.length;if(2==b[1].length)for(var f=0;f<k;f++)e[f].style.visibility=e[f].longitude<d||e[f].longitude>a||
e[f].score<c||e[f].score>h?"hidden":"visible";else for(f=0;f<k;f++)e[f].style.visibility=e[f].longitude<b[0]||e[f].longitude>b[1]?"hidden":"visible"};overlay.setMap(map)}function brushed(){overlay.toggle(brush.empty()?x.domain():brush.extent());console.log("[brushed()] brush.extent(): "+brush.extent())}function filterMeasures(c,b){for(var d=[],a=0;a<c.length;a++)c[a].measure==b&&d.push(c[a]);console.log("found "+d.length+" values with filterMeasures: "+b);return d}
function myFunction(c){var b=document.getElementById(c).innerHTML;console.log("HERE'S MY CHOICE: #"+c+" = "+b);b=filterMeasures(jsonData,b);createMap(b);void 0==measureIndex&&(measureIndex=0,console.log("INITIALIZING measureIndex"));document.getElementById(measureIndex).removeAttribute("bgcolor");document.getElementById(c).setAttribute("bgcolor","pink");measureIndex=c}
Array.prototype.getUnique=function(){for(var c={},b=[],d=0,a=this.length;d<a;++d)c.hasOwnProperty(this[d])||(b.push(this[d]),c[this[d]]=1);return b};
<!DOCTYPE html>
<html>
<head>
<script src="http://maps.google.com/maps/api/js?sensor=true"></script>
<script type="text/javascript" src="http://d3js.org/d3.v3.min.js"></script>
<style>
html, body, #map {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
}
.providerInfo {
position: absolute;
left: 1020px;
top: 20px;
font-size: 1.5em;
}
table, select {
position: fixed;
left: 1020px;
top: 40px;
font-size: 1.5em;
}
.line {
fill: none;
stroke: blue;
stroke-width: 1.5px;
}
.stations, .stations svg {
position: absolute;
}
.stations svg {
width: 20px;
height: 20px;
font: 10px sans-serif;
}
.stations circle, .dot {
fill: brown;
stroke: black;
stroke-width: 1.5px;
}
.brush .extent {
stroke: #fff;
fill-opacity: .125;
}
.tooltip {
margin: 30px 30px 30px 30px;
background-color: pink;
border-style: solid;
padding: 10px 10px 10px 10px;
font-size: 1.5em;
position: absolute;
}
</style>
</head>
<body>
<script type="text/javascript" src="displayData.min.js"></script>
</body>
</html>
[
{
"hospital_name": "GADSDEN REGIONAL MEDICAL CENTER",
"phone_number": {
"phone_number": "2564944000"
},
"zip_code": "35903",
"measure": "Central-Line-Associated Blood Stream Infections (CLABSI)",
"location": {
"needs_recoding": false,
"longitude": "-85.9678518794883",
"latitude": "34.00935399283879",
"human_address": "{\"address\":\"1007 GOODYEAR AVENUE\",\"city\":\"GADSDEN\",\"state\":\"AL\",\"zip\":\"35903\"}"
},
"provider_id": "010040",
"state": "AL",
"score": "0.11",
"address_1": "1007 GOODYEAR AVENUE",
"city": "GADSDEN",
"county_name": "ETOWAH"
},
{
"hospital_name": "TRINITY MEDICAL CENTER",
"phone_number": {
"phone_number": "2055921000"
},
"zip_code": "35213",
"measure": "Central-Line-Associated Blood Stream Infections (CLABSI)",
"location": {
"needs_recoding": false,
"longitude": "-86.74670284575677",
"latitude": "33.515333373232124",
"human_address": "{\"address\":\"800 MONTCLAIR RD\",\"city\":\"BIRMINGHAM\",\"state\":\"AL\",\"zip\":\"35213\"}"
},
"provider_id": "010104",
"state": "AL",
"score": "0.23",
"address_1": "800 MONTCLAIR RD",
"city": "BIRMINGHAM",
"county_name": "JEFFERSON"
},
{
"hospital_name": "MEDICAL WEST, AN AFFILIATE OF UAB HEALTH SYSTEM",
"phone_number": {
"phone_number": "2054817000"
},
"zip_code": "35021",
"measure": "Central-Line-Associated Blood Stream Infections (CLABSI)",
"location": {
"needs_recoding": false,
"longitude": "-86.9918310512831",
"latitude": "33.37291673667221",
"human_address": "{\"address\":\"995 9TH AVENUE SOUTHWEST\",\"city\":\"BESSEMER\",\"state\":\"AL\",\"zip\":\"35021\"}"
},
"provider_id": "010114",
"state": "AL",
"score": "0.00",
"address_1": "995 9TH AVENUE SOUTHWEST",
"city": "BESSEMER",
"footnote": "The lower limit of the confidence interval cannot be calculated if the number of observed infections equals zero",
"county_name": "JEFFERSON"
},
{
"hospital_name": "VERDE VALLEY MEDICAL CENTER",
"phone_number": {
"phone_number": "9286396000"
},
"zip_code": "86326",
"measure": "Central-Line-Associated Blood Stream Infections (CLABSI)",
"location": {
"needs_recoding": false,
"longitude": "-112.03151808161348",
"latitude": "34.73525477216774",
"human_address": "{\"address\":\"269 SOUTH CANDY LANE\",\"city\":\"COTTONWOOD\",\"state\":\"AZ\",\"zip\":\"86326\"}"
},
"provider_id": "030007",
"state": "AZ",
"score": "0.00",
"address_1": "269 SOUTH CANDY LANE",
"city": "COTTONWOOD",
"footnote": "The lower limit of the confidence interval cannot be calculated if the number of observed infections equals zero",
"county_name": "YAVAPAI"
},
{
"hospital_name": "PHOENIX BAPTIST HOSPITAL",
"phone_number": {
"phone_number": "6022490212"
},
"zip_code": "85015",
"measure": "Central-Line-Associated Blood Stream Infections (CLABSI)",
"location": {
"needs_recoding": false,
"longitude": "-112.10217779414913",
"latitude": "33.524192286398716",
"human_address": "{\"address\":\"2000 WEST BETHANY HOME ROAD\",\"city\":\"PHOENIX\",\"state\":\"AZ\",\"zip\":\"85015\"}"
},
"provider_id": "030030",
"state": "AZ",
"score": "0.70",
"address_1": "2000 WEST BETHANY HOME ROAD",
"city": "PHOENIX",
"county_name": "MARICOPA"
},
{
"hospital_name": "CHANDLER REGIONAL MEDICAL CENTER",
"phone_number": {
"phone_number": "4809634561"
},
"zip_code": "85224",
"measure": "Central-Line-Associated Blood Stream Infections (CLABSI)",
"location": {
"needs_recoding": false,
"longitude": "-111.87614354777645",
"latitude": "33.29762549637917",
"human_address": "{\"address\":\"475 SOUTH DOBSON ROAD\",\"city\":\"CHANDLER\",\"state\":\"AZ\",\"zip\":\"85224\"}"
},
"provider_id": "030036",
"state": "AZ",
"score": "0.68",
"address_1": "475 SOUTH DOBSON ROAD",
"city": "CHANDLER",
"county_name": "MARICOPA"
},
{
"hospital_name": "WESTERN ARIZONA REGIONAL MEDICAL CTR",
"phone_number": {
"phone_number": "9287632273"
},
"zip_code": "86442",
"measure": "Central-Line-Associated Blood Stream Infections (CLABSI)",
"location": {
"needs_recoding": false,
"longitude": "-114.55463931374209",
"latitude": "35.109831331181056",
"human_address": "{\"address\":\"2735 SILVER CREEK ROAD\",\"city\":\"BULLHEAD CITY\",\"state\":\"AZ\",\"zip\":\"86442\"}"
},
"provider_id": "030101",
"state": "AZ",
"score": "0.57",
"address_1": "2735 SILVER CREEK ROAD",
"city": "BULLHEAD CITY",
"county_name": "MOHAVE"
},
{
"hospital_name": "MOUNTAIN VISTA MEDICAL CENTER, LP",
"phone_number": {
"phone_number": "4803586100"
},
"zip_code": "85209",
"measure": "Central-Line-Associated Blood Stream Infections (CLABSI)",
"location": {
"needs_recoding": false,
"longitude": "-111.61533116605915",
"latitude": "33.39108304166405",
"human_address": "{\"address\":\"1301 SOUTH CRISMON ROAD\",\"city\":\"MESA\",\"state\":\"AZ\",\"zip\":\"85209\"}"
},
"provider_id": "030121",
"state": "AZ",
"score": "0.56",
"address_1": "1301 SOUTH CRISMON ROAD",
"city": "MESA",
"county_name": "MARICOPA"
},
{
"hospital_name": "WHITE COUNTY MEDICAL CENTER",
"phone_number": {
"phone_number": "5012783100"
},
"zip_code": "72143",
"measure": "Central-Line-Associated Blood Stream Infections (CLABSI)",
"location": {
"needs_recoding": false,
"longitude": "-91.69490686080813",
"latitude": "35.25047882757589",
"human_address": "{\"address\":\"3214 EAST RACE AVENUE\",\"city\":\"SEARCY\",\"state\":\"AR\",\"zip\":\"72143\"}"
},
"provider_id": "040014",
"state": "AR",
"score": "0.68",
"address_1": "3214 EAST RACE AVENUE",
"city": "SEARCY",
"county_name": "WHITE"
},
{
"hospital_name": "NW ARKANSAS HOSPITALS, LLC",
"phone_number": {
"phone_number": "4797515711"
},
"zip_code": "72764",
"measure": "Central-Line-Associated Blood Stream Infections (CLABSI)",
"location": {
"needs_recoding": false,
"longitude": "-94.13664779780191",
"latitude": "36.181364535871694",
"human_address": "{\"address\":\"609 WEST MAPLE AVENUE\",\"city\":\"SPRINGDALE\",\"state\":\"AR\",\"zip\":\"72764\"}"
},
"provider_id": "040022",
"state": "AR",
"score": "0.91",
"address_1": "609 WEST MAPLE AVENUE",
"city": "SPRINGDALE",
"county_name": "WASHINGTON"
},
{
"hospital_name": "BAXTER REGIONAL MEDICAL CENTER",
"phone_number": {
"phone_number": "8705081000"
},
"zip_code": "72653",
"measure": "Central-Line-Associated Blood Stream Infections (CLABSI)",
"location": {
"needs_recoding": false,
"longitude": "-92.39438188549212",
"latitude": "36.34293614863523",
"human_address": "{\"address\":\"624 HOSPITAL DRIVE\",\"city\":\"MOUNTAIN HOME\",\"state\":\"AR\",\"zip\":\"72653\"}"
},
"provider_id": "040027",
"state": "AR",
"score": "0.00",
"address_1": "624 HOSPITAL DRIVE",
"city": "MOUNTAIN HOME",
"footnote": "The lower limit of the confidence interval cannot be calculated if the number of observed infections equals zero",
"county_name": "BAXTER"
},
{
"hospital_name": "ARKANSAS HEART HOSPITAL",
"phone_number": {
"phone_number": "5012197000"
},
"zip_code": "72211",
"measure": "Central-Line-Associated Blood Stream Infections (CLABSI)",
"location": {
"needs_recoding": false,
"longitude": "-92.39446317620138",
"latitude": "34.7375389907117",
"human_address": "{\"address\":\"1701 S SHACKLEFORD ROAD\",\"city\":\"LITTLE ROCK\",\"state\":\"AR\",\"zip\":\"72211\"}"
},
"provider_id": "040134",
"state": "AR",
"score": "0.23",
"address_1": "1701 S SHACKLEFORD ROAD",
"city": "LITTLE ROCK",
"county_name": "PULASKI"
},
{
"hospital_name": "ST JOSEPH HOSPITAL",
"phone_number": {
"phone_number": "7074458121"
},
"zip_code": "95501",
"measure": "Central-Line-Associated Blood Stream Infections (CLABSI)",
"location": {
"needs_recoding": false,
"longitude": "-124.14157526215936",
"latitude": "40.78457856392736",
"human_address": "{\"address\":\"2700 DOLBEER ST\",\"city\":\"EUREKA\",\"state\":\"CA\",\"zip\":\"95501\"}"
},
"provider_id": "050006",
"state": "CA",
"score": "0.53",
"address_1": "2700 DOLBEER ST",
"city": "EUREKA",
"county_name": "HUMBOLDT"
},
{
"hospital_name": "UNIVERSITY OF CALIFORNIA SAN DIEGO MEDICAL CENTER",
"phone_number": {
"phone_number": "6195436222"
},
"zip_code": "92103",
"measure": "Central-Line-Associated Blood Stream Infections (CLABSI)",
"location": {
"needs_recoding": false,
"longitude": "-117.16501982467675",
"latitude": "32.753832616514245",
"human_address": "{\"address\":\"200 WEST ARBOR DRIVE\",\"city\":\"SAN DIEGO\",\"state\":\"CA\",\"zip\":\"92103\"}"
},
"provider_id": "050025",
"state": "CA",
"score": "0.55",
"address_1": "200 WEST ARBOR DRIVE",
"city": "SAN DIEGO",
"county_name": "SAN DIEGO"
},
{
"hospital_name": "GROSSMONT HOSPITAL",
"phone_number": {
"phone_number": "6194650711"
},
"zip_code": "91942",
"measure": "Central-Line-Associated Blood Stream Infections (CLABSI)",
"location": {
"needs_recoding": false,
"longitude": "-117.00958581482881",
"latitude": "32.779934239626165",
"human_address": "{\"address\":\"5555 GROSSMONT CENTER DRIVE BOX 58\",\"city\":\"LA MESA\",\"state\":\"CA\",\"zip\":\"91942\"}"
},
"provider_id": "050026",
"state": "CA",
"score": "0.21",
"address_1": "5555 GROSSMONT CENTER DRIVE BOX 58",
"city": "LA MESA",
"county_name": "SAN DIEGO"
},
{
"hospital_name": "BAKERSFIELD MEMORIAL HOSPITAL",
"phone_number": {
"phone_number": "6613271792"
},
"zip_code": "93301",
"measure": "Central-Line-Associated Blood Stream Infections (CLABSI)",
"location": {
"needs_recoding": false,
"longitude": "-119.00658013504676",
"latitude": "35.39051872974585",
"human_address": "{\"address\":\"420 34TH ST BOX 1888\",\"city\":\"BAKERSFIELD\",\"state\":\"CA\",\"zip\":\"93301\"}"
},
"provider_id": "050036",
"state": "CA",
"score": "0.43",
"address_1": "420 34TH ST BOX 1888",
"city": "BAKERSFIELD",
"county_name": "KERN"
},
{
"hospital_name": "SANTA MONICA - UCLA MED CTR & ORTHOPAEDIC HOSPITAL",
"phone_number": {
"phone_number": "3103194000"
},
"zip_code": "90404",
"measure": "Central-Line-Associated Blood Stream Infections (CLABSI)",
"location": {
"needs_recoding": false,
"longitude": "-118.48621897365952",
"latitude": "34.02757611553903",
"human_address": "{\"address\":\"1250 16TH STREET\",\"city\":\"SANTA MONICA\",\"state\":\"CA\",\"zip\":\"90404\"}"
},
"provider_id": "050112",
"state": "CA",
"score": "1.06",
"address_1": "1250 16TH STREET",
"city": "SANTA MONICA",
"county_name": "LOS ANGELES"
},
{
"hospital_name": "DOCTORS HOSPITAL OF MANTECA",
"phone_number": {
"phone_number": "2098233111"
},
"zip_code": "95336",
"measure": "Central-Line-Associated Blood Stream Infections (CLABSI)",
"location": {
"needs_recoding": false,
"longitude": "-121.19746349672596",
"latitude": "37.80110646318303",
"human_address": "{\"address\":\"1205 E NORTH ST\",\"city\":\"MANTECA\",\"state\":\"CA\",\"zip\":\"95336\"}"
},
"provider_id": "050118",
"state": "CA",
"score": "0.00",
"address_1": "1205 E NORTH ST",
"city": "MANTECA",
"footnote": "The lower limit of the confidence interval cannot be calculated if the number of observed infections equals zero",
"county_name": "SAN JOAQUIN"
},
{
"hospital_name": "SAINT FRANCIS MEMORIAL HOSPITAL",
"phone_number": {
"phone_number": "4153536000"
},
"zip_code": "94109",
"measure": "Central-Line-Associated Blood Stream Infections (CLABSI)",
"location": {
"needs_recoding": false,
"longitude": "-122.41707906676112",
"latitude": "37.789604134428316",
"human_address": "{\"address\":\"900 HYDE ST\",\"city\":\"SAN FRANCISCO\",\"state\":\"CA\",\"zip\":\"94109\"}"
},
"provider_id": "050152",
"state": "CA",
"score": "0.32",
"address_1": "900 HYDE ST",
"city": "SAN FRANCISCO",
"county_name": "SAN FRANCISCO"
},
{
"hospital_name": "SCRIPPS MEMORIAL HOSPITAL LA JOLLA",
"phone_number": {
"phone_number": "8586264123"
},
"zip_code": "92037",
"measure": "Central-Line-Associated Blood Stream Infections (CLABSI)",
"location": {
"needs_recoding": false,
"longitude": "-117.22304237636831",
"latitude": "32.88547284328997",
"human_address": "{\"address\":\"9888 GENESEE AVENUE\",\"city\":\"LA JOLLA\",\"state\":\"CA\",\"zip\":\"92037\"}"
},
"provider_id": "050324",
"state": "CA",
"score": "0.39",
"address_1": "9888 GENESEE AVENUE",
"city": "LA JOLLA",
"county_name": "SAN DIEGO"
},
{
"hospital_name": "PROVIDENCE LITTLE COMPANY OF MARY MED CTR TORRANCE",
"phone_number": {
"phone_number": "3105407676"
},
"zip_code": "90503",
"measure": "Central-Line-Associated Blood Stream Infections (CLABSI)",
"location": {
"needs_recoding": false,
"longitude": "-118.35705379260509",
"latitude": "33.83760542243181",
"human_address": "{\"address\":\"4101 TORRANCE BLVD\",\"city\":\"TORRANCE\",\"state\":\"CA\",\"zip\":\"90503\"}"
},
"provider_id": "050353",
"state": "CA",
"score": "0.40",
"address_1": "4101 TORRANCE BLVD",
"city": "TORRANCE",
"county_name": "LOS ANGELES"
},
{
"hospital_name": "JOHN MUIR MEDICAL CENTER - CONCORD CAMPUS",
"phone_number": {
"phone_number": "9256742002"
},
"zip_code": "94520",
"measure": "Central-Line-Associated Blood Stream Infections (CLABSI)",
"location": {
"needs_recoding": false,
"longitude": "-122.03472331278397",
"latitude": "37.98364185547007",
"human_address": "{\"address\":\"2540 EAST ST\",\"city\":\"CONCORD\",\"state\":\"CA\",\"zip\":\"94520\"}"
},
"provider_id": "050496",
"state": "CA",
"score": "1.01",
"address_1": "2540 EAST ST",
"city": "CONCORD",
"county_name": "CONTRA COSTA"
},
{
"hospital_name": "KAISER FOUNDATION HOSPITAL FREMONT/HAYWARD",
"phone_number": {
"phone_number": "5107844000"
},
"zip_code": "94545",
"measure": "Central-Line-Associated Blood Stream Infections (CLABSI)",
"location": {
"needs_recoding": false,
"longitude": "-122.0964347904345",
"latitude": "37.630738897952426",
"human_address": "{\"address\":\"27400 HESPERIAN BLVD\",\"city\":\"HAYWARD\",\"state\":\"CA\",\"zip\":\"94545\"}"
},
"provider_id": "050512",
"state": "CA",
"score": "0.00",
"address_1": "27400 HESPERIAN BLVD",
"city": "HAYWARD",
"footnote": "The lower limit of the confidence interval cannot be calculated if the number of observed infections equals zero",
"county_name": "ALAMEDA"
},
{
"hospital_name": "CHINO VALLEY MEDICAL CENTER",
"phone_number": {
"phone_number": "9096276111"
},
"zip_code": "91710",
"measure": "Central-Line-Associated Blood Stream Infections (CLABSI)",
"location": {
"needs_recoding": false,
"longitude": "-117.68558399264856",
"latitude": "34.026274190958645",
"human_address": "{\"address\":\"5451 WALNUT AVE\",\"city\":\"CHINO\",\"state\":\"CA\",\"zip\":\"91710\"}"
},
"provider_id": "050586",
"state": "CA",
"score": "0.00",
"address_1": "5451 WALNUT AVE",
"city": "CHINO",
"footnote": "The lower limit of the confidence interval cannot be calculated if the number of observed infections equals zero",
"county_name": "SAN BERNARDINO"
},
{
"hospital_name": "METHODIST HOSPITAL OF SACRAMENTO",
"phone_number": {
"phone_number": "9164236010"
},
"zip_code": "95823",
"measure": "Central-Line-Associated Blood Stream Infections (CLABSI)",
"location": {
"needs_recoding": false,
"longitude": "-121.41749950562307",
"latitude": "38.46416701095657",
"human_address": "{\"address\":\"7500 HOSPITAL DRIVE\",\"city\":\"SACRAMENTO\",\"state\":\"CA\",\"zip\":\"95823\"}"
},
"provider_id": "050590",
"state": "CA",
"score": "0.54",
"address_1": "7500 HOSPITAL DRIVE",
"city": "SACRAMENTO",
"county_name": "SACRAMENTO"
},
{
"hospital_name": "KAISER FOUNDATION HOSPITAL ANAHEIM",
"phone_number": {
"phone_number": "7142794000"
},
"zip_code": "92807",
"measure": "Central-Line-Associated Blood Stream Infections (CLABSI)",
"location": {
"needs_recoding": false,
"longitude": "-117.8166871580799",
"latitude": "33.854386771498525",
"human_address": "{\"address\":\"441 N LAKEVIEW AVENUE\",\"city\":\"ANAHEIM\",\"state\":\"CA\",\"zip\":\"92807\"}"
},
"provider_id": "050609",
"state": "CA",
"score": "0.16",
"address_1": "441 N LAKEVIEW AVENUE",
"city": "ANAHEIM",
"county_name": "ORANGE"
},
{
"hospital_name": "ST JOHNS PLEASANT VALLEY HOSPITAL",
"phone_number": {
"phone_number": "8053895800"
},
"zip_code": "93010",
"measure": "Central-Line-Associated Blood Stream Infections (CLABSI)",
"location": {
"needs_recoding": false,
"longitude": "-119.01857709091763",
"latitude": "34.243640325440424",
"human_address": "{\"address\":\"2309 ANTONIO AVE\",\"city\":\"CAMARILLO\",\"state\":\"CA\",\"zip\":\"93010\"}"
},
"provider_id": "050616",
"state": "CA",
"score": "0.62",
"address_1": "2309 ANTONIO AVE",
"city": "CAMARILLO",
"county_name": "VENTURA"
},
{
"hospital_name": "KAISER FOUNDATION HOSP SO SACRAMENTO",
"phone_number": {
"phone_number": "9166882000"
},
"zip_code": "95823",
"measure": "Central-Line-Associated Blood Stream Infections (CLABSI)",
"location": {
"needs_recoding": false,
"longitude": "-121.42421806768023",
"latitude": "38.47140997308934",
"human_address": "{\"address\":\"6600 BRUCEVILLE ROAD\",\"city\":\"SACRAMENTO\",\"state\":\"CA\",\"zip\":\"95823\"}"
},
"provider_id": "050674",
"state": "CA",
"score": "0.00",
"address_1": "6600 BRUCEVILLE ROAD",
"city": "SACRAMENTO",
"footnote": "The lower limit of the confidence interval cannot be calculated if the number of observed infections equals zero",
"county_name": "SACRAMENTO"
},
{
"hospital_name": "ORANGE COAST MEMORIAL MEDICAL CENTER",
"phone_number": {
"phone_number": "7143787406"
},
"zip_code": "92708",
"measure": "Central-Line-Associated Blood Stream Infections (CLABSI)",
"location": {
"needs_recoding": false,
"longitude": "-117.95656826392913",
"latitude": "33.701630863945496",
"human_address": "{\"address\":\"9920 TALBERT AVENUE\",\"city\":\"FOUNTAIN VALLEY\",\"state\":\"CA\",\"zip\":\"92708\"}"
},
"provider_id": "050678",
"state": "CA",
"score": "0.28",
"address_1": "9920 TALBERT AVENUE",
"city": "FOUNTAIN VALLEY",
"county_name": "ORANGE"
},
{
"hospital_name": "KECK HOSPITAL OF USC",
"phone_number": {
"phone_number": "3234428656"
},
"zip_code": "90033",
"measure": "Central-Line-Associated Blood Stream Infections (CLABSI)",
"location": {
"needs_recoding": false,
"longitude": "-118.20320677305278",
"latitude": "34.06202224162331",
"human_address": "{\"address\":\"1500 SAN PABLO ST\",\"city\":\"LOS ANGELES\",\"state\":\"CA\",\"zip\":\"90033\"}"
},
"provider_id": "050696",
"state": "CA",
"score": "1.00",
"address_1": "1500 SAN PABLO ST",
"city": "LOS ANGELES",
"county_name": "LOS ANGELES"
},
{
"hospital_name": "DESERT VALLEY HOSPITAL",
"phone_number": {
"phone_number": "7602418000"
},
"zip_code": "92395",
"measure": "Central-Line-Associated Blood Stream Infections (CLABSI)",
"location": {
"needs_recoding": false,
"longitude": "-117.29777834717379",
"latitude": "34.47092598190545",
"human_address": "{\"address\":\"16850 BEAR VALLEY RD\",\"city\":\"VICTORVILLE\",\"state\":\"CA\",\"zip\":\"92395\"}"
},
"provider_id": "050709",
"state": "CA",
"score": "0.00",
"address_1": "16850 BEAR VALLEY RD",
"city": "VICTORVILLE",
"footnote": "The lower limit of the confidence interval cannot be calculated if the number of observed infections equals zero",
"county_name": "SAN BERNARDINO"
},
{
"hospital_name": "MARINA DEL REY HOSPITAL",
"phone_number": {
"phone_number": "3108238911"
},
"zip_code": "90291",
"measure": "Central-Line-Associated Blood Stream Infections (CLABSI)",
"location": {
"needs_recoding": false,
"longitude": "-118.4663999996601",
"latitude": "33.992499999975166",
"human_address": "{\"address\":\"4650 LINCOLN BLVD\",\"city\":\"MARINA DEL REY\",\"state\":\"CA\",\"zip\":\"90291\"}"
},
"provider_id": "050740",
"state": "CA",
"score": "1.05",
"address_1": "4650 LINCOLN BLVD",
"city": "MARINA DEL REY",
"county_name": "LOS ANGELES"
},
{
"hospital_name": "OLYMPIA MEDICAL CENTER",
"phone_number": {
"phone_number": "3106575900"
},
"zip_code": "90036",
"measure": "Central-Line-Associated Blood Stream Infections (CLABSI)",
"location": {
"needs_recoding": false,
"longitude": "-118.36035430445264",
"latitude": "34.05757959079858",
"human_address": "{\"address\":\"5900 WEST OLYMPIC BOULEVARD\",\"city\":\"LOS ANGELES\",\"state\":\"CA\",\"zip\":\"90036\"}"
},
"provider_id": "050742",
"state": "CA",
"score": "0.49",
"address_1": "5900 WEST OLYMPIC BOULEVARD",
"city": "LOS ANGELES",
"county_name": "LOS ANGELES"
},
{
"hospital_name": "EXEMPLA LUTHERAN MEDICAL CENTER",
"phone_number": {
"phone_number": "3034254500"
},
"zip_code": "80033",
"measure": "Central-Line-Associated Blood Stream Infections (CLABSI)",
"location": {
"needs_recoding": false,
"longitude": "-105.0907858163688",
"latitude": "39.76932668362787",
"human_address": "{\"address\":\"8300 W 38TH AVE\",\"city\":\"WHEAT RIDGE\",\"state\":\"CO\",\"zip\":\"80033\"}"
},
"provider_id": "060009",
"state": "CO",
"score": "1.10",
"address_1": "8300 W 38TH AVE",
"city": "WHEAT RIDGE",
"county_name": "JEFFERSON"
},
{
"hospital_name": "CENTURA HEALTH-LITTLETON ADVENTIST HOSPITAL",
"phone_number": {
"phone_number": "3037305888"
},
"zip_code": "80122",
"measure": "Central-Line-Associated Blood Stream Infections (CLABSI)",
"location": {
"needs_recoding": false,
"longitude": "-104.98842498299388",
"latitude": "39.57700666766203",
"human_address": "{\"address\":\"7700 S BROADWAY\",\"city\":\"LITTLETON\",\"state\":\"CO\",\"zip\":\"80122\"}"
},
"provider_id": "060113",
"state": "CO",
"score": "0.42",
"address_1": "7700 S BROADWAY",
"city": "LITTLETON",
"county_name": "ARAPAHOE"
},
{
"hospital_name": "WATERBURY HOSPITAL",
"phone_number": {
"phone_number": "2035736000"
},
"zip_code": "06721",
"measure": "Central-Line-Associated Blood Stream Infections (CLABSI)",
"location": {
"needs_recoding": false,
"longitude": "-73.05993651207453",
"latitude": "41.55815083280986",
"human_address": "{\"address\":\"64 ROBBINS ST\",\"city\":\"WATERBURY\",\"state\":\"CT\",\"zip\":\"06721\"}"
},
"provider_id": "070005",
"state": "CT",
"score": "0.68",
"address_1": "64 ROBBINS ST",
"city": "WATERBURY",
"county_name": "NEW HAVEN"
},
{
"hospital_name": "BRIDGEPORT HOSPITAL",
"phone_number": {
"phone_number": "2033843000"
},
"zip_code": "06610",
"measure": "Central-Line-Associated Blood Stream Infections (CLABSI)",
"location": {
"needs_recoding": false,
"longitude": "-73.1655062620107",
"latitude": "41.18883079448168",
"human_address": "{\"address\":\"267 GRANT STREET\",\"city\":\"BRIDGEPORT\",\"state\":\"CT\",\"zip\":\"06610\"}"
},
"provider_id": "070010",
"state": "CT",
"score": "0.59",
"address_1": "267 GRANT STREET",
"city": "BRIDGEPORT",
"county_name": "FAIRFIELD"
},
{
"hospital_name": "HARTFORD HOSPITAL",
"phone_number": {
"phone_number": "8605455000"
},
"zip_code": "06102",
"measure": "Central-Line-Associated Blood Stream Infections (CLABSI)",
"location": {
"needs_recoding": false,
"longitude": "-72.68078470072777",
"latitude": "41.75358181585506",
"human_address": "{\"address\":\"80 SEYMOUR STREET\",\"city\":\"HARTFORD\",\"state\":\"CT\",\"zip\":\"06102\"}"
},
"provider_id": "070025",
"state": "CT",
"score": "0.66",
"address_1": "80 SEYMOUR STREET",
"city": "HARTFORD",
"county_name": "HARTFORD"
},
{
"hospital_name": "JOHN DEMPSEY HOSPITAL",
"phone_number": {
"phone_number": "8606791145"
},
"zip_code": "06032",
"measure": "Central-Line-Associated Blood Stream Infections (CLABSI)",
"location": {
"needs_recoding": false,
"longitude": "-72.79513589236164",
"latitude": "41.73577787981002",
"human_address": "{\"address\":\"263 FARMINGTON AVE\",\"city\":\"FARMINGTON\",\"state\":\"CT\",\"zip\":\"06032\"}"
},
"provider_id": "070036",
"state": "CT",
"score": "1.84",
"address_1": "263 FARMINGTON AVE",
"city": "FARMINGTON",
"county_name": "HARTFORD"
},
{
"hospital_name": "ST FRANCIS HOSPITAL",
"phone_number": {
"phone_number": "3024214100"
},
"zip_code": "19805",
"measure": "Central-Line-Associated Blood Stream Infections (CLABSI)",
"location": {
"needs_recoding": false,
"longitude": "-75.58304999975752",
"latitude": "39.7442000003299",
"human_address": "{\"address\":\"7TH AND CLAYTON STS\",\"city\":\"WILMINGTON\",\"state\":\"DE\",\"zip\":\"19805\"}"
},
"provider_id": "080003",
"state": "DE",
"score": "2.53",
"address_1": "7TH AND CLAYTON STS",
"city": "WILMINGTON",
"county_name": "NEW CASTLE"
},
{
"hospital_name": "SACRED HEART HOSPITAL",
"phone_number": {
"phone_number": "8504167000"
},
"zip_code": "32504",
"measure": "Central-Line-Associated Blood Stream Infections (CLABSI)",
"location": {
"needs_recoding": false,
"longitude": "-87.21147247049902",
"latitude": "30.47469861250795",
"human_address": "{\"address\":\"5151 N 9TH AVE\",\"city\":\"PENSACOLA\",\"state\":\"FL\",\"zip\":\"32504\"}"
},
"provider_id": "100025",
"state": "FL",
"score": "0.76",
"address_1": "5151 N 9TH AVE",
"city": "PENSACOLA",
"county_name": "ESCAMBIA"
},
{
"hospital_name": "FLORIDA HOSPITAL WATERMAN",
"phone_number": {
"phone_number": "3522533300"
},
"zip_code": "32778",
"measure": "Central-Line-Associated Blood Stream Infections (CLABSI)",
"location": {
"needs_recoding": false,
"longitude": "-81.71039028109475",
"latitude": "28.823041016051874",
"human_address": "{\"address\":\"1000 WATERMAN WAY\",\"city\":\"TAVARES\",\"state\":\"FL\",\"zip\":\"32778\"}"
},
"provider_id": "100057",
"state": "FL",
"score": "0.95",
"address_1": "1000 WATERMAN WAY",
"city": "TAVARES",
"county_name": "LAKE"
},
{
"hospital_name": "PEACE RIVER REGIONAL MEDICAL CENTER",
"phone_number": {
"phone_number": "9417664122"
},
"zip_code": "33952",
"measure": "Central-Line-Associated Blood Stream Infections (CLABSI)",
"location": {
"needs_recoding": false,
"longitude": "-82.09665037461764",
"latitude": "26.989349108294903",
"human_address": "{\"address\":\"2500 HARBOR BLVD\",\"city\":\"PORT CHARLOTTE\",\"state\":\"FL\",\"zip\":\"33952\"}"
},
"provider_id": "100077",
"state": "FL",
"score": "0.00",
"address_1": "2500 HARBOR BLVD",
"city": "PORT CHARLOTTE",
"footnote": "The lower limit of the confidence interval cannot be calculated if the number of observed infections equals zero",
"county_name": "CHARLOTTE"
},
{
"hospital_name": "HOMESTEAD HOSPITAL",
"phone_number": {
"phone_number": "7862438000"
},
"zip_code": "33033",
"measure": "Central-Line-Associated Blood Stream Infections (CLABSI)",
"location": {
"needs_recoding": false,
"longitude": "-80.4304764509335",
"latitude": "25.47950433296404",
"human_address": "{\"address\":\"975 BAPTIST WAY\",\"city\":\"HOMESTEAD\",\"state\":\"FL\",\"zip\":\"33033\"}"
},
"provider_id": "100125",
"state": "FL",
"score": "1.32",
"address_1": "975 BAPTIST WAY",
"city": "HOMESTEAD",
"county_name": "MIAMI-DADE"
},
{
"hospital_name": "LAKESIDE MEDICAL CENTER",
"phone_number": {
"phone_number": "5619966571"
},
"zip_code": "33430",
"measure": "Central-Line-Associated Blood Stream Infections (CLABSI)",
"location": {
"needs_recoding": false,
"longitude": "-80.67100912089006",
"latitude": "26.72564090964329",
"human_address": "{\"address\":\"39200 HOOKER HWY\",\"city\":\"BELLE GLADE\",\"state\":\"FL\",\"zip\":\"33430\"}"
},
"provider_id": "100130",
"state": "FL",
"score": "1.73",
"address_1": "39200 HOOKER HWY",
"city": "BELLE GLADE",
"county_name": "PALM BEACH"
},
{
"hospital_name": "MEMORIAL HOSPITAL JACKSONVILLE",
"phone_number": {
"phone_number": "9043996111"
},
"zip_code": "32216",
"measure": "Central-Line-Associated Blood Stream Infections (CLABSI)",
"location": {
"needs_recoding": false,
"longitude": "-81.60228406189111",
"latitude": "30.28847599990081",
"human_address": "{\"address\":\"3625 UNIVERSITY BLVD S\",\"city\":\"JACKSONVILLE\",\"state\":\"FL\",\"zip\":\"32216\"}"
},
"provider_id": "100179",
"state": "FL",
"score": "0.51",
"address_1": "3625 UNIVERSITY BLVD S",
"city": "JACKSONVILLE",
"county_name": "DUVAL"
},
{
"hospital_name": "SEBASTIAN RIVER MEDICAL CENTER",
"phone_number": {
"phone_number": "7725893187"
},
"zip_code": "32978",
"measure": "Central-Line-Associated Blood Stream Infections (CLABSI)",
"location": {
"needs_recoding": false,
"longitude": "-80.48779024386079",
"latitude": "27.843138463251478",
"human_address": "{\"address\":\"13695 US HWY 1\",\"city\":\"SEBASTIAN\",\"state\":\"FL\",\"zip\":\"32978\"}"
},
"provider_id": "100217",
"state": "FL",
"score": "0.68",
"address_1": "13695 US HWY 1",
"city": "SEBASTIAN",
"county_name": "INDIAN RIVER"
},
{
"hospital_name": "WEST FLORIDA HOSPITAL",
"phone_number": {
"phone_number": "8504944000"
},
"zip_code": "32514",
"measure": "Central-Line-Associated Blood Stream Infections (CLABSI)",
"location": {
"needs_recoding": false,
"longitude": "-87.2170662535213",
"latitude": "30.515087164843806",
"human_address": "{\"address\":\"8383 N DAVIS HWY\",\"city\":\"PENSACOLA\",\"state\":\"FL\",\"zip\":\"32514\"}"
},
"provider_id": "100231",
"state": "FL",
"score": "0.40",
"address_1": "8383 N DAVIS HWY",
"city": "PENSACOLA",
"county_name": "ESCAMBIA"
},
{
"hospital_name": "PUTNAM COMMUNITY MEDICAL CENTER",
"phone_number": {
"phone_number": "3863268500"
},
"zip_code": "32177",
"measure": "Central-Line-Associated Blood Stream Infections (CLABSI)",
"location": {
"needs_recoding": false,
"longitude": "-81.69350229532301",
"latitude": "29.6430235862519",
"human_address": "{\"address\":\"611 ZEAGLER DR\",\"city\":\"PALATKA\",\"state\":\"FL\",\"zip\":\"32177\"}"
},
"provider_id": "100232",
"state": "FL",
"score": "0.00",
"address_1": "611 ZEAGLER DR",
"city": "PALATKA",
"footnote": "The lower limit of the confidence interval cannot be calculated if the number of observed infections equals zero",
"county_name": "PUTNAM"
},
{
"hospital_name": "BRANDON REGIONAL HOSPITAL",
"phone_number": {
"phone_number": "8136815551"
},
"zip_code": "33511",
"measure": "Central-Line-Associated Blood Stream Infections (CLABSI)",
"location": {
"needs_recoding": false,
"longitude": "-82.28825992618027",
"latitude": "27.93398797465136",
"human_address": "{\"address\":\"119 OAKFIELD DR\",\"city\":\"BRANDON\",\"state\":\"FL\",\"zip\":\"33511\"}"
},
"provider_id": "100243",
"state": "FL",
"score": "0.83",
"address_1": "119 OAKFIELD DR",
"city": "BRANDON",
"county_name": "HILLSBOROUGH"
},
{
"hospital_name": "SOUTH BAY HOSPITAL",
"phone_number": {
"phone_number": "8136343301"
},
"zip_code": "33573",
"measure": "Central-Line-Associated Blood Stream Infections (CLABSI)",
"location": {
"needs_recoding": false,
"longitude": "-82.36603329527412",
"latitude": "27.712430999513003",
"human_address": "{\"address\":\"4016 SUN CITY CENTER BLVD\",\"city\":\"SUN CITY CENTER\",\"state\":\"FL\",\"zip\":\"33573\"}"
},
"provider_id": "100259",
"state": "FL",
"score": "0.00",
"address_1": "4016 SUN CITY CENTER BLVD",
"city": "SUN CITY CENTER",
"footnote": "The lower limit of the confidence interval cannot be calculated if the number of observed infections equals zero",
"county_name": "HILLSBOROUGH"
},
{
"hospital_name": "LAKEWOOD RANCH MEDICAL CENTER",
"phone_number": {
"phone_number": "9417822100"
},
"zip_code": "34202",
"measure": "Central-Line-Associated Blood Stream Infections (CLABSI)",
"location": {
"needs_recoding": false,
"longitude": "-82.43366231187753",
"latitude": "27.39189464182988",
"human_address": "{\"address\":\"8330 LAKEWOOD RANCH BOULEVARD\",\"city\":\"BRADENTON\",\"state\":\"FL\",\"zip\":\"34202\"}"
},
"provider_id": "100299",
"state": "FL",
"score": "0.00",
"address_1": "8330 LAKEWOOD RANCH BOULEVARD",
"city": "BRADENTON",
"footnote": "The lower limit of the confidence interval cannot be calculated if the number of observed infections equals zero",
"county_name": "MANATEE"
},
{
"hospital_name": "MEDICAL COLLEGE OF GA HOSPITALS AND CLINICS",
"phone_number": {
"phone_number": "7067216569"
},
"zip_code": "30912",
"measure": "Central-Line-Associated Blood Stream Infections (CLABSI)",
"location": {
"needs_recoding": false,
"longitude": "-81.99137569612343",
"latitude": "33.47102451208252",
"human_address": "{\"address\":\"1120 15TH STREET\",\"city\":\"AUGUSTA\",\"state\":\"GA\",\"zip\":\"30912\"}"
},
"provider_id": "110034",
"state": "GA",
"score": "0.30",
"address_1": "1120 15TH STREET",
"city": "AUGUSTA",
"county_name": "RICHMOND"
},
{
"hospital_name": "EAST GEORGIA REGIONAL MEDICAL CENTER",
"phone_number": {
"phone_number": "9124861500"
},
"zip_code": "30458",
"measure": "Central-Line-Associated Blood Stream Infections (CLABSI)",
"location": {
"needs_recoding": false,
"longitude": "-81.76871259663335",
"latitude": "32.41521072123004",
"human_address": "{\"address\":\"1499 FAIR ROAD\",\"city\":\"STATESBORO\",\"state\":\"GA\",\"zip\":\"30458\"}"
},
"provider_id": "110075",
"state": "GA",
"score": "0.49",
"address_1": "1499 FAIR ROAD",
"city": "STATESBORO",
"county_name": "BULLOCH"
},
{
"hospital_name": "ATLANTA MEDICAL CENTER",
"phone_number": {
"phone_number": "4042654000"
},
"zip_code": "30312",
"measure": "Central-Line-Associated Blood Stream Infections (CLABSI)",
"location": {
"needs_recoding": false,
"longitude": "-84.37411312064275",
"latitude": "33.76275495375993",
"human_address": "{\"address\":\"303 PARKWAY DR NE\",\"city\":\"ATLANTA\",\"state\":\"GA\",\"zip\":\"30312\"}"
},
"provider_id": "110115",
"state": "GA",
"score": "0.68",
"address_1": "303 PARKWAY DR NE",
"city": "ATLANTA",
"county_name": "FULTON"
},
{
"hospital_name": "PHOEBE NORTH",
"phone_number": {
"phone_number": "2294342000"
},
"zip_code": "31701",
"measure": "Central-Line-Associated Blood Stream Infections (CLABSI)",
"location": {
"needs_recoding": false,
"longitude": "-84.17115247248512",
"latitude": "31.60549713892948",
"human_address": "{\"address\":\"2000 PALMYRA RD BOX 1908\",\"city\":\"ALBANY\",\"state\":\"GA\",\"zip\":\"31701\"}"
},
"provider_id": "110163",
"state": "GA",
"score": "2.25",
"address_1": "2000 PALMYRA RD BOX 1908",
"city": "ALBANY",
"county_name": "DOUGHERTY"
},
{
"hospital_name": "REDMOND REGIONAL MEDICAL CENTER",
"phone_number": {
"phone_number": "7068023012"
},
"zip_code": "30165",
"measure": "Central-Line-Associated Blood Stream Infections (CLABSI)",
"location": {
"needs_recoding": false,
"longitude": "-85.1941092565636",
"latitude": "34.27815094616688",
"human_address": "{\"address\":\"501 REDMOND ROAD\",\"city\":\"ROME\",\"state\":\"GA\",\"zip\":\"30165\"}"
},
"provider_id": "110168",
"state": "GA",
"score": "0.70",
"address_1": "501 REDMOND ROAD",
"city": "ROME",
"county_name": "FLOYD"
},
{
"hospital_name": "MAUI MEMORIAL MEDICAL CENTER",
"phone_number": {
"phone_number": "8084425101"
},
"zip_code": "96793",
"measure": "Central-Line-Associated Blood Stream Infections (CLABSI)",
"location": {
"needs_recoding": false,
"longitude": "-156.48867655695713",
"latitude": "20.884139634426617",
"human_address": "{\"address\":\"221 MAHALANI STREET\",\"city\":\"WAILUKU\",\"state\":\"HI\",\"zip\":\"96793\"}"
},
"provider_id": "120002",
"state": "HI",
"score": "0.00",
"address_1": "221 MAHALANI STREET",
"city": "WAILUKU",
"footnote": "The lower limit of the confidence interval cannot be calculated if the number of observed infections equals zero",
"county_name": "MAUI"
},
{
"hospital_name": "KUAKINI MEDICAL CENTER",
"phone_number": {
"phone_number": "8085362236"
},
"zip_code": "96817",
"measure": "Central-Line-Associated Blood Stream Infections (CLABSI)",
"location": {
"needs_recoding": false,
"longitude": "-157.85632644277553",
"latitude": "21.32226806427875",
"human_address": "{\"address\":\"347 NORTH KUAKINI STREET\",\"city\":\"HONOLULU\",\"state\":\"HI\",\"zip\":\"96817\"}"
},
"provider_id": "120007",
"state": "HI",
"score": "0.21",
"address_1": "347 NORTH KUAKINI STREET",
"city": "HONOLULU",
"county_name": "HONOLULU"
},
{
"hospital_name": "KAISER FOUNDATION HOSPITAL",
"phone_number": {
"phone_number": "8084320000"
},
"zip_code": "96819",
"measure": "Central-Line-Associated Blood Stream Infections (CLABSI)",
"location": {
"needs_recoding": false,
"longitude": "-157.90030637346817",
"latitude": "21.362489021811257",
"human_address": "{\"address\":\"3288 MOANALUA RD\",\"city\":\"HONOLULU\",\"state\":\"HI\",\"zip\":\"96819\"}"
},
"provider_id": "120011",
"state": "HI",
"score": "0.00",
"address_1": "3288 MOANALUA RD",
"city": "HONOLULU",
"footnote": "The lower limit of the confidence interval cannot be calculated if the number of observed infections equals zero",
"county_name": "HONOLULU"
},
{
"hospital_name": "GOOD SAMARITAN REGIONAL HLTH CENTER",
"phone_number": {
"phone_number": "6182424600"
},
"zip_code": "62864",
"measure": "Central-Line-Associated Blood Stream Infections (CLABSI)",
"location": {
"needs_recoding": false,
"longitude": "-88.90601101098724",
"latitude": "38.312056274129816",
"human_address": "{\"address\":\"605 N 12TH STREET\",\"city\":\"MOUNT VERNON\",\"state\":\"IL\",\"zip\":\"62864\"}"
},
"provider_id": "140046",
"state": "IL",
"score": "0.00",
"address_1": "605 N 12TH STREET",
"city": "MOUNT VERNON",
"footnote": "The lower limit of the confidence interval cannot be calculated if the number of observed infections equals zero",
"county_name": "JEFFERSON"
},
{
"hospital_name": "WEST SUBURBAN MEDICAL CENTER",
"phone_number": {
"phone_number": "7083836200"
},
"zip_code": "60302",
"measure": "Central-Line-Associated Blood Stream Infections (CLABSI)",
"location": {
"needs_recoding": false,
"longitude": "-87.7761908547664",
"latitude": "41.89154282436424",
"human_address": "{\"address\":\"3 ERIE COURT\",\"city\":\"OAK PARK\",\"state\":\"IL\",\"zip\":\"60302\"}"
},
"provider_id": "140049",
"state": "IL",
"score": "0.36",
"address_1": "3 ERIE COURT",
"city": "OAK PARK",
"county_name": "COOK"
},
{
"hospital_name": "SAINT ANTHONY'S HEALTH CENTER",
"phone_number": {
"phone_number": "6184652571"
},
"zip_code": "62002",
"measure": "Central-Line-Associated Blood Stream Infections (CLABSI)",
"location": {
"needs_recoding": false,
"longitude": "-90.15742999959468",
"latitude": "38.91171000011656",
"human_address": "{\"address\":\"ST ANTHONY'S WAY\",\"city\":\"ALTON\",\"state\":\"IL\",\"zip\":\"62002\"}"
},
"provider_id": "140052",
"state": "IL",
"score": "0.00",
"address_1": "ST ANTHONY'S WAY",
"city": "ALTON",
"footnote": "The lower limit of the confidence interval cannot be calculated if the number of observed infections equals zero",
"county_name": "MADISON"
},
{
"hospital_name": "CARLE FOUNDATION HOSPITAL",
"phone_number": {
"phone_number": "2173833311"
},
"zip_code": "61801",
"measure": "Central-Line-Associated Blood Stream Infections (CLABSI)",
"location": {
"needs_recoding": false,
"longitude": "-88.21442337723528",
"latitude": "40.11740028184812",
"human_address": "{\"address\":\"611 WEST PARK STREET\",\"city\":\"URBANA\",\"state\":\"IL\",\"zip\":\"61801\"}"
},
"provider_id": "140091",
"state": "IL",
"score": "0.52",
"address_1": "611 WEST PARK STREET",
"city": "URBANA",
"county_name": "CHAMPAIGN"
},
{
"hospital_name": "ST BERNARD HOSPITAL",
"phone_number": {
"phone_number": "7739623900"
},
"zip_code": "60621",
"measure": "Central-Line-Associated Blood Stream Infections (CLABSI)",
"location": {
"needs_recoding": false,
"longitude": "-87.6333390385115",
"latitude": "41.778161150374615",
"human_address": "{\"address\":\"326 W 64TH ST\",\"city\":\"CHICAGO\",\"state\":\"IL\",\"zip\":\"60621\"}"
},
"provider_id": "140103",
"state": "IL",
"score": "0.42",
"address_1": "326 W 64TH ST",
"city": "CHICAGO",
"county_name": "COOK"
},
{
"hospital_name": "LAKE FOREST HOSPITAL",
"phone_number": {
"phone_number": "8472345600"
},
"zip_code": "60045",
"measure": "Central-Line-Associated Blood Stream Infections (CLABSI)",
"location": {
"needs_recoding": false,
"longitude": "-87.86369677902854",
"latitude": "42.250340325179536",
"human_address": "{\"address\":\"660 N WESTMORELAND ROAD\",\"city\":\"LAKE FOREST\",\"state\":\"IL\",\"zip\":\"60045\"}"
},
"provider_id": "140130",
"state": "IL",
"score": "1.92",
"address_1": "660 N WESTMORELAND ROAD",
"city": "LAKE FOREST",
"county_name": "LAKE"
},
{
"hospital_name": "PRESENCE SAINTS MARY AND ELIZABETH MEDICAL CENTER",
"phone_number": {
"phone_number": "3126335896"
},
"zip_code": "60622",
"measure": "Central-Line-Associated Blood Stream Infections (CLABSI)",
"location": {
"needs_recoding": false,
"longitude": "-87.68298323205772",
"latitude": "41.90300874507895",
"human_address": "{\"address\":\"2233 W DIVISION ST\",\"city\":\"CHICAGO\",\"state\":\"IL\",\"zip\":\"60622\"}"
},
"provider_id": "140180",
"state": "IL",
"score": "0.00",
"address_1": "2233 W DIVISION ST",
"city": "CHICAGO",
"footnote": "The lower limit of the confidence interval cannot be calculated if the number of observed infections equals zero",
"county_name": "COOK"
},
{
"hospital_name": "ADVOCATE CHRIST HOSPITAL & MEDICAL CENTER",
"phone_number": {
"phone_number": "7086848000"
},
"zip_code": "60453",
"measure": "Central-Line-Associated Blood Stream Infections (CLABSI)",
"location": {
"needs_recoding": false,
"longitude": "-87.73242181914911",
"latitude": "41.72031153702117",
"human_address": "{\"address\":\"4440 W 95TH STREET\",\"city\":\"OAK LAWN\",\"state\":\"IL\",\"zip\":\"60453\"}"
},
"provider_id": "140208",
"state": "IL",
"score": "0.34",
"address_1": "4440 W 95TH STREET",
"city": "OAK LAWN",
"county_name": "COOK"
},
{
"hospital_name": "SILVER CROSS HOSPITAL AND MEDICAL CENTERS",
"phone_number": {
"phone_number": "8157401100"
},
"zip_code": "60451",
"measure": "Central-Line-Associated Blood Stream Infections (CLABSI)",
"location": {
"needs_recoding": false,
"longitude": "-87.98611138022791",
"latitude": "41.545242985846684",
"human_address": "{\"address\":\"1900 SILVER CROSS BLVD\",\"city\":\"NEW LENOX\",\"state\":\"IL\",\"zip\":\"60451\"}"
},
"provider_id": "140213",
"state": "IL",
"score": "1.11",
"address_1": "1900 SILVER CROSS BLVD",
"city": "NEW LENOX",
"county_name": "WILL"
},
{
"hospital_name": "EDWARD HOSPITAL",
"phone_number": {
"phone_number": "6305273000"
},
"zip_code": "60540",
"measure": "Central-Line-Associated Blood Stream Infections (CLABSI)",
"location": {
"needs_recoding": false,
"longitude": "-88.14903367248485",
"latitude": "41.761010215817066",
"human_address": "{\"address\":\"801 SOUTH WASHINGTON\",\"city\":\"NAPERVILLE\",\"state\":\"IL\",\"zip\":\"60540\"}"
},
"provider_id": "140231",
"state": "IL",
"score": "0.34",
"address_1": "801 SOUTH WASHINGTON",
"city": "NAPERVILLE",
"county_name": "DUPAGE"
},
{
"hospital_name": "NORTHWESTERN MEMORIAL HOSPITAL",
"phone_number": {
"phone_number": "3129262000"
},
"zip_code": "60611",
"measure": "Central-Line-Associated Blood Stream Infections (CLABSI)",
"location": {
"needs_recoding": false,
"longitude": "-87.62138488753187",
"latitude": "41.894927948624925",
"human_address": "{\"address\":\"251 E HURON ST\",\"city\":\"CHICAGO\",\"state\":\"IL\",\"zip\":\"60611\"}"
},
"provider_id": "140281",
"state": "IL",
"score": "0.80",
"address_1": "251 E HURON ST",
"city": "CHICAGO",
"county_name": "COOK"
},
{
"hospital_name": "ST ALEXIUS MEDICAL CENTER",
"phone_number": {
"phone_number": "8478432000"
},
"zip_code": "60194",
"measure": "Central-Line-Associated Blood Stream Infections (CLABSI)",
"location": {
"needs_recoding": false,
"longitude": "-88.11660999985145",
"latitude": "42.03457999996721",
"human_address": "{\"address\":\"1555 N BARRINGTON RD\",\"city\":\"HOFFMAN ESTATES\",\"state\":\"IL\",\"zip\":\"60194\"}"
},
"provider_id": "140290",
"state": "IL",
"score": "1.00",
"address_1": "1555 N BARRINGTON RD",
"city": "HOFFMAN ESTATES",
"county_name": "COOK"
},
{
"hospital_name": "ST JOSEPH HOSPITAL & HEALTH CENTER INC",
"phone_number": {
"phone_number": "7654565300"
},
"zip_code": "46904",
"measure": "Central-Line-Associated Blood Stream Infections (CLABSI)",
"location": {
"needs_recoding": false,
"longitude": "-86.15557469537679",
"latitude": "40.48716908501003",
"human_address": "{\"address\":\"1907 W SYCAMORE ST\",\"city\":\"KOKOMO\",\"state\":\"IN\",\"zip\":\"46904\"}"
},
"provider_id": "150010",
"state": "IN",
"score": "0.00",
"address_1": "1907 W SYCAMORE ST",
"city": "KOKOMO",
"footnote": "The lower limit of the confidence interval cannot be calculated if the number of observed infections equals zero",
"county_name": "HOWARD"
},
{
"hospital_name": "IU HEALTH GOSHEN HOSPITAL",
"phone_number": {
"phone_number": "5743642141"
},
"zip_code": "46526",
"measure": "Central-Line-Associated Blood Stream Infections (CLABSI)",
"location": {
"needs_recoding": false,
"longitude": "-85.82922906744928",
"latitude": "41.56427812144063",
"human_address": "{\"address\":\"200 HIGH PARK AVE\",\"city\":\"GOSHEN\",\"state\":\"IN\",\"zip\":\"46526\"}"
},
"provider_id": "150026",
"state": "IN",
"score": "0.00",
"address_1": "200 HIGH PARK AVE",
"city": "GOSHEN",
"footnote": "The lower limit of the confidence interval cannot be calculated if the number of observed infections equals zero",
"county_name": "ELKHART"
},
{
"hospital_name": "RIVERVIEW HOSPITAL",
"phone_number": {
"phone_number": "3177767108"
},
"zip_code": "46060",
"measure": "Central-Line-Associated Blood Stream Infections (CLABSI)",
"location": {
"needs_recoding": false,
"longitude": "-86.02192123590333",
"latitude": "40.046992360174215",
"human_address": "{\"address\":\"395 WESTFIELD RD\",\"city\":\"NOBLESVILLE\",\"state\":\"IN\",\"zip\":\"46060\"}"
},
"provider_id": "150059",
"state": "IN",
"score": "1.29",
"address_1": "395 WESTFIELD RD",
"city": "NOBLESVILLE",
"county_name": "HAMILTON"
},
{
"hospital_name": "COMMUNITY HOSPITAL EAST",
"phone_number": {
"phone_number": "3173555411"
},
"zip_code": "46219",
"measure": "Central-Line-Associated Blood Stream Infections (CLABSI)",
"location": {
"needs_recoding": false,
"longitude": "-86.07385708309539",
"latitude": "39.78806855471845",
"human_address": "{\"address\":\"1500 N RITTER AVE\",\"city\":\"INDIANAPOLIS\",\"state\":\"IN\",\"zip\":\"46219\"}"
},
"provider_id": "150074",
"state": "IN",
"score": "1.63",
"address_1": "1500 N RITTER AVE",
"city": "INDIANAPOLIS",
"county_name": "MARION"
},
{
"hospital_name": "ST VINCENT HEART CENTER OF INDIANA LLC",
"phone_number": {
"phone_number": "3175835000"
},
"zip_code": "46290",
"measure": "Central-Line-Associated Blood Stream Infections (CLABSI)",
"location": {
"needs_recoding": false,
"longitude": "-86.15795268605524",
"latitude": "39.939262574284385",
"human_address": "{\"address\":\"10580 N MERIDIAN ST\",\"city\":\"INDIANAPOLIS\",\"state\":\"IN\",\"zip\":\"46290\"}"
},
"provider_id": "150153",
"state": "IN",
"score": "0.16",
"address_1": "10580 N MERIDIAN ST",
"city": "INDIANAPOLIS",
"county_name": "HAMILTON"
},
{
"hospital_name": "TRINITY REGIONAL MEDICAL CENTER",
"phone_number": {
"phone_number": "5155733101"
},
"zip_code": "50501",
"measure": "Central-Line-Associated Blood Stream Infections (CLABSI)",
"location": {
"needs_recoding": false,
"longitude": "-94.18999565531111",
"latitude": "42.49249673417616",
"human_address": "{\"address\":\"802 KENYON RD\",\"city\":\"FORT DODGE\",\"state\":\"IA\",\"zip\":\"50501\"}"
},
"provider_id": "160016",
"state": "IA",
"score": "0.00",
"address_1": "802 KENYON RD",
"city": "FORT DODGE",
"footnote": "The lower limit of the confidence interval cannot be calculated if the number of observed infections equals zero",
"county_name": "WEBSTER"
},
{
"hospital_name": "MENORAH MEDICAL CENTER",
"phone_number": {
"phone_number": "9134986773"
},
"zip_code": "66209",
"measure": "Central-Line-Associated Blood Stream Infections (CLABSI)",
"location": {
"needs_recoding": false,
"longitude": "-94.65244076134073",
"latitude": "38.91279553462064",
"human_address": "{\"address\":\"5721 WEST 119TH STREET\",\"city\":\"OVERLAND PARK\",\"state\":\"KS\",\"zip\":\"66209\"}"
},
"provider_id": "170182",
"state": "KS",
"score": "0.77",
"address_1": "5721 WEST 119TH STREET",
"city": "OVERLAND PARK",
"county_name": "JOHNSON"
},
{
"hospital_name": "KANSAS MEDICAL CENTER LLC",
"phone_number": {
"phone_number": "3163004000"
},
"zip_code": "67002",
"measure": "Central-Line-Associated Blood Stream Infections (CLABSI)",
"location": {
"needs_recoding": false,
"longitude": "-97.14649937510018",
"latitude": "37.72329998233435",
"human_address": "{\"address\":\"1124 WEST 21ST STREET\",\"city\":\"ANDOVER\",\"state\":\"KS\",\"zip\":\"67002\"}"
},
"provider_id": "170197",
"state": "KS",
"score": "0.00",
"address_1": "1124 WEST 21ST STREET",
"city": "ANDOVER",
"footnote": "The lower limit of the confidence interval cannot be calculated if the number of observed infections equals zero",
"county_name": "BUTLER"
},
{
"hospital_name": "GREENVIEW REGIONAL HOSPITAL",
"phone_number": {
"phone_number": "2707931000"
},
"zip_code": "42104",
"measure": "Central-Line-Associated Blood Stream Infections (CLABSI)",
"location": {
"needs_recoding": false,
"longitude": "-86.43566332870307",
"latitude": "36.96567227084449",
"human_address": "{\"address\":\"1801 ASHLEY CIRCLE\",\"city\":\"BOWLING GREEN\",\"state\":\"KY\",\"zip\":\"42104\"}"
},
"provider_id": "180124",
"state": "KY",
"score": "1.46",
"address_1": "1801 ASHLEY CIRCLE",
"city": "BOWLING GREEN",
"county_name": "WARREN"
},
{
"hospital_name": "CHARITY HOSPITAL & MEDICAL CENTER OF LOUISIANA AT",
"phone_number": {
"phone_number": "5049033000"
},
"zip_code": "70112",
"measure": "Central-Line-Associated Blood Stream Infections (CLABSI)",
"location": {
"needs_recoding": false,
"longitude": "-90.07621474213265",
"latitude": "29.952283621579042",
"human_address": "{\"address\":\"2021 PERDIDO ST 4FLOOR\",\"city\":\"NEW ORLEANS\",\"state\":\"LA\",\"zip\":\"70112\"}"
},
"provider_id": "190005",
"state": "LA",
"score": "0.52",
"address_1": "2021 PERDIDO ST 4FLOOR",
"city": "NEW ORLEANS",
"county_name": "ORLEANS"
},
{
"hospital_name": "WEST CALCASIEU CAMERON HOSPITAL",
"phone_number": {
"phone_number": "3375274240"
},
"zip_code": "70663",
"measure": "Central-Line-Associated Blood Stream Infections (CLABSI)",
"location": {
"needs_recoding": false,
"longitude": "-93.36865376444058",
"latitude": "30.23105428833003",
"human_address": "{\"address\":\"701 EAST CYPRESS STREET\",\"city\":\"SULPHUR\",\"state\":\"LA\",\"zip\":\"70663\"}"
},
"provider_id": "190013",
"state": "LA",
"score": "0.00",
"address_1": "701 EAST CYPRESS STREET",
"city": "SULPHUR",
"footnote": "The lower limit of the confidence interval cannot be calculated if the number of observed infections equals zero",
"county_name": "CALCASIEU"
},
{
"hospital_name": "WEST JEFFERSON MEDICAL CENTER",
"phone_number": {
"phone_number": "5043475511"
},
"zip_code": "70072",
"measure": "Central-Line-Associated Blood Stream Infections (CLABSI)",
"location": {
"needs_recoding": false,
"longitude": "-90.09580506253087",
"latitude": "29.891245459559002",
"human_address": "{\"address\":\"1101 MEDICAL CENTER BLVD\",\"city\":\"MARRERO\",\"state\":\"LA\",\"zip\":\"70072\"}"
},
"provider_id": "190039",
"state": "LA",
"score": "0.87",
"address_1": "1101 MEDICAL CENTER BLVD",
"city": "MARRERO",
"county_name": "JEFFERSON"
},
{
"hospital_name": "ST FRANCIS MEDICAL CENTER",
"phone_number": {
"phone_number": "3189664000"
},
"zip_code": "71201",
"measure": "Central-Line-Associated Blood Stream Infections (CLABSI)",
"location": {
"needs_recoding": false,
"longitude": "-92.11460315390349",
"latitude": "32.4993962563928",
"human_address": "{\"address\":\"309 JACKSON STREET\",\"city\":\"MONROE\",\"state\":\"LA\",\"zip\":\"71201\"}"
},
"provider_id": "190125",
"state": "LA",
"score": "0.86",
"address_1": "309 JACKSON STREET",
"city": "MONROE",
"county_name": "OUACHITA"
},
{
"hospital_name": "SAINT AGNES HOSPITAL",
"phone_number": {
"phone_number": "4103682101"
},
"zip_code": "21229",
"measure": "Central-Line-Associated Blood Stream Infections (CLABSI)",
"location": {
"needs_recoding": false,
"longitude": "-76.67132835490008",
"latitude": "39.27353944209506",
"human_address": "{\"address\":\"900 CATON AVENUE\",\"city\":\"BALTIMORE\",\"state\":\"MD\",\"zip\":\"21229\"}"
},
"provider_id": "210011",
"state": "MD",
"score": "0.40",
"address_1": "900 CATON AVENUE",
"city": "BALTIMORE",
"county_name": "BALTIMORE CITY"
},
{
"hospital_name": "UNION HOSPITAL OF CECIL COUNTY",
"phone_number": {
"phone_number": "4103927009"
},
"zip_code": "21921",
"measure": "Central-Line-Associated Blood Stream Infections (CLABSI)",
"location": {
"needs_recoding": false,
"longitude": "-75.83101143342967",
"latitude": "39.60809956543634",
"human_address": "{\"address\":\"106 BOW STREET\",\"city\":\"ELKTON\",\"state\":\"MD\",\"zip\":\"21921\"}"
},
"provider_id": "210032",
"state": "MD",
"score": "0.00",
"address_1": "106 BOW STREET",
"city": "ELKTON",
"footnote": "The lower limit of the confidence interval cannot be calculated if the number of observed infections equals zero",
"county_name": "CECIL"
},
{
"hospital_name": "COOLEY DICKINSON HOSPITAL INC,THE",
"phone_number": {
"phone_number": "4135822000"
},
"zip_code": "01060",
"measure": "Central-Line-Associated Blood Stream Infections (CLABSI)",
"location": {
"needs_recoding": false,
"longitude": "-72.6540478567967",
"latitude": "42.331890846796455",
"human_address": "{\"address\":\"30 LOCUST STREET\",\"city\":\"NORTHAMPTON\",\"state\":\"MA\",\"zip\":\"01060\"}"
},
"provider_id": "220015",
"state": "MA",
"score": "0.40",
"address_1": "30 LOCUST STREET",
"city": "NORTHAMPTON",
"county_name": "HAMPSHIRE"
},
{
"hospital_name": "JORDAN HOSPITAL INC",
"phone_number": {
"phone_number": "5087462000"
},
"zip_code": "02360",
"measure": "Central-Line-Associated Blood Stream Infections (CLABSI)",
"location": {
"needs_recoding": false,
"longitude": "-70.64544807723632",
"latitude": "41.944696740301595",
"human_address": "{\"address\":\"275 SANDWICH STREET\",\"city\":\"PLYMOUTH\",\"state\":\"MA\",\"zip\":\"02360\"}"
},
"provider_id": "220060",
"state": "MA",
"score": "1.81",
"address_1": "275 SANDWICH STREET",
"city": "PLYMOUTH",
"county_name": "PLYMOUTH"
},
{
"hospital_name": "LOWELL GENERAL HOSPITAL",
"phone_number": {
"phone_number": "9789376000"
},
"zip_code": "01854",
"measure": "Central-Line-Associated Blood Stream Infections (CLABSI)",
"location": {
"needs_recoding": false,
"longitude": "-71.34274219169298",
"latitude": "42.64611837983673",
"human_address": "{\"address\":\"295 VARNUM AVENUE\",\"city\":\"LOWELL\",\"state\":\"MA\",\"zip\":\"01854\"}"
},
"provider_id": "220063",
"state": "MA",
"score": "0.73",
"address_1": "295 VARNUM AVENUE",
"city": "LOWELL",
"county_name": "MIDDLESEX"
},
{
"hospital_name": "MERCY MEMORIAL HOSPITAL SYSTEM",
"phone_number": {
"phone_number": "7342408400"
},
"zip_code": "48162",
"measure": "Central-Line-Associated Blood Stream Infections (CLABSI)",
"location": {
"needs_recoding": false,
"longitude": "-83.38886190165364",
"latitude": "41.92521474078176",
"human_address": "{\"address\":\"718 N MACOMB ST\",\"city\":\"MONROE\",\"state\":\"MI\",\"zip\":\"48162\"}"
},
"provider_id": "230099",
"state": "MI",
"score": "0.57",
"address_1": "718 N MACOMB ST",
"city": "MONROE",
"county_name": "MONROE"
},
{
"hospital_name": "HENRY FORD WYANDOTTE HOSPITAL",
"phone_number": {
"phone_number": "7342466000"
},
"zip_code": "48192",
"measure": "Central-Line-Associated Blood Stream Infections (CLABSI)",
"location": {
"needs_recoding": false,
"longitude": "-83.14887638042991",
"latitude": "42.210431752750964",
"human_address": "{\"address\":\"2333 BIDDLE AVE\",\"city\":\"WYANDOTTE\",\"state\":\"MI\",\"zip\":\"48192\"}"
},
"provider_id": "230146",
"state": "MI",
"score": "0.54",
"address_1": "2333 BIDDLE AVE",
"city": "WYANDOTTE",
"county_name": "WAYNE"
},
{
"hospital_name": "MCLAREN - GREATER LANSING",
"phone_number": {
"phone_number": "5179756000"
},
"zip_code": "48910",
"measure": "Central-Line-Associated Blood Stream Infections (CLABSI)",
"location": {
"needs_recoding": false,
"longitude": "-84.55470432476125",
"latitude": "42.70484868556747",
"human_address": "{\"address\":\"401 W GREENLAWN AVE\",\"city\":\"LANSING\",\"state\":\"MI\",\"zip\":\"48910\"}"
},
"provider_id": "230167",
"state": "MI",
"score": "0.45",
"address_1": "401 W GREENLAWN AVE",
"city": "LANSING",
"county_name": "INGHAM"
},
{
"hospital_name": "OAKWOOD SOUTHSHORE MEDICAL CENTER",
"phone_number": {
"phone_number": "7346713800"
},
"zip_code": "48183",
"measure": "Central-Line-Associated Blood Stream Infections (CLABSI)",
"location": {
"needs_recoding": false,
"longitude": "-83.21153090112051",
"latitude": "42.11615248518768",
"human_address": "{\"address\":\"5450 FORT STREET\",\"city\":\"TRENTON\",\"state\":\"MI\",\"zip\":\"48183\"}"
},
"provider_id": "230176",
"state": "MI",
"score": "0.00",
"address_1": "5450 FORT STREET",
"city": "TRENTON",
"footnote": "The lower limit of the confidence interval cannot be calculated if the number of observed infections equals zero",
"county_name": "WAYNE"
},
{
"hospital_name": "ST JOHN MACOMB-OAKLAND HOSPITAL-MACOMB CENTER",
"phone_number": {
"phone_number": "5865735000"
},
"zip_code": "48093",
"measure": "Central-Line-Associated Blood Stream Infections (CLABSI)",
"location": {
"needs_recoding": false,
"longitude": "-83.01322999986445",
"latitude": "42.51331000015654",
"human_address": "{\"address\":\"11800 EAST TWELVE MILE ROAD\",\"city\":\"WARREN\",\"state\":\"MI\",\"zip\":\"48093\"}"
},
"provider_id": "230195",
"state": "MI",
"score": "0.21",
"address_1": "11800 EAST TWELVE MILE ROAD",
"city": "WARREN",
"county_name": "MACOMB"
},
{
"hospital_name": "WILLIAM BEAUMONT HOSPITAL-TROY",
"phone_number": {
"phone_number": "2489648800"
},
"zip_code": "48085",
"measure": "Central-Line-Associated Blood Stream Infections (CLABSI)",
"location": {
"needs_recoding": false,
"longitude": "-83.09117354889645",
"latitude": "42.61637362416574",
"human_address": "{\"address\":\"44201 DEQUINDRE ROAD\",\"city\":\"TROY\",\"state\":\"MI\",\"zip\":\"48085\"}"
},
"provider_id": "230269",
"state": "MI",
"score": "0.22",
"address_1": "44201 DEQUINDRE ROAD",
"city": "TROY",
"county_name": "OAKLAND"
},
{
"hospital_name": "HEARTLAND REGIONAL MEDICAL CENTER",
"phone_number": {
"phone_number": "8162716000"
},
"zip_code": "64506",
"measure": "Central-Line-Associated Blood Stream Infections (CLABSI)",
"location": {
"needs_recoding": false,
"longitude": "-94.77055291659462",
"latitude": "39.77022600565715",
"human_address": "{\"address\":\"5325 FARAON STREET\",\"city\":\"SAINT JOSEPH\",\"state\":\"MO\",\"zip\":\"64506\"}"
},
"provider_id": "260006",
"state": "MO",
"score": "0.90",
"address_1": "5325 FARAON STREET",
"city": "SAINT JOSEPH",
"county_name": "BUCHANAN"
},
{
"hospital_name": "CATHOLIC MEDICAL CENTER",
"phone_number": {
"phone_number": "6036683545"
},
"zip_code": "03102",
"measure": "Central-Line-Associated Blood Stream Infections (CLABSI)",
"location": {
"needs_recoding": false,
"longitude": "-71.47356479713436",
"latitude": "42.99170491075434",
"human_address": "{\"address\":\"100 MCGREGOR STREET\",\"city\":\"MANCHESTER\",\"state\":\"NH\",\"zip\":\"03102\"}"
},
"provider_id": "300034",
"state": "NH",
"score": "0.44",
"address_1": "100 MCGREGOR STREET",
"city": "MANCHESTER",
"county_name": "HILLSBOROUGH"
},
{
"hospital_name": "CAPITAL HEALTH MEDICAL CENTER - HOPEWELL",
"phone_number": {
"phone_number": "6093034000"
},
"zip_code": "08534",
"measure": "Central-Line-Associated Blood Stream Infections (CLABSI)",
"location": {
"needs_recoding": false,
"longitude": "-74.78338000038656",
"latitude": "40.32139999991023",
"human_address": "{\"address\":\"ONE CAPITAL WAY\",\"city\":\"PENNINGTON\",\"state\":\"NJ\",\"zip\":\"08534\"}"
},
"provider_id": "310044",
"state": "NJ",
"score": "1.04",
"address_1": "ONE CAPITAL WAY",
"city": "PENNINGTON",
"county_name": "MERCER"
},
{
"hospital_name": "HACKENSACKUMC MOUNTAINSIDE",
"phone_number": {
"phone_number": "9734296000"
},
"zip_code": "07042",
"measure": "Central-Line-Associated Blood Stream Infections (CLABSI)",
"location": {
"needs_recoding": false,
"longitude": "-74.21654999968257",
"latitude": "40.812890000373386",
"human_address": "{\"address\":\"BAY AND HIGHLAND AVE\",\"city\":\"MONTCLAIR\",\"state\":\"NJ\",\"zip\":\"07042\"}"
},
"provider_id": "310054",
"state": "NJ",
"score": "1.77",
"address_1": "BAY AND HIGHLAND AVE",
"city": "MONTCLAIR",
"county_name": "ESSEX"
},
{
"hospital_name": "UMDNJ UNIVERSITY HOSPITAL",
"phone_number": {
"phone_number": "9739725658"
},
"zip_code": "07103",
"measure": "Central-Line-Associated Blood Stream Infections (CLABSI)",
"location": {
"needs_recoding": false,
"longitude": "-74.19241663237352",
"latitude": "40.74018971142079",
"human_address": "{\"address\":\"150 BERGEN ST\",\"city\":\"NEWARK\",\"state\":\"NJ\",\"zip\":\"07103\"}"
},
"provider_id": "310119",
"state": "NJ",
"score": "1.52",
"address_1": "150 BERGEN ST",
"city": "NEWARK",
"county_name": "ESSEX"
},
{
"hospital_name": "NORTH SHORE UNIVERSITY HOSPITAL",
"phone_number": {
"phone_number": "5165620100"
},
"zip_code": "11030",
"measure": "Central-Line-Associated Blood Stream Infections (CLABSI)",
"location": {
"needs_recoding": false,
"longitude": "-73.7029361327896",
"latitude": "40.7788336479577",
"human_address": "{\"address\":\"300 COMMUNITY DRIVE\",\"city\":\"MANHASSET\",\"state\":\"NY\",\"zip\":\"11030\"}"
},
"provider_id": "330106",
"state": "NY",
"score": "1.02",
"address_1": "300 COMMUNITY DRIVE",
"city": "MANHASSET",
"county_name": "NASSAU"
},
{
"hospital_name": "ST MARY'S HOSPITAL ( TROY )",
"phone_number": {
"phone_number": "5182725000"
},
"zip_code": "12180",
"measure": "Central-Line-Associated Blood Stream Infections (CLABSI)",
"location": {
"needs_recoding": false,
"longitude": "-73.67571365496269",
"latitude": "42.74311483791416",
"human_address": "{\"address\":\"1300 MASSACHUSETTS AVENUE\",\"city\":\"TROY\",\"state\":\"NY\",\"zip\":\"12180\"}"
},
"provider_id": "330232",
"state": "NY",
"score": "0.00",
"address_1": "1300 MASSACHUSETTS AVENUE",
"city": "TROY",
"footnote": "The lower limit of the confidence interval cannot be calculated if the number of observed infections equals zero",
"county_name": "RENSSELAER"
},
{
"hospital_name": "UNITED HEALTH SERVICES HOSPITALS, INC",
"phone_number": {
"phone_number": "6077636000"
},
"zip_code": "13790",
"measure": "Central-Line-Associated Blood Stream Infections (CLABSI)",
"location": {
"needs_recoding": false,
"longitude": "-75.95902457800526",
"latitude": "42.11414098061864",
"human_address": "{\"address\":\"33-57 HARRISON STREET\",\"city\":\"JOHNSON CITY\",\"state\":\"NY\",\"zip\":\"13790\"}"
},
"provider_id": "330394",
"state": "NY",
"score": "0.15",
"address_1": "33-57 HARRISON STREET",
"city": "JOHNSON CITY",
"county_name": "BROOME"
},
{
"hospital_name": "MEMORIAL MISSION HOSPITAL AND ASHEVILLE SURGERY CE",
"phone_number": {
"phone_number": "8282131111"
},
"zip_code": "28801",
"measure": "Central-Line-Associated Blood Stream Infections (CLABSI)",
"location": {
"needs_recoding": false,
"longitude": "-82.54857768078148",
"latitude": "35.57812629827811",
"human_address": "{\"address\":\"509 BILTMORE AVE\",\"city\":\"ASHEVILLE\",\"state\":\"NC\",\"zip\":\"28801\"}"
},
"provider_id": "340002",
"state": "NC",
"score": "0.33",
"address_1": "509 BILTMORE AVE",
"city": "ASHEVILLE",
"county_name": "BUNCOMBE"
},
{
"hospital_name": "CALDWELL MEMORIAL HOSPITAL",
"phone_number": {
"phone_number": "8287575100"
},
"zip_code": "28645",
"measure": "Central-Line-Associated Blood Stream Infections (CLABSI)",
"location": {
"needs_recoding": false,
"longitude": "-81.53619288595786",
"latitude": "35.9106596118321",
"human_address": "{\"address\":\"321 MULBERRY ST SW\",\"city\":\"LENOIR\",\"state\":\"NC\",\"zip\":\"28645\"}"
},
"provider_id": "340041",
"state": "NC",
"score": "0.00",
"address_1": "321 MULBERRY ST SW",
"city": "LENOIR",
"footnote": "The lower limit of the confidence interval cannot be calculated if the number of observed infections equals zero",
"county_name": "CALDWELL"
},
{
"hospital_name": "GOOD SAMARITAN HOSPITAL",
"phone_number": {
"phone_number": "9372782612"
},
"zip_code": "45406",
"measure": "Central-Line-Associated Blood Stream Infections (CLABSI)",
"location": {
"needs_recoding": false,
"longitude": "-84.2349749803226",
"latitude": "39.78954388238421",
"human_address": "{\"address\":\"2222 PHILADELPHIA DRIVE\",\"city\":\"DAYTON\",\"state\":\"OH\",\"zip\":\"45406\"}"
},
"provider_id": "360052",
"state": "OH",
"score": "0.45",
"address_1": "2222 PHILADELPHIA DRIVE",
"city": "DAYTON",
"county_name": "MONTGOMERY"
},
{
"hospital_name": "SPRINGFIELD REGIONAL MEDICAL CENTER",
"phone_number": {
"phone_number": "9375231000"
},
"zip_code": "45504",
"measure": "Central-Line-Associated Blood Stream Infections (CLABSI)",
"location": {
"needs_recoding": false,
"longitude": "-83.84664000023565",
"latitude": "39.94091000019654",
"human_address": "{\"address\":\"100 MEDICAL CENTER DRIVE\",\"city\":\"SPRINGFIELD\",\"state\":\"OH\",\"zip\":\"45504\"}"
},
"provider_id": "360086",
"state": "OH",
"score": "0.51",
"address_1": "100 MEDICAL CENTER DRIVE",
"city": "SPRINGFIELD",
"county_name": "CLARK"
},
{
"hospital_name": "MERCY ST VINCENT MEDICAL CENTER",
"phone_number": {
"phone_number": "4192513232"
},
"zip_code": "43608",
"measure": "Central-Line-Associated Blood Stream Infections (CLABSI)",
"location": {
"needs_recoding": false,
"longitude": "-83.54162705197513",
"latitude": "41.6683530671383",
"human_address": "{\"address\":\"2213 CHERRY STREET\",\"city\":\"TOLEDO\",\"state\":\"OH\",\"zip\":\"43608\"}"
},
"provider_id": "360112",
"state": "OH",
"score": "1.26",
"address_1": "2213 CHERRY STREET",
"city": "TOLEDO",
"county_name": "LUCAS"
},
{
"hospital_name": "UNIVERSITY HOSPITALS OF CLEVELAND",
"phone_number": {
"phone_number": "2168441000"
},
"zip_code": "44106",
"measure": "Central-Line-Associated Blood Stream Infections (CLABSI)",
"location": {
"needs_recoding": false,
"longitude": "-81.60720335339141",
"latitude": "41.5073654306733",
"human_address": "{\"address\":\"11100 EUCLID AVENUE\",\"city\":\"CLEVELAND\",\"state\":\"OH\",\"zip\":\"44106\"}"
},
"provider_id": "360137",
"state": "OH",
"score": "0.38",
"address_1": "11100 EUCLID AVENUE",
"city": "CLEVELAND",
"county_name": "CUYAHOGA"
},
{
"hospital_name": "SUMMA WESTERN RESERVE HOSPITAL",
"phone_number": {
"phone_number": "3309717000"
},
"zip_code": "44223",
"measure": "Central-Line-Associated Blood Stream Infections (CLABSI)",
"location": {
"needs_recoding": false,
"longitude": "-81.51039133693723",
"latitude": "41.13190747666084",
"human_address": "{\"address\":\"1900 23RD STREET\",\"city\":\"CUYAHOGA FALLS\",\"state\":\"OH\",\"zip\":\"44223\"}"
},
"provider_id": "360150",
"state": "OH",
"score": "0.00",
"address_1": "1900 23RD STREET",
"city": "CUYAHOGA FALLS",
"footnote": "The lower limit of the confidence interval cannot be calculated if the number of observed infections equals zero",
"county_name": "SUMMIT"
},
{
"hospital_name": "MERCY REGIONAL MEDICAL CENTER",
"phone_number": {
"phone_number": "4409604000"
},
"zip_code": "44053",
"measure": "Central-Line-Associated Blood Stream Infections (CLABSI)",
"location": {
"needs_recoding": false,
"longitude": "-82.23526287899364",
"latitude": "41.43635496323981",
"human_address": "{\"address\":\"3700 KOLBE ROAD\",\"city\":\"LORAIN\",\"state\":\"OH\",\"zip\":\"44053\"}"
},
"provider_id": "360172",
"state": "OH",
"score": "0.46",
"address_1": "3700 KOLBE ROAD",
"city": "LORAIN",
"county_name": "LORAIN"
},
{
"hospital_name": "MIDWEST REGIONAL MEDICAL CENTER",
"phone_number": {
"phone_number": "4056104411"
},
"zip_code": "73110",
"measure": "Central-Line-Associated Blood Stream Infections (CLABSI)",
"location": {
"needs_recoding": false,
"longitude": "-97.39221153030849",
"latitude": "35.467221905624854",
"human_address": "{\"address\":\"2825 PARKLAWN DRIVE\",\"city\":\"MIDWEST CITY\",\"state\":\"OK\",\"zip\":\"73110\"}"
},
"provider_id": "370094",
"state": "OK",
"score": "1.69",
"address_1": "2825 PARKLAWN DRIVE",
"city": "MIDWEST CITY",
"county_name": "OKLAHOMA"
},
{
"hospital_name": "WESTERN PENNSYLVANIA HOSPITAL",
"phone_number": {
"phone_number": "4125785000"
},
"zip_code": "15224",
"measure": "Central-Line-Associated Blood Stream Infections (CLABSI)",
"location": {
"needs_recoding": false,
"longitude": "-79.94625449069753",
"latitude": "40.462344239406434",
"human_address": "{\"address\":\"4800 FRIENDSHIP AVENUE\",\"city\":\"PITTSBURGH\",\"state\":\"PA\",\"zip\":\"15224\"}"
},
"provider_id": "390090",
"state": "PA",
"score": "0.69",
"address_1": "4800 FRIENDSHIP AVENUE",
"city": "PITTSBURGH",
"county_name": "ALLEGHENY"
},
{
"hospital_name": "BAYLOR UNIVERSITY MEDICAL CENTER",
"phone_number": {
"phone_number": "2148200111"
},
"zip_code": "75246",
"measure": "Central-Line-Associated Blood Stream Infections (CLABSI)",
"location": {
"needs_recoding": false,
"longitude": "-96.78058055879215",
"latitude": "32.79071015418107",
"human_address": "{\"address\":\"3500 GASTON AVE\",\"city\":\"DALLAS\",\"state\":\"TX\",\"zip\":\"75246\"}"
},
"provider_id": "450021",
"state": "TX",
"score": "0.35",
"address_1": "3500 GASTON AVE",
"city": "DALLAS",
"county_name": "DALLAS"
},
{
"hospital_name": "SAINT JOSEPH MEDICAL CENTER",
"phone_number": {
"phone_number": "4103374488"
},
"zip_code": "21204",
"measure": "Catheter-Associated Urinary Tract Infections (CAUTI)",
"location": {
"needs_recoding": false,
"longitude": "-76.61320322619952",
"latitude": "39.388157634969",
"human_address": "{\"address\":\"7601 OSLER DRIVE\",\"city\":\"TOWSON\",\"state\":\"MD\",\"zip\":\"21204\"}"
},
"provider_id": "210007",
"state": "MD",
"score": "0.29",
"address_1": "7601 OSLER DRIVE",
"city": "TOWSON",
"county_name": "BALTIMORE"
},
{
"hospital_name": "HEYWOOD HOSPITAL",
"phone_number": {
"phone_number": "9786323420"
},
"zip_code": "01440",
"measure": "CAUTI Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-71.98590846807743",
"latitude": "42.58578390497303",
"human_address": "{\"address\":\"242 GREEN STREET\",\"city\":\"GARDNER\",\"state\":\"MA\",\"zip\":\"01440\"}"
},
"provider_id": "220095",
"state": "MA",
"score": "0.542",
"address_1": "242 GREEN STREET",
"city": "GARDNER",
"footnote": "No data are available from the hospital for this measure",
"county_name": "WORCESTER"
},
{
"hospital_name": "TITUS REGIONAL MEDICAL CENTER",
"phone_number": {
"phone_number": "9035776000"
},
"zip_code": "75455",
"measure": "SSI: Colon Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-94.97051858425583",
"latitude": "33.176021548519444",
"human_address": "{\"address\":\"2001 N JEFFERSON\",\"city\":\"MOUNT PLEASANT\",\"state\":\"TX\",\"zip\":\"75455\"}"
},
"provider_id": "450080",
"state": "TX",
"score": "0",
"address_1": "2001 N JEFFERSON",
"city": "MOUNT PLEASANT",
"footnote": "No data are available from the hospital for this measure",
"county_name": "TITUS"
},
{
"hospital_name": "FORT WALTON BEACH MEDICAL CENTER",
"phone_number": {
"phone_number": "8508621111"
},
"zip_code": "32547",
"measure": "CLABSI Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-86.63209324634278",
"latitude": "30.454616751593676",
"human_address": "{\"address\":\"1000 MAR-WALT DR\",\"city\":\"FORT WALTON BEACH\",\"state\":\"FL\",\"zip\":\"32547\"}"
},
"provider_id": "100223",
"state": "FL",
"score": "5.265",
"address_1": "1000 MAR-WALT DR",
"city": "FORT WALTON BEACH",
"county_name": "OKALOOSA"
},
{
"hospital_name": "CHARITY HOSPITAL & MEDICAL CENTER OF LOUISIANA AT",
"phone_number": {
"phone_number": "5049033000"
},
"zip_code": "70112",
"measure": "SSI: Colon Lower Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-90.07621474213265",
"latitude": "29.952283621579042",
"human_address": "{\"address\":\"2021 PERDIDO ST 4FLOOR\",\"city\":\"NEW ORLEANS\",\"state\":\"LA\",\"zip\":\"70112\"}"
},
"provider_id": "190005",
"state": "LA",
"score": "0.024",
"address_1": "2021 PERDIDO ST 4FLOOR",
"city": "NEW ORLEANS",
"county_name": "ORLEANS"
},
{
"hospital_name": "KENNEDY UNIVERSITY HOSPITAL - STRATFORD DIV",
"phone_number": {
"phone_number": "8563466000"
},
"zip_code": "08084",
"measure": "Central-Line-Associated Blood Stream Infections (CLABSI)",
"location": {
"needs_recoding": false,
"longitude": "-75.0090035295014",
"latitude": "39.828565025697856",
"human_address": "{\"address\":\"18 EAST LAUREL ROAD\",\"city\":\"STRATFORD\",\"state\":\"NJ\",\"zip\":\"08084\"}"
},
"provider_id": "310086",
"state": "NJ",
"score": "0.63",
"address_1": "18 EAST LAUREL ROAD",
"city": "STRATFORD",
"county_name": "CAMDEN"
},
{
"hospital_name": "EMORY UNIVERSITY HOSPITAL MIDTOWN",
"phone_number": {
"phone_number": "4046864411"
},
"zip_code": "30308",
"measure": "CLABSI Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-84.38521175264289",
"latitude": "33.769554092196195",
"human_address": "{\"address\":\"550 PEACHTREE ST NE\",\"city\":\"ATLANTA\",\"state\":\"GA\",\"zip\":\"30308\"}"
},
"provider_id": "110078",
"state": "GA",
"score": "24",
"address_1": "550 PEACHTREE ST NE",
"city": "ATLANTA",
"county_name": "FULTON"
},
{
"hospital_name": "SAINT ALPHONSUS MEDICAL CENTER - NAMPA",
"phone_number": {
"phone_number": "2084635000"
},
"zip_code": "83686",
"measure": "CAUTI Urinary Catheter Days",
"location": {
"needs_recoding": false,
"longitude": "-116.57279888647389",
"latitude": "43.55305325072203",
"human_address": "{\"address\":\"1512 TWELFTH AVENUE ROAD\",\"city\":\"NAMPA\",\"state\":\"ID\",\"zip\":\"83686\"}"
},
"provider_id": "130013",
"state": "ID",
"score": "569",
"address_1": "1512 TWELFTH AVENUE ROAD",
"city": "NAMPA",
"footnote": "No data are available from the hospital for this measure",
"county_name": "CANYON"
},
{
"hospital_name": "CARSON TAHOE REGIONAL MEDICAL CENTER",
"phone_number": {
"phone_number": "7754458000"
},
"zip_code": "89703",
"measure": "CAUTI Upper Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-119.78568813228787",
"latitude": "39.20362797749171",
"human_address": "{\"address\":\"1600 MEDICAL PARKWAY\",\"city\":\"CARSON CITY\",\"state\":\"NV\",\"zip\":\"89703\"}"
},
"provider_id": "290019",
"state": "NV",
"score": "5.142",
"address_1": "1600 MEDICAL PARKWAY",
"city": "CARSON CITY",
"county_name": "CARSON CITY"
},
{
"hospital_name": "METROWEST MEDICAL CENTER",
"phone_number": {
"phone_number": "5083831000"
},
"zip_code": "01701",
"measure": "CLABSI Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-71.41931468344899",
"latitude": "42.28403792161737",
"human_address": "{\"address\":\"115 LINCOLN STREET\",\"city\":\"FRAMINGHAM\",\"state\":\"MA\",\"zip\":\"01701\"}"
},
"provider_id": "220175",
"state": "MA",
"score": "1.258",
"address_1": "115 LINCOLN STREET",
"city": "FRAMINGHAM",
"footnote": "The lower limit of the confidence interval cannot be calculated if the number of observed infections equals zero",
"county_name": "MIDDLESEX"
},
{
"hospital_name": "HUGH CHATHAM MEMORIAL HOSPITAL",
"phone_number": {
"phone_number": "3365277000"
},
"zip_code": "28621",
"measure": "SSI: Abdominal Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-80.83818409291666",
"latitude": "36.26252834901601",
"human_address": "{\"address\":\"180 PARKWOOD DR\",\"city\":\"ELKIN\",\"state\":\"NC\",\"zip\":\"28621\"}"
},
"provider_id": "340097",
"state": "NC",
"score": "0.161",
"address_1": "180 PARKWOOD DR",
"city": "ELKIN",
"footnote": "No data are available from the hospital for this measure",
"county_name": "SURRY"
},
{
"hospital_name": "GASTON MEMORIAL HOSPITAL",
"phone_number": {
"phone_number": "7048344891"
},
"zip_code": "28052",
"measure": "SSI: Colon, Number of Procedures",
"location": {
"needs_recoding": false,
"longitude": "-81.13779322697798",
"latitude": "35.274605113389384",
"human_address": "{\"address\":\"2525 COURT DR\",\"city\":\"GASTONIA\",\"state\":\"NC\",\"zip\":\"28052\"}"
},
"provider_id": "340032",
"state": "NC",
"score": "94",
"address_1": "2525 COURT DR",
"city": "GASTONIA",
"county_name": "GASTON"
},
{
"hospital_name": "UNIVERSITY GENERAL HOSPITAL",
"phone_number": {
"phone_number": "7136523800"
},
"zip_code": "77054",
"measure": "SSI: Colon Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-95.40077980828744",
"latitude": "29.69300790464041",
"human_address": "{\"address\":\"7501 FANNIN\",\"city\":\"HOUSTON\",\"state\":\"TX\",\"zip\":\"77054\"}"
},
"provider_id": "670019",
"state": "TX",
"score": "0",
"address_1": "7501 FANNIN",
"city": "HOUSTON",
"footnote": "No data are available from the hospital for this measure",
"county_name": "HARRIS"
},
{
"hospital_name": "PRESENCE SAINTS MARY AND ELIZABETH MEDICAL CENTER",
"phone_number": {
"phone_number": "3126335896"
},
"zip_code": "60622",
"measure": "SSI: Colon Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-87.68298323205772",
"latitude": "41.90300874507895",
"human_address": "{\"address\":\"2233 W DIVISION ST\",\"city\":\"CHICAGO\",\"state\":\"IL\",\"zip\":\"60622\"}"
},
"provider_id": "140180",
"state": "IL",
"score": "0.987",
"address_1": "2233 W DIVISION ST",
"city": "CHICAGO",
"footnote": "No data are available from the hospital for this measure",
"county_name": "COOK"
},
{
"hospital_name": "ST ALEXIUS MEDICAL CENTER",
"phone_number": {
"phone_number": "8478432000"
},
"zip_code": "60194",
"measure": "SSI: Colon Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-88.11660999985145",
"latitude": "42.03457999996721",
"human_address": "{\"address\":\"1555 N BARRINGTON RD\",\"city\":\"HOFFMAN ESTATES\",\"state\":\"IL\",\"zip\":\"60194\"}"
},
"provider_id": "140290",
"state": "IL",
"score": "0",
"address_1": "1555 N BARRINGTON RD",
"city": "HOFFMAN ESTATES",
"footnote": "The lower limit of the confidence interval cannot be calculated if the number of observed infections equals zero",
"county_name": "COOK"
},
{
"hospital_name": "BROWARD HEALTH NORTH",
"phone_number": {
"phone_number": "9547866950"
},
"zip_code": "33064",
"measure": "Catheter-Associated Urinary Tract Infections (CAUTI)",
"location": {
"needs_recoding": false,
"longitude": "-80.12059958074023",
"latitude": "26.275207341506867",
"human_address": "{\"address\":\"201 E SAMPLE RD\",\"city\":\"POMPANO BEACH\",\"state\":\"FL\",\"zip\":\"33064\"}"
},
"provider_id": "100086",
"state": "FL",
"score": "0.99",
"address_1": "201 E SAMPLE RD",
"city": "POMPANO BEACH",
"county_name": "BROWARD"
},
{
"hospital_name": "CHENANGO MEMORIAL HOSPITAL, INC",
"phone_number": {
"phone_number": "6073354111"
},
"zip_code": "13815",
"measure": "SSI: Colon, Number of Procedures",
"location": {
"needs_recoding": false,
"longitude": "-75.52464780144112",
"latitude": "42.54115408979425",
"human_address": "{\"address\":\"179 NORTH BROAD STREET\",\"city\":\"NORWICH\",\"state\":\"NY\",\"zip\":\"13815\"}"
},
"provider_id": "330033",
"state": "NY",
"score": "7",
"address_1": "179 NORTH BROAD STREET",
"city": "NORWICH",
"footnote": "No data are available from the hospital for this measure",
"county_name": "CHENANGO"
},
{
"hospital_name": "KAISER FOUNDATION HOSPITAL OAKLAND/RICHMOND",
"phone_number": {
"phone_number": "5107521000"
},
"zip_code": "94611",
"measure": "Catheter-Associated Urinary Tract Infections (CAUTI)",
"location": {
"needs_recoding": false,
"longitude": "-122.25792604723591",
"latitude": "37.824228032556334",
"human_address": "{\"address\":\"280 W MAC ARTHUR BLVD\",\"city\":\"OAKLAND\",\"state\":\"CA\",\"zip\":\"94611\"}"
},
"provider_id": "050075",
"state": "CA",
"score": "1.75",
"address_1": "280 W MAC ARTHUR BLVD",
"city": "OAKLAND",
"county_name": "ALAMEDA"
},
{
"hospital_name": "DELTA COUNTY MEMORIAL HOSPITAL",
"phone_number": {
"phone_number": "9708747681"
},
"zip_code": "81416",
"measure": "CAUTI Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-108.04691128599967",
"latitude": "38.74320924141682",
"human_address": "{\"address\":\"1501 E 3RD STREET\",\"city\":\"DELTA\",\"state\":\"CO\",\"zip\":\"81416\"}"
},
"provider_id": "060071",
"state": "CO",
"score": "0.518",
"address_1": "1501 E 3RD STREET",
"city": "DELTA",
"footnote": "No data are available from the hospital for this measure",
"county_name": "DELTA"
},
{
"hospital_name": "ST JOSEPH MEDICAL CENTER",
"phone_number": {
"phone_number": "8169424000"
},
"zip_code": "64114",
"measure": "Catheter-Associated Urinary Tract Infections (CAUTI)",
"location": {
"needs_recoding": false,
"longitude": "-94.60166923271237",
"latitude": "38.93505261670714",
"human_address": "{\"address\":\"1000 CARONDELET DR\",\"city\":\"KANSAS CITY\",\"state\":\"MO\",\"zip\":\"64114\"}"
},
"provider_id": "260085",
"state": "MO",
"score": "0.00",
"address_1": "1000 CARONDELET DR",
"city": "KANSAS CITY",
"footnote": "The lower limit of the confidence interval cannot be calculated if the number of observed infections equals zero",
"county_name": "JACKSON"
},
{
"hospital_name": "CHESAPEAKE REGIONAL MEDICAL CENTER",
"phone_number": {
"phone_number": "7573128121"
},
"zip_code": "23320",
"measure": "Catheter-Associated Urinary Tract Infections (CAUTI)",
"location": {
"needs_recoding": false,
"longitude": "-76.24495078758866",
"latitude": "36.74632762789827",
"human_address": "{\"address\":\"736 BATTLEFIELD BLVD NORTH\",\"city\":\"CHESAPEAKE\",\"state\":\"VA\",\"zip\":\"23320\"}"
},
"provider_id": "490120",
"state": "VA",
"score": "1.78",
"address_1": "736 BATTLEFIELD BLVD NORTH",
"city": "CHESAPEAKE",
"county_name": "CHESAPEAKE CITY"
},
{
"hospital_name": "LEHIGH VALLEY HOSPITAL",
"phone_number": {
"phone_number": "6104022273"
},
"zip_code": "18105",
"measure": "SSI: Colon Lower Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-75.46693999988094",
"latitude": "40.60348999986377",
"human_address": "{\"address\":\"PO BOX 689\",\"city\":\"ALLENTOWN\",\"state\":\"PA\",\"zip\":\"18105\"}"
},
"provider_id": "390133",
"state": "PA",
"score": "0.332",
"address_1": "PO BOX 689",
"city": "ALLENTOWN",
"county_name": "LEHIGH"
},
{
"hospital_name": "GREENWICH HOSPITAL ASSOCIATION",
"phone_number": {
"phone_number": "2038633000"
},
"zip_code": "06830",
"measure": "Central-Line-Associated Blood Stream Infections (CLABSI)",
"location": {
"needs_recoding": false,
"longitude": "-73.62967736028281",
"latitude": "41.034438955125324",
"human_address": "{\"address\":\"5 PERRYRIDGE RD\",\"city\":\"GREENWICH\",\"state\":\"CT\",\"zip\":\"06830\"}"
},
"provider_id": "070018",
"state": "CT",
"score": "0.00",
"address_1": "5 PERRYRIDGE RD",
"city": "GREENWICH",
"footnote": "The lower limit of the confidence interval cannot be calculated if the number of observed infections equals zero",
"county_name": "FAIRFIELD"
},
{
"hospital_name": "CARLISLE REGIONAL MEDICAL CENTER",
"phone_number": {
"phone_number": "7172491212"
},
"zip_code": "17015",
"measure": "CAUTI Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-77.22482520587928",
"latitude": "40.18477347221046",
"human_address": "{\"address\":\"361 ALEXANDER SPRING ROAD\",\"city\":\"CARLISLE\",\"state\":\"PA\",\"zip\":\"17015\"}"
},
"provider_id": "390058",
"state": "PA",
"score": "1.500",
"address_1": "361 ALEXANDER SPRING ROAD",
"city": "CARLISLE",
"footnote": "The lower limit of the confidence interval cannot be calculated if the number of observed infections equals zero",
"county_name": "CUMBERLAND"
},
{
"hospital_name": "WAYNE GENERAL HOSPITAL",
"phone_number": {
"phone_number": "6017355151"
},
"zip_code": "39367",
"measure": "SSI: Colon Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-88.6355945721817",
"latitude": "31.6746520276784",
"human_address": "{\"address\":\"950 MATTHEW DR\",\"city\":\"WAYNESBORO\",\"state\":\"MS\",\"zip\":\"39367\"}"
},
"provider_id": "250077",
"state": "MS",
"score": "0",
"address_1": "950 MATTHEW DR",
"city": "WAYNESBORO",
"footnote": "No data are available from the hospital for this measure",
"county_name": "WAYNE"
},
{
"hospital_name": "CITIZENS MEMORIAL HOSPITAL",
"phone_number": {
"phone_number": "4173266000"
},
"zip_code": "65613",
"measure": "SSI: Colon Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-93.42088938626439",
"latitude": "37.62676637449853",
"human_address": "{\"address\":\"1500 N OAKLAND\",\"city\":\"BOLIVAR\",\"state\":\"MO\",\"zip\":\"65613\"}"
},
"provider_id": "260195",
"state": "MO",
"score": "0.276",
"address_1": "1500 N OAKLAND",
"city": "BOLIVAR",
"footnote": "No data are available from the hospital for this measure",
"county_name": "POLK"
},
{
"hospital_name": "SHANDS JACKSONVILLE MEDICAL CENTER",
"phone_number": {
"phone_number": "9042440411"
},
"zip_code": "32209",
"measure": "CAUTI Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-81.66430677074135",
"latitude": "30.346818319782344",
"human_address": "{\"address\":\"655 W 8TH ST\",\"city\":\"JACKSONVILLE\",\"state\":\"FL\",\"zip\":\"32209\"}"
},
"provider_id": "100001",
"state": "FL",
"score": "19.408",
"address_1": "655 W 8TH ST",
"city": "JACKSONVILLE",
"county_name": "DUVAL"
},
{
"hospital_name": "CHICKASAW NATION MEDICAL CENTER",
"phone_number": {
"phone_number": "5804363980"
},
"zip_code": "74820",
"measure": "SSI: Colon Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-96.64942521532862",
"latitude": "34.7359500703156",
"human_address": "{\"address\":\"1921 STONECIPHER BLVD\",\"city\":\"ADA\",\"state\":\"OK\",\"zip\":\"74820\"}"
},
"provider_id": "370180",
"state": "OK",
"score": "0",
"address_1": "1921 STONECIPHER BLVD",
"city": "ADA",
"footnote": "No data are available from the hospital for this measure",
"county_name": "PONTOTOC"
},
{
"hospital_name": "SAINTS MEDICAL CENTER INC",
"phone_number": {
"phone_number": "9784581411"
},
"zip_code": "01852",
"measure": "SSI: Colon Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-71.30047789658876",
"latitude": "42.64526089826941",
"human_address": "{\"address\":\"1 HOSPITAL DRIVE\",\"city\":\"LOWELL\",\"state\":\"MA\",\"zip\":\"01852\"}"
},
"provider_id": "220082",
"state": "MA",
"score": "0.326",
"address_1": "1 HOSPITAL DRIVE",
"city": "LOWELL",
"footnote": "No data are available from the hospital for this measure",
"county_name": "MIDDLESEX"
},
{
"hospital_name": "THOMAS JEFFERSON UNIVERSITY HOSPITAL",
"phone_number": {
"phone_number": "2159556000"
},
"zip_code": "19107",
"measure": "Central-Line-Associated Blood Stream Infections (CLABSI)",
"location": {
"needs_recoding": false,
"longitude": "-75.15863241522088",
"latitude": "39.94977736163865",
"human_address": "{\"address\":\"111 SOUTH 11TH STREET\",\"city\":\"PHILADELPHIA\",\"state\":\"PA\",\"zip\":\"19107\"}"
},
"provider_id": "390174",
"state": "PA",
"score": "0.70",
"address_1": "111 SOUTH 11TH STREET",
"city": "PHILADELPHIA",
"county_name": "PHILADELPHIA"
},
{
"hospital_name": "VALLEY MEDICAL CENTER",
"phone_number": {
"phone_number": "4252283450"
},
"zip_code": "98055",
"measure": "CAUTI Upper Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-122.2143510626562",
"latitude": "47.44118242796297",
"human_address": "{\"address\":\"400 S 43RD ST\",\"city\":\"RENTON\",\"state\":\"WA\",\"zip\":\"98055\"}"
},
"provider_id": "500088",
"state": "WA",
"score": "4.785",
"address_1": "400 S 43RD ST",
"city": "RENTON",
"county_name": "KING"
},
{
"hospital_name": "ST VINCENT'S BIRMINGHAM",
"phone_number": {
"phone_number": "2059397000"
},
"zip_code": "35205",
"measure": "SSI: Abdominal Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-86.78874615062654",
"latitude": "33.507976919032444",
"human_address": "{\"address\":\"810 ST VINCENT'S DRIVE\",\"city\":\"BIRMINGHAM\",\"state\":\"AL\",\"zip\":\"35205\"}"
},
"provider_id": "010056",
"state": "AL",
"score": "0",
"address_1": "810 ST VINCENT'S DRIVE",
"city": "BIRMINGHAM",
"footnote": "The lower limit of the confidence interval cannot be calculated if the number of observed infections equals zero",
"county_name": "JEFFERSON"
},
{
"hospital_name": "VIRGINIA REGIONAL MEDICAL CENTER",
"phone_number": {
"phone_number": "2187413340"
},
"zip_code": "55792",
"measure": "CAUTI Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-92.54758545779889",
"latitude": "47.53074618385838",
"human_address": "{\"address\":\"901 9TH STREET NORTH\",\"city\":\"VIRGINIA\",\"state\":\"MN\",\"zip\":\"55792\"}"
},
"provider_id": "240084",
"state": "MN",
"score": "5",
"address_1": "901 9TH STREET NORTH",
"city": "VIRGINIA",
"footnote": "No data are available from the hospital for this measure",
"county_name": "SAINT LOUIS"
},
{
"hospital_name": "CARLE FOUNDATION HOSPITAL",
"phone_number": {
"phone_number": "2173833311"
},
"zip_code": "61801",
"measure": "CAUTI Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-88.21442337723528",
"latitude": "40.11740028184812",
"human_address": "{\"address\":\"611 WEST PARK STREET\",\"city\":\"URBANA\",\"state\":\"IL\",\"zip\":\"61801\"}"
},
"provider_id": "140091",
"state": "IL",
"score": "15",
"address_1": "611 WEST PARK STREET",
"city": "URBANA",
"county_name": "CHAMPAIGN"
},
{
"hospital_name": "SOUTHEAST GEORGIA HEALTH SYSTEM- BRUNSWICK CAMPUS",
"phone_number": {
"phone_number": "9124667000"
},
"zip_code": "31520",
"measure": "CAUTI Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-81.48487023799032",
"latitude": "31.173876773695465",
"human_address": "{\"address\":\"2415 PARKWOOD DRIVE\",\"city\":\"BRUNSWICK\",\"state\":\"GA\",\"zip\":\"31520\"}"
},
"provider_id": "110025",
"state": "GA",
"score": "2",
"address_1": "2415 PARKWOOD DRIVE",
"city": "BRUNSWICK",
"county_name": "GLYNN"
},
{
"hospital_name": "SOUTH SUNFLOWER COUNTY HOSPITAL",
"phone_number": {
"phone_number": "6628875235"
},
"zip_code": "38751",
"measure": "CLABSI Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-90.65032981409003",
"latitude": "33.457300169361865",
"human_address": "{\"address\":\"121 E BAKER ST\",\"city\":\"INDIANOLA\",\"state\":\"MS\",\"zip\":\"38751\"}"
},
"provider_id": "250095",
"state": "MS",
"score": "0.030",
"address_1": "121 E BAKER ST",
"city": "INDIANOLA",
"footnote": "No data are available from the hospital for this measure",
"county_name": "SUNFLOWER"
},
{
"hospital_name": "MAMMOTH HOSPITAL",
"phone_number": {
"phone_number": "7609343311"
},
"zip_code": "93546",
"measure": "CAUTI Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-118.96389202815848",
"latitude": "37.643908749613914",
"human_address": "{\"address\":\"85 SIERRA PARK ROAD PO BOX 660\",\"city\":\"MAMMOTH LAKES\",\"state\":\"CA\",\"zip\":\"93546\"}"
},
"provider_id": "051303",
"state": "CA",
"score": "0",
"address_1": "85 SIERRA PARK ROAD PO BOX 660",
"city": "MAMMOTH LAKES",
"footnote": "No data are available from the hospital for this measure",
"county_name": "MONO"
},
{
"hospital_name": "KAISER FOUNDATION HOSPITAL - ROSEVILLE",
"phone_number": {
"phone_number": "9167844000"
},
"zip_code": "95661",
"measure": "CLABSI Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-121.24720499816652",
"latitude": "38.746743576992",
"human_address": "{\"address\":\"1600 EUREKA ROAD\",\"city\":\"ROSEVILLE\",\"state\":\"CA\",\"zip\":\"95661\"}"
},
"provider_id": "050772",
"state": "CA",
"score": "6.692",
"address_1": "1600 EUREKA ROAD",
"city": "ROSEVILLE",
"footnote": "Data were collected during a shorter period (fewer quarters) than the maximum possible time for this measure",
"county_name": "PLACER"
},
{
"hospital_name": "HUNTERDON MEDICAL CENTER",
"phone_number": {
"phone_number": "9087886100"
},
"zip_code": "08822",
"measure": "SSI: Abdominal Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-74.86047582694827",
"latitude": "40.53256492698876",
"human_address": "{\"address\":\"2100 WESCOTT DRIVE\",\"city\":\"FLEMINGTON\",\"state\":\"NJ\",\"zip\":\"08822\"}"
},
"provider_id": "310005",
"state": "NJ",
"score": "0",
"address_1": "2100 WESCOTT DRIVE",
"city": "FLEMINGTON",
"footnote": "No data are available from the hospital for this measure",
"county_name": "HUNTERDON"
},
{
"hospital_name": "CALDWELL MEMORIAL HOSPITAL",
"phone_number": {
"phone_number": "8287575100"
},
"zip_code": "28645",
"measure": "SSI: Abdominal Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-81.53619288595786",
"latitude": "35.9106596118321",
"human_address": "{\"address\":\"321 MULBERRY ST SW\",\"city\":\"LENOIR\",\"state\":\"NC\",\"zip\":\"28645\"}"
},
"provider_id": "340041",
"state": "NC",
"score": "0.008",
"address_1": "321 MULBERRY ST SW",
"city": "LENOIR",
"footnote": "No data are available from the hospital for this measure",
"county_name": "CALDWELL"
},
{
"hospital_name": "BRANDON REGIONAL HOSPITAL",
"phone_number": {
"phone_number": "8136815551"
},
"zip_code": "33511",
"measure": "SSI: Abdominal Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-82.28825992618027",
"latitude": "27.93398797465136",
"human_address": "{\"address\":\"119 OAKFIELD DR\",\"city\":\"BRANDON\",\"state\":\"FL\",\"zip\":\"33511\"}"
},
"provider_id": "100243",
"state": "FL",
"score": "1",
"address_1": "119 OAKFIELD DR",
"city": "BRANDON",
"footnote": "No data are available from the hospital for this measure",
"county_name": "HILLSBOROUGH"
},
{
"hospital_name": "UNIVERSITY HOSPITAL OF BROOKLYN ( DOWNSTATE )",
"phone_number": {
"phone_number": "7182701000"
},
"zip_code": "11203",
"measure": "Surgical Site Infection from abdominal hysterectomy (SSI: Hysterectomy)",
"location": {
"needs_recoding": false,
"longitude": "-73.94435913155519",
"latitude": "40.654538350288135",
"human_address": "{\"address\":\"445 LENOX ROAD\",\"city\":\"BROOKLYN\",\"state\":\"NY\",\"zip\":\"11203\"}"
},
"provider_id": "330350",
"state": "NY",
"score": "0.99",
"address_1": "445 LENOX ROAD",
"city": "BROOKLYN",
"county_name": "KINGS"
},
{
"hospital_name": "MARICOPA MEDICAL CENTER",
"phone_number": {
"phone_number": "6023445011"
},
"zip_code": "85008",
"measure": "SSI: Colon Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-112.02587167243456",
"latitude": "33.45851420742093",
"human_address": "{\"address\":\"2601 EAST ROOSEVELT STREET\",\"city\":\"PHOENIX\",\"state\":\"AZ\",\"zip\":\"85008\"}"
},
"provider_id": "030022",
"state": "AZ",
"score": "0.582",
"address_1": "2601 EAST ROOSEVELT STREET",
"city": "PHOENIX",
"footnote": "No data are available from the hospital for this measure",
"county_name": "MARICOPA"
},
{
"hospital_name": "LIBERTY HOSPITAL",
"phone_number": {
"phone_number": "8167817200"
},
"zip_code": "64069",
"measure": "Central-Line-Associated Blood Stream Infections (CLABSI)",
"location": {
"needs_recoding": false,
"longitude": "-94.42521706728134",
"latitude": "39.27615911009944",
"human_address": "{\"address\":\"2525 GLENN HENDREN DR\",\"city\":\"LIBERTY\",\"state\":\"MO\",\"zip\":\"64069\"}"
},
"provider_id": "260177",
"state": "MO",
"score": "0.37",
"address_1": "2525 GLENN HENDREN DR",
"city": "LIBERTY",
"county_name": "CLAY"
},
{
"hospital_name": "ST MARY'S MEDICAL CENTER",
"phone_number": {
"phone_number": "5618406202"
},
"zip_code": "33407",
"measure": "SSI: Abdominal, Number of Procedures",
"location": {
"needs_recoding": false,
"longitude": "-80.06323830026884",
"latitude": "26.753259089163066",
"human_address": "{\"address\":\"901 45TH ST\",\"city\":\"WEST PALM BEACH\",\"state\":\"FL\",\"zip\":\"33407\"}"
},
"provider_id": "100288",
"state": "FL",
"score": "21",
"address_1": "901 45TH ST",
"city": "WEST PALM BEACH",
"footnote": "No data are available from the hospital for this measure",
"county_name": "PALM BEACH"
},
{
"hospital_name": "ROBERT PACKER HOSPITAL",
"phone_number": {
"phone_number": "5708886666"
},
"zip_code": "18840",
"measure": "CLABSI Lower Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-76.5187392379889",
"latitude": "41.98091312524291",
"human_address": "{\"address\":\"ONE GUTHRIE SQUARE\",\"city\":\"SAYRE\",\"state\":\"PA\",\"zip\":\"18840\"}"
},
"provider_id": "390079",
"state": "PA",
"score": "0.090",
"address_1": "ONE GUTHRIE SQUARE",
"city": "SAYRE",
"county_name": "BRADFORD"
},
{
"hospital_name": "ST ELIZABETH HOSPITAL",
"phone_number": {
"phone_number": "6182342120"
},
"zip_code": "62220",
"measure": "CLABSI Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-89.98823715460628",
"latitude": "38.511337042602406",
"human_address": "{\"address\":\"211 S THIRD ST\",\"city\":\"BELLEVILLE\",\"state\":\"IL\",\"zip\":\"62220\"}"
},
"provider_id": "140187",
"state": "IL",
"score": "2.583",
"address_1": "211 S THIRD ST",
"city": "BELLEVILLE",
"county_name": "SAINT CLAIR"
},
{
"hospital_name": "PRESBYTERIAN/ST LUKE'S MEDICAL CENTER",
"phone_number": {
"phone_number": "3038396100"
},
"zip_code": "80218",
"measure": "CAUTI Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-104.9665804509022",
"latitude": "39.74608820239075",
"human_address": "{\"address\":\"1719 E 19TH AVE\",\"city\":\"DENVER\",\"state\":\"CO\",\"zip\":\"80218\"}"
},
"provider_id": "060014",
"state": "CO",
"score": "2.908",
"address_1": "1719 E 19TH AVE",
"city": "DENVER",
"county_name": "DENVER"
},
{
"hospital_name": "ALHAMBRA HOSPITAL MEDICAL CENTER",
"phone_number": {
"phone_number": "6265701606"
},
"zip_code": "91801",
"measure": "Central-Line-Associated Blood Stream Infections (CLABSI)",
"location": {
"needs_recoding": false,
"longitude": "-118.14496667843531",
"latitude": "34.09005410927659",
"human_address": "{\"address\":\"100 S RAYMOND AVE\",\"city\":\"ALHAMBRA\",\"state\":\"CA\",\"zip\":\"91801\"}"
},
"provider_id": "050281",
"state": "CA",
"score": "0.00",
"address_1": "100 S RAYMOND AVE",
"city": "ALHAMBRA",
"footnote": "The lower limit of the confidence interval cannot be calculated if the number of observed infections equals zero",
"county_name": "LOS ANGELES"
},
{
"hospital_name": "LEWISGALE HOSPITAL PULASKI",
"phone_number": {
"phone_number": "5409948300"
},
"zip_code": "24301",
"measure": "SSI: Colon Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-80.75703826621293",
"latitude": "37.069930673701265",
"human_address": "{\"address\":\"2400 LEE HIGHWAY\",\"city\":\"PULASKI\",\"state\":\"VA\",\"zip\":\"24301\"}"
},
"provider_id": "490116",
"state": "VA",
"score": "1",
"address_1": "2400 LEE HIGHWAY",
"city": "PULASKI",
"footnote": "No data are available from the hospital for this measure",
"county_name": "PULASKI"
},
{
"hospital_name": "CATSKILL REGIONAL MEDICAL CENTER",
"phone_number": {
"phone_number": "8457943300"
},
"zip_code": "12742",
"measure": "SSI: Abdominal, Number of Procedures",
"location": {
"needs_recoding": false,
"longitude": "-74.72304999985744",
"latitude": "41.71441999988326",
"human_address": "{\"address\":\"68 HARRIS BUSHVILLE ROAD\",\"city\":\"HARRIS\",\"state\":\"NY\",\"zip\":\"12742\"}"
},
"provider_id": "330386",
"state": "NY",
"score": "25",
"address_1": "68 HARRIS BUSHVILLE ROAD",
"city": "HARRIS",
"footnote": "No data are available from the hospital for this measure",
"county_name": "SULLIVAN"
},
{
"hospital_name": "MORTON PLANT HOSPITAL",
"phone_number": {
"phone_number": "7274627000"
},
"zip_code": "33756",
"measure": "SSI: Abdominal Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-82.80373039654334",
"latitude": "27.951905310694542",
"human_address": "{\"address\":\"300 PINELLAS ST\",\"city\":\"CLEARWATER\",\"state\":\"FL\",\"zip\":\"33756\"}"
},
"provider_id": "100127",
"state": "FL",
"score": "2.168",
"address_1": "300 PINELLAS ST",
"city": "CLEARWATER",
"county_name": "PINELLAS"
},
{
"hospital_name": "UT SOUTHWESTERN UNIVERSITY HOSPITAL",
"phone_number": {
"phone_number": "2148793758"
},
"zip_code": "75390",
"measure": "CAUTI Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-96.84474722590575",
"latitude": "32.81772146412571",
"human_address": "{\"address\":\"5909 HARRY HINES BLVD\",\"city\":\"DALLAS\",\"state\":\"TX\",\"zip\":\"75390\"}"
},
"provider_id": "450044",
"state": "TX",
"score": "15",
"address_1": "5909 HARRY HINES BLVD",
"city": "DALLAS",
"county_name": "DALLAS"
},
{
"hospital_name": "WILLAMETTE VALLEY MEDICAL CENTER",
"phone_number": {
"phone_number": "5034726131"
},
"zip_code": "97128",
"measure": "SSI: Colon Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-123.1665502946387",
"latitude": "45.199993997712035",
"human_address": "{\"address\":\"2700 SE STRATUS AVE.\",\"city\":\"MCMINNVILLE\",\"state\":\"OR\",\"zip\":\"97128\"}"
},
"provider_id": "380071",
"state": "OR",
"score": "1",
"address_1": "2700 SE STRATUS AVE.",
"city": "MCMINNVILLE",
"footnote": "No data are available from the hospital for this measure",
"county_name": "YAMHILL"
},
{
"hospital_name": "ENLOE MEDICAL CENTER",
"phone_number": {
"phone_number": "5303327300"
},
"zip_code": "95926",
"measure": "CAUTI Upper Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-121.84934606288436",
"latitude": "39.74248192105324",
"human_address": "{\"address\":\"1531 ESPLANADE\",\"city\":\"CHICO\",\"state\":\"CA\",\"zip\":\"95926\"}"
},
"provider_id": "050039",
"state": "CA",
"score": "0.885",
"address_1": "1531 ESPLANADE",
"city": "CHICO",
"footnote": "The lower limit of the confidence interval cannot be calculated if the number of observed infections equals zero",
"county_name": "BUTTE"
},
{
"hospital_name": "LONG ISLAND JEWISH MEDICAL CENTER",
"phone_number": {
"phone_number": "7184707000"
},
"zip_code": "11040",
"measure": "SSI: Colon Upper Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-73.70629959717917",
"latitude": "40.75383249554312",
"human_address": "{\"address\":\"270 - 05 76TH AVENUE\",\"city\":\"NEW HYDE PARK\",\"state\":\"NY\",\"zip\":\"11040\"}"
},
"provider_id": "330195",
"state": "NY",
"score": "2.245",
"address_1": "270 - 05 76TH AVENUE",
"city": "NEW HYDE PARK",
"county_name": "NASSAU"
},
{
"hospital_name": "HARPER UNIVERSITY HOSPITAL",
"phone_number": {
"phone_number": "3137456211"
},
"zip_code": "48201",
"measure": "CLABSI Upper Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-83.05696442394475",
"latitude": "42.35003017212745",
"human_address": "{\"address\":\"3990 JOHN R STREET\",\"city\":\"DETROIT\",\"state\":\"MI\",\"zip\":\"48201\"}"
},
"provider_id": "230104",
"state": "MI",
"score": "0.604",
"address_1": "3990 JOHN R STREET",
"city": "DETROIT",
"county_name": "WAYNE"
},
{
"hospital_name": "MARION GENERAL HOSPITAL",
"phone_number": {
"phone_number": "7403838400"
},
"zip_code": "43302",
"measure": "SSI: Abdominal Upper Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-83.12878428120462",
"latitude": "40.57215145918394",
"human_address": "{\"address\":\"1000 MCKINLEY PARK DRIVE\",\"city\":\"MARION\",\"state\":\"OH\",\"zip\":\"43302\"}"
},
"provider_id": "360011",
"state": "OH",
"score": "3.039",
"address_1": "1000 MCKINLEY PARK DRIVE",
"city": "MARION",
"footnote": "The lower limit of the confidence interval cannot be calculated if the number of observed infections equals zero",
"county_name": "MARION"
},
{
"hospital_name": "LORETTO HOSPITAL",
"phone_number": {
"phone_number": "7736264300"
},
"zip_code": "60644",
"measure": "SSI: Abdominal, Number of Procedures",
"location": {
"needs_recoding": false,
"longitude": "-87.76526598292168",
"latitude": "41.892446130399264",
"human_address": "{\"address\":\"645 SOUTH CENTRAL AVE\",\"city\":\"CHICAGO\",\"state\":\"IL\",\"zip\":\"60644\"}"
},
"provider_id": "140083",
"state": "IL",
"score": "0",
"address_1": "645 SOUTH CENTRAL AVE",
"city": "CHICAGO",
"footnote": "No data are available from the hospital for this measure",
"county_name": "COOK"
},
{
"hospital_name": "ARNOT OGDEN MEDICAL CENTER",
"phone_number": {
"phone_number": "6077374100"
},
"zip_code": "14905",
"measure": "CLABSI Upper Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-76.8267761676646",
"latitude": "42.099263217477414",
"human_address": "{\"address\":\"600 ROE AVENUE\",\"city\":\"ELMIRA\",\"state\":\"NY\",\"zip\":\"14905\"}"
},
"provider_id": "330090",
"state": "NY",
"score": "1.707",
"address_1": "600 ROE AVENUE",
"city": "ELMIRA",
"county_name": "CHEMUNG"
},
{
"hospital_name": "ASANTE ROGUE REGIONAL MEDICAL CENTER",
"phone_number": {
"phone_number": "5417894900"
},
"zip_code": "97504",
"measure": "Surgical Site Infection from colon surgery (SSI: Colon)",
"location": {
"needs_recoding": false,
"longitude": "-122.82912144092552",
"latitude": "42.316485460434535",
"human_address": "{\"address\":\"2825 E BARNETT ROAD\",\"city\":\"MEDFORD\",\"state\":\"OR\",\"zip\":\"97504\"}"
},
"provider_id": "380018",
"state": "OR",
"score": "0.32",
"address_1": "2825 E BARNETT ROAD",
"city": "MEDFORD",
"county_name": "JACKSON"
},
{
"hospital_name": "BETH ISRAEL DEACONESS MEDICAL CENTER",
"phone_number": {
"phone_number": "6176677000"
},
"zip_code": "02215",
"measure": "CLABSI Upper Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-71.1050106274289",
"latitude": "42.341000978953275",
"human_address": "{\"address\":\"330 BROOKLINE AVENUE\",\"city\":\"BOSTON\",\"state\":\"MA\",\"zip\":\"02215\"}"
},
"provider_id": "220086",
"state": "MA",
"score": "1.168",
"address_1": "330 BROOKLINE AVENUE",
"city": "BOSTON",
"county_name": "SUFFOLK"
},
{
"hospital_name": "SIGNATURE HEALTHCARE BROCKTON HOSPITAL",
"phone_number": {
"phone_number": "5089417000"
},
"zip_code": "02302",
"measure": "SSI: Abdominal Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-70.99091364157164",
"latitude": "42.08626801415403",
"human_address": "{\"address\":\"680 CENTER STREET\",\"city\":\"BROCKTON\",\"state\":\"MA\",\"zip\":\"02302\"}"
},
"provider_id": "220052",
"state": "MA",
"score": "0",
"address_1": "680 CENTER STREET",
"city": "BROCKTON",
"footnote": "No data are available from the hospital for this measure",
"county_name": "PLYMOUTH"
},
{
"hospital_name": "CHRISTUS SPOHN HOSPITAL ALICE",
"phone_number": {
"phone_number": "3616618016"
},
"zip_code": "78332",
"measure": "CLABSI Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-98.04479556764977",
"latitude": "27.764708589076236",
"human_address": "{\"address\":\"2500 E MAIN STREET\",\"city\":\"ALICE\",\"state\":\"TX\",\"zip\":\"78332\"}"
},
"provider_id": "450828",
"state": "TX",
"score": "0",
"address_1": "2500 E MAIN STREET",
"city": "ALICE",
"footnote": "No data are available from the hospital for this measure",
"county_name": "JIM WELLS"
},
{
"hospital_name": "CHRISTUS SPOHN HOSPITAL KLEBERG",
"phone_number": {
"phone_number": "3615951661"
},
"zip_code": "78363",
"measure": "SSI: Abdominal, Number of Procedures",
"location": {
"needs_recoding": false,
"longitude": "-97.85039811779626",
"latitude": "27.49144059725313",
"human_address": "{\"address\":\"1311 EAST GENERAL CAVAZOS BLVD\",\"city\":\"KINGSVILLE\",\"state\":\"TX\",\"zip\":\"78363\"}"
},
"provider_id": "450163",
"state": "TX",
"score": "10",
"address_1": "1311 EAST GENERAL CAVAZOS BLVD",
"city": "KINGSVILLE",
"footnote": "No data are available from the hospital for this measure",
"county_name": "KLEBERG"
},
{
"hospital_name": "CROUSE HOSPITAL",
"phone_number": {
"phone_number": "3154707449"
},
"zip_code": "13210",
"measure": "Surgical Site Infection from colon surgery (SSI: Colon)",
"location": {
"needs_recoding": false,
"longitude": "-76.13798820026824",
"latitude": "43.041258739693674",
"human_address": "{\"address\":\"736 IRVING AVENUE\",\"city\":\"SYRACUSE\",\"state\":\"NY\",\"zip\":\"13210\"}"
},
"provider_id": "330203",
"state": "NY",
"score": "0.27",
"address_1": "736 IRVING AVENUE",
"city": "SYRACUSE",
"county_name": "ONONDAGA"
},
{
"hospital_name": "BRIGHAM AND WOMEN'S FAULKNER HOSPITAL",
"phone_number": {
"phone_number": "6179837000"
},
"zip_code": "02130",
"measure": "CAUTI Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-71.12789683059322",
"latitude": "42.30021828265608",
"human_address": "{\"address\":\"1153 CENTRE STREET\",\"city\":\"BOSTON\",\"state\":\"MA\",\"zip\":\"02130\"}"
},
"provider_id": "220119",
"state": "MA",
"score": "1.868",
"address_1": "1153 CENTRE STREET",
"city": "BOSTON",
"county_name": "SUFFOLK"
},
{
"hospital_name": "ADENA REGIONAL MEDICAL CENTER",
"phone_number": {
"phone_number": "7407797358"
},
"zip_code": "45601",
"measure": "CLABSI Lower Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-82.97052159048843",
"latitude": "39.395352610963755",
"human_address": "{\"address\":\"272 HOSPITAL ROAD\",\"city\":\"CHILLICOTHE\",\"state\":\"OH\",\"zip\":\"45601\"}"
},
"provider_id": "360159",
"state": "OH",
"score": "0.009",
"address_1": "272 HOSPITAL ROAD",
"city": "CHILLICOTHE",
"county_name": "ROSS"
},
{
"hospital_name": "OCONEE REGIONAL MEDICAL CENTER",
"phone_number": {
"phone_number": "4784543550"
},
"zip_code": "31061",
"measure": "CAUTI Upper Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-83.24804337551012",
"latitude": "33.08936050083389",
"human_address": "{\"address\":\"821 N COBB STREET POST OFFICE BOX 690\",\"city\":\"MILLEDGEVILLE\",\"state\":\"GA\",\"zip\":\"31061\"}"
},
"provider_id": "110150",
"state": "GA",
"score": "2.303",
"address_1": "821 N COBB STREET POST OFFICE BOX 690",
"city": "MILLEDGEVILLE",
"footnote": "The lower limit of the confidence interval cannot be calculated if the number of observed infections equals zero",
"county_name": "BALDWIN"
},
{
"hospital_name": "NORTH FULTON REGIONAL HOSPITAL",
"phone_number": {
"phone_number": "7707512500"
},
"zip_code": "30076",
"measure": "CAUTI Upper Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-84.32048489545036",
"latitude": "34.06234599755385",
"human_address": "{\"address\":\"3000 HOSPITAL BOULEVARD\",\"city\":\"ROSWELL\",\"state\":\"GA\",\"zip\":\"30076\"}"
},
"provider_id": "110198",
"state": "GA",
"score": "0.673",
"address_1": "3000 HOSPITAL BOULEVARD",
"city": "ROSWELL",
"footnote": "The lower limit of the confidence interval cannot be calculated if the number of observed infections equals zero",
"county_name": "FULTON"
},
{
"hospital_name": "JACKSON MEMORIAL HOSPITAL",
"phone_number": {
"phone_number": "3055851111"
},
"zip_code": "33136",
"measure": "SSI: Colon, Number of Procedures",
"location": {
"needs_recoding": false,
"longitude": "-80.2148784982916",
"latitude": "25.790588516155765",
"human_address": "{\"address\":\"1611 NW 12TH AVE\",\"city\":\"MIAMI\",\"state\":\"FL\",\"zip\":\"33136\"}"
},
"provider_id": "100022",
"state": "FL",
"score": "169",
"address_1": "1611 NW 12TH AVE",
"city": "MIAMI",
"county_name": "MIAMI-DADE"
},
{
"hospital_name": "LAKEWOOD REGIONAL MEDICAL CENTER",
"phone_number": {
"phone_number": "5626026751"
},
"zip_code": "90712",
"measure": "SSI: Colon Lower Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-118.14893903598862",
"latitude": "33.86017674475387",
"human_address": "{\"address\":\"3700 E SOUTH ST\",\"city\":\"LAKEWOOD\",\"state\":\"CA\",\"zip\":\"90712\"}"
},
"provider_id": "050581",
"state": "CA",
"score": "0.218",
"address_1": "3700 E SOUTH ST",
"city": "LAKEWOOD",
"county_name": "LOS ANGELES"
},
{
"hospital_name": "RARITAN BAY MEDICAL CENTER",
"phone_number": {
"phone_number": "7324423700"
},
"zip_code": "08861",
"measure": "CAUTI Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-74.28138755190966",
"latitude": "40.5188695630132",
"human_address": "{\"address\":\"530 NEW BRUNSWICK AVE\",\"city\":\"PERTH AMBOY\",\"state\":\"NJ\",\"zip\":\"08861\"}"
},
"provider_id": "310039",
"state": "NJ",
"score": "3.297",
"address_1": "530 NEW BRUNSWICK AVE",
"city": "PERTH AMBOY",
"county_name": "MIDDLESEX"
},
{
"hospital_name": "ESSENTIA HEALTH DULUTH",
"phone_number": {
"phone_number": "2187862629"
},
"zip_code": "55805",
"measure": "CLABSI Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-92.09406002934942",
"latitude": "46.793117342018576",
"human_address": "{\"address\":\"502 EAST SECOND STREET\",\"city\":\"DULUTH\",\"state\":\"MN\",\"zip\":\"55805\"}"
},
"provider_id": "240019",
"state": "MN",
"score": "0",
"address_1": "502 EAST SECOND STREET",
"city": "DULUTH",
"footnote": "The lower limit of the confidence interval cannot be calculated if the number of observed infections equals zero",
"county_name": "SAINT LOUIS"
},
{
"hospital_name": "VALLEYCARE MEDICAL CENTER",
"phone_number": {
"phone_number": "9254477000"
},
"zip_code": "94588",
"measure": "CLABSI Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-121.88093924577367",
"latitude": "37.691982728147764",
"human_address": "{\"address\":\"5555 WEST LAS POSITAS BOULEVARD\",\"city\":\"PLEASANTON\",\"state\":\"CA\",\"zip\":\"94588\"}"
},
"provider_id": "050283",
"state": "CA",
"score": "2",
"address_1": "5555 WEST LAS POSITAS BOULEVARD",
"city": "PLEASANTON",
"county_name": "ALAMEDA"
},
{
"hospital_name": "MIDWEST REGIONAL MEDICAL CENTER",
"phone_number": {
"phone_number": "4056104411"
},
"zip_code": "73110",
"measure": "CAUTI Upper Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-97.39221153030849",
"latitude": "35.467221905624854",
"human_address": "{\"address\":\"2825 PARKLAWN DRIVE\",\"city\":\"MIDWEST CITY\",\"state\":\"OK\",\"zip\":\"73110\"}"
},
"provider_id": "370094",
"state": "OK",
"score": "1.664",
"address_1": "2825 PARKLAWN DRIVE",
"city": "MIDWEST CITY",
"county_name": "OKLAHOMA"
},
{
"hospital_name": "UPLAND HILLS HLTH",
"phone_number": {
"phone_number": "6089308000"
},
"zip_code": "53533",
"measure": "CLABSI Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-90.12876817013783",
"latitude": "42.95129688093539",
"human_address": "{\"address\":\"800 COMPASSION WAY\",\"city\":\"DODGEVILLE\",\"state\":\"WI\",\"zip\":\"53533\"}"
},
"provider_id": "521352",
"state": "WI",
"score": "0.013",
"address_1": "800 COMPASSION WAY",
"city": "DODGEVILLE",
"footnote": "No data are available from the hospital for this measure",
"county_name": "IOWA"
},
{
"hospital_name": "WOODHULL MEDICAL AND MENTAL HEALTH CENTER",
"phone_number": {
"phone_number": "7189638100"
},
"zip_code": "11206",
"measure": "CLABSI Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-73.94129244343526",
"latitude": "40.70033182802007",
"human_address": "{\"address\":\"760 BROADWAY\",\"city\":\"BROOKLYN\",\"state\":\"NY\",\"zip\":\"11206\"}"
},
"provider_id": "330396",
"state": "NY",
"score": "8",
"address_1": "760 BROADWAY",
"city": "BROOKLYN",
"county_name": "KINGS"
},
{
"hospital_name": "BUCHANAN GENERAL HOSPITAL",
"phone_number": {
"phone_number": "2769351000"
},
"zip_code": "24614",
"measure": "SSI: Colon, Number of Procedures",
"location": {
"needs_recoding": false,
"longitude": "-82.0667298146881",
"latitude": "37.285838945073415",
"human_address": "{\"address\":\"1535 SLATE CREEK ROAD\",\"city\":\"GRUNDY\",\"state\":\"VA\",\"zip\":\"24614\"}"
},
"provider_id": "490127",
"state": "VA",
"score": "2",
"address_1": "1535 SLATE CREEK ROAD",
"city": "GRUNDY",
"footnote": "No data are available from the hospital for this measure",
"county_name": "BUCHANAN"
},
{
"hospital_name": "ST MARY'S MEDICAL CENTER",
"phone_number": {
"phone_number": "4156681000"
},
"zip_code": "94117",
"measure": "SSI: Colon Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-122.45441891741768",
"latitude": "37.773659154848815",
"human_address": "{\"address\":\"450 STANYAN ST\",\"city\":\"SAN FRANCISCO\",\"state\":\"CA\",\"zip\":\"94117\"}"
},
"provider_id": "050457",
"state": "CA",
"score": "0.430",
"address_1": "450 STANYAN ST",
"city": "SAN FRANCISCO",
"footnote": "No data are available from the hospital for this measure",
"county_name": "SAN FRANCISCO"
},
{
"hospital_name": "CAPITAL HEALTH SYSTEM-FULD CAMPUS",
"phone_number": {
"phone_number": "6093946000"
},
"zip_code": "08638",
"measure": "Central-Line-Associated Blood Stream Infections (CLABSI)",
"location": {
"needs_recoding": false,
"longitude": "-74.75268775793057",
"latitude": "40.236128776156306",
"human_address": "{\"address\":\"750 BRUNSWICK AVE\",\"city\":\"TRENTON\",\"state\":\"NJ\",\"zip\":\"08638\"}"
},
"provider_id": "310092",
"state": "NJ",
"score": "0.66",
"address_1": "750 BRUNSWICK AVE",
"city": "TRENTON",
"county_name": "MERCER"
},
{
"hospital_name": "CAPITAL MEDICAL CENTER",
"phone_number": {
"phone_number": "3607545858"
},
"zip_code": "98502",
"measure": "CAUTI Urinary Catheter Days",
"location": {
"needs_recoding": false,
"longitude": "-122.95143823013063",
"latitude": "47.04173923966374",
"human_address": "{\"address\":\"3900 CAPITAL MALL DR SW\",\"city\":\"OLYMPIA\",\"state\":\"WA\",\"zip\":\"98502\"}"
},
"provider_id": "500139",
"state": "WA",
"score": "618",
"address_1": "3900 CAPITAL MALL DR SW",
"city": "OLYMPIA",
"footnote": "No data are available from the hospital for this measure",
"county_name": "THURSTON"
},
{
"hospital_name": "MERCY MEDICAL CENTER",
"phone_number": {
"phone_number": "2095645000"
},
"zip_code": "95340",
"measure": "Surgical Site Infection from colon surgery (SSI: Colon)",
"location": {
"needs_recoding": false,
"longitude": "-120.4666847711724",
"latitude": "37.338774864598975",
"human_address": "{\"address\":\"333 MERCY AVENUE\",\"city\":\"MERCED\",\"state\":\"CA\",\"zip\":\"95340\"}"
},
"provider_id": "050444",
"state": "CA",
"score": "0.00",
"address_1": "333 MERCY AVENUE",
"city": "MERCED",
"footnote": "The lower limit of the confidence interval cannot be calculated if the number of observed infections equals zero",
"county_name": "MERCED"
},
{
"hospital_name": "GADSDEN REGIONAL MEDICAL CENTER",
"phone_number": {
"phone_number": "2564944000"
},
"zip_code": "35903",
"measure": "SSI: Colon Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-85.9678518794883",
"latitude": "34.00935399283879",
"human_address": "{\"address\":\"1007 GOODYEAR AVENUE\",\"city\":\"GADSDEN\",\"state\":\"AL\",\"zip\":\"35903\"}"
},
"provider_id": "010040",
"state": "AL",
"score": "2.111",
"address_1": "1007 GOODYEAR AVENUE",
"city": "GADSDEN",
"footnote": "The lower limit of the confidence interval cannot be calculated if the number of observed infections equals zero",
"county_name": "ETOWAH"
},
{
"hospital_name": "VHS HARLINGEN HOSPITAL COMPANY LLC",
"phone_number": {
"phone_number": "9563891100"
},
"zip_code": "78550",
"measure": "CLABSI Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-97.67112220645484",
"latitude": "26.173985142376896",
"human_address": "{\"address\":\"2101 PEASE ST\",\"city\":\"HARLINGEN\",\"state\":\"TX\",\"zip\":\"78550\"}"
},
"provider_id": "450033",
"state": "TX",
"score": "10.451",
"address_1": "2101 PEASE ST",
"city": "HARLINGEN",
"county_name": "CAMERON"
},
{
"hospital_name": "ORLANDO HEALTH",
"phone_number": {
"phone_number": "3218415111"
},
"zip_code": "32806",
"measure": "SSI: Colon, Number of Procedures",
"location": {
"needs_recoding": false,
"longitude": "-81.37816401896924",
"latitude": "28.525993680098964",
"human_address": "{\"address\":\"1414 S KUHL AVE\",\"city\":\"ORLANDO\",\"state\":\"FL\",\"zip\":\"32806\"}"
},
"provider_id": "100006",
"state": "FL",
"score": "288",
"address_1": "1414 S KUHL AVE",
"city": "ORLANDO",
"county_name": "ORANGE"
},
{
"hospital_name": "UT SOUTHWESTERN UNIVERSITY HOSPITAL",
"phone_number": {
"phone_number": "2148793758"
},
"zip_code": "75390",
"measure": "SSI: Abdominal Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-96.84474722590575",
"latitude": "32.81772146412571",
"human_address": "{\"address\":\"5909 HARRY HINES BLVD\",\"city\":\"DALLAS\",\"state\":\"TX\",\"zip\":\"75390\"}"
},
"provider_id": "450044",
"state": "TX",
"score": "0.906",
"address_1": "5909 HARRY HINES BLVD",
"city": "DALLAS",
"footnote": "No data are available from the hospital for this measure",
"county_name": "DALLAS"
},
{
"hospital_name": "ST LUKE'S MINERS MEMORIAL HOSPITAL",
"phone_number": {
"phone_number": "5706452131"
},
"zip_code": "18218",
"measure": "SSI: Colon Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-75.91458837811524",
"latitude": "40.82140259541806",
"human_address": "{\"address\":\"360 W RUDDLE STREET\",\"city\":\"COALDALE\",\"state\":\"PA\",\"zip\":\"18218\"}"
},
"provider_id": "390183",
"state": "PA",
"score": "0.171",
"address_1": "360 W RUDDLE STREET",
"city": "COALDALE",
"footnote": "No data are available from the hospital for this measure",
"county_name": "SCHUYLKILL"
},
{
"hospital_name": "TEMPLE UNIVERSITY HOSPITAL",
"phone_number": {
"phone_number": "2157072000"
},
"zip_code": "19140",
"measure": "SSI: Colon, Number of Procedures",
"location": {
"needs_recoding": false,
"longitude": "-75.15215782642507",
"latitude": "40.00471392489673",
"human_address": "{\"address\":\"3401 NORTH BROAD STREET\",\"city\":\"PHILADELPHIA\",\"state\":\"PA\",\"zip\":\"19140\"}"
},
"provider_id": "390027",
"state": "PA",
"score": "88",
"address_1": "3401 NORTH BROAD STREET",
"city": "PHILADELPHIA",
"county_name": "PHILADELPHIA"
},
{
"hospital_name": "CACHE VALLEY SPECIALITY HOSPITAL",
"phone_number": {
"phone_number": "4357139700"
},
"zip_code": "84341",
"measure": "SSI: Abdominal Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-111.82306090175027",
"latitude": "41.77558232194545",
"human_address": "{\"address\":\"2380 NORTH 400 EAST\",\"city\":\"NORTH LOGAN\",\"state\":\"UT\",\"zip\":\"84341\"}"
},
"provider_id": "460054",
"state": "UT",
"score": "0",
"address_1": "2380 NORTH 400 EAST",
"city": "NORTH LOGAN",
"footnote": "No data are available from the hospital for this measure",
"county_name": "CACHE"
},
{
"hospital_name": "ST ELIZABETH HOSPITAL",
"phone_number": {
"phone_number": "2256475000"
},
"zip_code": "70737",
"measure": "SSI: Abdominal Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-90.93233515012868",
"latitude": "30.210763585895727",
"human_address": "{\"address\":\"1125 WEST HIGHWAY 30\",\"city\":\"GONZALES\",\"state\":\"LA\",\"zip\":\"70737\"}"
},
"provider_id": "190242",
"state": "LA",
"score": "1",
"address_1": "1125 WEST HIGHWAY 30",
"city": "GONZALES",
"footnote": "No data are available from the hospital for this measure",
"county_name": "ASCENSION"
},
{
"hospital_name": "DAMERON HOSPITAL",
"phone_number": {
"phone_number": "2099445550"
},
"zip_code": "95203",
"measure": "Central-Line-Associated Blood Stream Infections (CLABSI)",
"location": {
"needs_recoding": false,
"longitude": "-121.30064275399663",
"latitude": "37.96127562624033",
"human_address": "{\"address\":\"525 WEST ACACIA STREET\",\"city\":\"STOCKTON\",\"state\":\"CA\",\"zip\":\"95203\"}"
},
"provider_id": "050122",
"state": "CA",
"score": "0.83",
"address_1": "525 WEST ACACIA STREET",
"city": "STOCKTON",
"county_name": "SAN JOAQUIN"
},
{
"hospital_name": "NATCHEZ REGIONAL MEDICAL CENTER",
"phone_number": {
"phone_number": "6014432100"
},
"zip_code": "39120",
"measure": "CAUTI Urinary Catheter Days",
"location": {
"needs_recoding": false,
"longitude": "-91.39106392064599",
"latitude": "31.525618825004287",
"human_address": "{\"address\":\"52 SEARGENT PRENTISS DRIVE\",\"city\":\"NATCHEZ\",\"state\":\"MS\",\"zip\":\"39120\"}"
},
"provider_id": "250084",
"state": "MS",
"score": "291",
"address_1": "52 SEARGENT PRENTISS DRIVE",
"city": "NATCHEZ",
"footnote": "No data are available from the hospital for this measure",
"county_name": "ADAMS"
},
{
"hospital_name": "ARNOT OGDEN MEDICAL CENTER",
"phone_number": {
"phone_number": "6077374100"
},
"zip_code": "14905",
"measure": "CAUTI Urinary Catheter Days",
"location": {
"needs_recoding": false,
"longitude": "-76.8267761676646",
"latitude": "42.099263217477414",
"human_address": "{\"address\":\"600 ROE AVENUE\",\"city\":\"ELMIRA\",\"state\":\"NY\",\"zip\":\"14905\"}"
},
"provider_id": "330090",
"state": "NY",
"score": "1972",
"address_1": "600 ROE AVENUE",
"city": "ELMIRA",
"footnote": "The lower limit of the confidence interval cannot be calculated if the number of observed infections equals zero",
"county_name": "CHEMUNG"
},
{
"hospital_name": "HOSPITAL PAVIA SANTURCE",
"phone_number": {
"phone_number": "7877276060"
},
"zip_code": "00910",
"measure": "CLABSI Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-66.06063000017423",
"latitude": "18.416839999766353",
"human_address": "{\"address\":\"CALLE PROFESOR AUGUSTO RODRIGUEZ #1462\",\"city\":\"FERNANDEZ JUNCOS\",\"state\":\"PR\",\"zip\":\"00910\"}"
},
"provider_id": "400019",
"state": "PR",
"score": "12",
"address_1": "CALLE PROFESOR AUGUSTO RODRIGUEZ #1462",
"city": "FERNANDEZ JUNCOS",
"county_name": "SAN JUAN"
},
{
"hospital_name": "GREENWICH HOSPITAL ASSOCIATION",
"phone_number": {
"phone_number": "2038633000"
},
"zip_code": "06830",
"measure": "Surgical Site Infection from colon surgery (SSI: Colon)",
"location": {
"needs_recoding": false,
"longitude": "-73.62967736028281",
"latitude": "41.034438955125324",
"human_address": "{\"address\":\"5 PERRYRIDGE RD\",\"city\":\"GREENWICH\",\"state\":\"CT\",\"zip\":\"06830\"}"
},
"provider_id": "070018",
"state": "CT",
"score": "0.98",
"address_1": "5 PERRYRIDGE RD",
"city": "GREENWICH",
"county_name": "FAIRFIELD"
},
{
"hospital_name": "YORK HOSPITAL",
"phone_number": {
"phone_number": "2073634321"
},
"zip_code": "03909",
"measure": "SSI: Colon Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-70.65094032749408",
"latitude": "43.14256553568135",
"human_address": "{\"address\":\"15 HOSPITAL DRIVE\",\"city\":\"YORK\",\"state\":\"ME\",\"zip\":\"03909\"}"
},
"provider_id": "200020",
"state": "ME",
"score": "0",
"address_1": "15 HOSPITAL DRIVE",
"city": "YORK",
"footnote": "The lower limit of the confidence interval cannot be calculated if the number of observed infections equals zero",
"county_name": "YORK"
},
{
"hospital_name": "ADVOCATE SOUTH SUBURBAN HOSPITAL",
"phone_number": {
"phone_number": "7087998000"
},
"zip_code": "60429",
"measure": "CAUTI Urinary Catheter Days",
"location": {
"needs_recoding": false,
"longitude": "-87.69438274767019",
"latitude": "41.56567855023957",
"human_address": "{\"address\":\"17800 S KEDZIE AVE\",\"city\":\"HAZEL CREST\",\"state\":\"IL\",\"zip\":\"60429\"}"
},
"provider_id": "140250",
"state": "IL",
"score": "2015",
"address_1": "17800 S KEDZIE AVE",
"city": "HAZEL CREST",
"county_name": "COOK"
},
{
"hospital_name": "NORTH CYPRESS MEDICAL CENTER",
"phone_number": {
"phone_number": "2818900203"
},
"zip_code": "77429",
"measure": "CAUTI Upper Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-95.63252610201778",
"latitude": "29.924889096675088",
"human_address": "{\"address\":\"21214 NORTHWEST FREEWAY\",\"city\":\"CYPRESS\",\"state\":\"TX\",\"zip\":\"77429\"}"
},
"provider_id": "670024",
"state": "TX",
"score": "1.306",
"address_1": "21214 NORTHWEST FREEWAY",
"city": "CYPRESS",
"footnote": "The lower limit of the confidence interval cannot be calculated if the number of observed infections equals zero",
"county_name": "HARRIS"
},
{
"hospital_name": "ST JOSEPH'S HOSPITAL",
"phone_number": {
"phone_number": "2157872000"
},
"zip_code": "19130",
"measure": "CAUTI Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-75.16285954227402",
"latitude": "39.97187199106679",
"human_address": "{\"address\":\"1600 WEST GIRARD AVENUE\",\"city\":\"PHILADELPHIA\",\"state\":\"PA\",\"zip\":\"19130\"}"
},
"provider_id": "390132",
"state": "PA",
"score": "0.692",
"address_1": "1600 WEST GIRARD AVENUE",
"city": "PHILADELPHIA",
"footnote": "No data are available from the hospital for this measure",
"county_name": "PHILADELPHIA"
},
{
"hospital_name": "RENOWN SOUTH MEADOWS MEDICAL CENTER",
"phone_number": {
"phone_number": "7759827056"
},
"zip_code": "89521",
"measure": "SSI: Colon Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-119.75842234476181",
"latitude": "39.43581310906194",
"human_address": "{\"address\":\"10101 DOUBLE R BLVD\",\"city\":\"RENO\",\"state\":\"NV\",\"zip\":\"89521\"}"
},
"provider_id": "290049",
"state": "NV",
"score": "0",
"address_1": "10101 DOUBLE R BLVD",
"city": "RENO",
"footnote": "No data are available from the hospital for this measure",
"county_name": "CARSON CITY"
},
{
"hospital_name": "CHINLE COMPREHENSIVE HEALTH CARE FACILITY",
"phone_number": {
"phone_number": "9286747001"
},
"zip_code": "86503",
"measure": "CLABSI Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-109.52324999978754",
"latitude": "36.04439000029845",
"human_address": "{\"address\":\"US HWY 191, HOSPITAL ROAD\",\"city\":\"CHINLE\",\"state\":\"AZ\",\"zip\":\"86503\"}"
},
"provider_id": "030084",
"state": "AZ",
"score": "0",
"address_1": "US HWY 191, HOSPITAL ROAD",
"city": "CHINLE",
"footnote": "No data are available from the hospital for this measure",
"county_name": "APACHE"
},
{
"hospital_name": "MIAMI VALLEY HOSPITAL",
"phone_number": {
"phone_number": "9372082701"
},
"zip_code": "45409",
"measure": "Catheter-Associated Urinary Tract Infections (CAUTI)",
"location": {
"needs_recoding": false,
"longitude": "-84.18748987974509",
"latitude": "39.74379583189357",
"human_address": "{\"address\":\"ONE WYOMING STREET\",\"city\":\"DAYTON\",\"state\":\"OH\",\"zip\":\"45409\"}"
},
"provider_id": "360051",
"state": "OH",
"score": "0.87",
"address_1": "ONE WYOMING STREET",
"city": "DAYTON",
"county_name": "MONTGOMERY"
},
{
"hospital_name": "MCCULLOUGH-HYDE MEMORIAL HOSPITAL",
"phone_number": {
"phone_number": "5135232111"
},
"zip_code": "45056",
"measure": "CAUTI Urinary Catheter Days",
"location": {
"needs_recoding": false,
"longitude": "-84.74083700516547",
"latitude": "39.512264474772735",
"human_address": "{\"address\":\"110 NORTH POPLAR STREET\",\"city\":\"OXFORD\",\"state\":\"OH\",\"zip\":\"45056\"}"
},
"provider_id": "360046",
"state": "OH",
"score": "249",
"address_1": "110 NORTH POPLAR STREET",
"city": "OXFORD",
"footnote": "No data are available from the hospital for this measure",
"county_name": "BUTLER"
},
{
"hospital_name": "ATHENS REGIONAL MEDICAL CENTER",
"phone_number": {
"phone_number": "7064757000"
},
"zip_code": "30606",
"measure": "Central-Line-Associated Blood Stream Infections (CLABSI)",
"location": {
"needs_recoding": false,
"longitude": "-83.39796035779443",
"latitude": "33.962395347217466",
"human_address": "{\"address\":\"1199 PRINCE AVENUE\",\"city\":\"ATHENS\",\"state\":\"GA\",\"zip\":\"30606\"}"
},
"provider_id": "110074",
"state": "GA",
"score": "0.36",
"address_1": "1199 PRINCE AVENUE",
"city": "ATHENS",
"county_name": "CLARKE"
},
{
"hospital_name": "SAMARITAN HOSPITAL",
"phone_number": {
"phone_number": "5182713225"
},
"zip_code": "12180",
"measure": "SSI: Colon Lower Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-73.67129798379881",
"latitude": "42.73400470575734",
"human_address": "{\"address\":\"2215 BURDETT AVENUE\",\"city\":\"TROY\",\"state\":\"NY\",\"zip\":\"12180\"}"
},
"provider_id": "330180",
"state": "NY",
"score": "0.983",
"address_1": "2215 BURDETT AVENUE",
"city": "TROY",
"county_name": "RENSSELAER"
},
{
"hospital_name": "SOUTH CENTRAL REG MED CTR",
"phone_number": {
"phone_number": "6016494000"
},
"zip_code": "39440",
"measure": "CLABSI Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-89.1416613531362",
"latitude": "31.685879675181194",
"human_address": "{\"address\":\"1220 JEFFERSON ST BOX 607\",\"city\":\"LAUREL\",\"state\":\"MS\",\"zip\":\"39440\"}"
},
"provider_id": "250058",
"state": "MS",
"score": "1.393",
"address_1": "1220 JEFFERSON ST BOX 607",
"city": "LAUREL",
"footnote": "The lower limit of the confidence interval cannot be calculated if the number of observed infections equals zero",
"county_name": "JONES"
},
{
"hospital_name": "POTOMAC VALLEY HOSPITAL",
"phone_number": {
"phone_number": "3045973500"
},
"zip_code": "26726",
"measure": "CAUTI Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-79.00347045214335",
"latitude": "39.408896882596274",
"human_address": "{\"address\":\"100 PIN OAK LANE\",\"city\":\"KEYSER\",\"state\":\"WV\",\"zip\":\"26726\"}"
},
"provider_id": "511315",
"state": "WV",
"score": "0",
"address_1": "100 PIN OAK LANE",
"city": "KEYSER",
"footnote": "No data are available from the hospital for this measure",
"county_name": "MINERAL"
},
{
"hospital_name": "HOLLYWOOD PRESBYTERIAN MEDICAL CENTER",
"phone_number": {
"phone_number": "2134133000"
},
"zip_code": "90028",
"measure": "CAUTI Upper Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-118.29172704039678",
"latitude": "34.0956928584003",
"human_address": "{\"address\":\"1300 N VERMONT AVE\",\"city\":\"LOS ANGELES\",\"state\":\"CA\",\"zip\":\"90028\"}"
},
"provider_id": "050063",
"state": "CA",
"score": "4.082",
"address_1": "1300 N VERMONT AVE",
"city": "LOS ANGELES",
"county_name": "LOS ANGELES"
},
{
"hospital_name": "SEBASTIAN RIVER MEDICAL CENTER",
"phone_number": {
"phone_number": "7725893187"
},
"zip_code": "32978",
"measure": "CLABSI Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-80.48779024386079",
"latitude": "27.843138463251478",
"human_address": "{\"address\":\"13695 US HWY 1\",\"city\":\"SEBASTIAN\",\"state\":\"FL\",\"zip\":\"32978\"}"
},
"provider_id": "100217",
"state": "FL",
"score": "1",
"address_1": "13695 US HWY 1",
"city": "SEBASTIAN",
"county_name": "INDIAN RIVER"
},
{
"hospital_name": "KENT COUNTY MEMORIAL HOSPITAL",
"phone_number": {
"phone_number": "4017377000"
},
"zip_code": "02886",
"measure": "Catheter-Associated Urinary Tract Infections (CAUTI)",
"location": {
"needs_recoding": false,
"longitude": "-71.47763114932063",
"latitude": "41.70439083260784",
"human_address": "{\"address\":\"455 TOLL GATE RD\",\"city\":\"WARWICK\",\"state\":\"RI\",\"zip\":\"02886\"}"
},
"provider_id": "410009",
"state": "RI",
"score": "1.17",
"address_1": "455 TOLL GATE RD",
"city": "WARWICK",
"county_name": "KENT"
},
{
"hospital_name": "MORRISTOWN MEMORIAL HOSPITAL",
"phone_number": {
"phone_number": "9739715450"
},
"zip_code": "07962",
"measure": "CLABSI Upper Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-74.46557671859901",
"latitude": "40.788085076922336",
"human_address": "{\"address\":\"100 MADISON AVE\",\"city\":\"MORRISTOWN\",\"state\":\"NJ\",\"zip\":\"07962\"}"
},
"provider_id": "310015",
"state": "NJ",
"score": "1.022",
"address_1": "100 MADISON AVE",
"city": "MORRISTOWN",
"county_name": "MORRIS"
},
{
"hospital_name": "SOUTHCOAST HOSPITAL GROUP, INC",
"phone_number": {
"phone_number": "5086793131"
},
"zip_code": "02720",
"measure": "SSI: Abdominal, Number of Procedures",
"location": {
"needs_recoding": false,
"longitude": "-71.14695500687549",
"latitude": "41.71031543302547",
"human_address": "{\"address\":\"363 HIGHLAND AVENUE\",\"city\":\"FALL RIVER\",\"state\":\"MA\",\"zip\":\"02720\"}"
},
"provider_id": "220074",
"state": "MA",
"score": "167",
"address_1": "363 HIGHLAND AVENUE",
"city": "FALL RIVER",
"footnote": "The lower limit of the confidence interval cannot be calculated if the number of observed infections equals zero",
"county_name": "BRISTOL"
},
{
"hospital_name": "UNIV MEDICAL CENTER OF PRINCETON AT PLAINSBORO",
"phone_number": {
"phone_number": "8664604776"
},
"zip_code": "08536",
"measure": "CAUTI Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-74.62720866069365",
"latitude": "40.339590406842674",
"human_address": "{\"address\":\"ONE-FIVE PLAINSBORO ROAD\",\"city\":\"PLAINSBORO\",\"state\":\"NJ\",\"zip\":\"08536\"}"
},
"provider_id": "310010",
"state": "NJ",
"score": "1.665",
"address_1": "ONE-FIVE PLAINSBORO ROAD",
"city": "PLAINSBORO",
"county_name": "MIDDLESEX"
},
{
"hospital_name": "ST MARY'S JANESVILLE HOSPITAL",
"phone_number": {
"phone_number": "6083738000"
},
"zip_code": "53546",
"measure": "SSI: Abdominal Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-88.97598058314341",
"latitude": "42.67091854405827",
"human_address": "{\"address\":\"3400 EAST RACINE STREET\",\"city\":\"JANESVILLE\",\"state\":\"WI\",\"zip\":\"53546\"}"
},
"provider_id": "520208",
"state": "WI",
"score": "0.036",
"address_1": "3400 EAST RACINE STREET",
"city": "JANESVILLE",
"footnote": "No data are available from the hospital for this measure",
"county_name": "ROCK"
},
{
"hospital_name": "WINTHROP-UNIVERSITY HOSPITAL",
"phone_number": {
"phone_number": "5166630333"
},
"zip_code": "11501",
"measure": "CLABSI Upper Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-73.64284301715915",
"latitude": "40.741758161637755",
"human_address": "{\"address\":\"259 FIRST STREET\",\"city\":\"MINEOLA\",\"state\":\"NY\",\"zip\":\"11501\"}"
},
"provider_id": "330167",
"state": "NY",
"score": "0.776",
"address_1": "259 FIRST STREET",
"city": "MINEOLA",
"county_name": "NASSAU"
},
{
"hospital_name": "ST VINCENT INFIRMARY MEDICAL CENTER",
"phone_number": {
"phone_number": "5015523000"
},
"zip_code": "72205",
"measure": "CLABSI Lower Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-92.33741018666257",
"latitude": "34.75154143470792",
"human_address": "{\"address\":\"TWO ST VINCENT CIRCLE\",\"city\":\"LITTLE ROCK\",\"state\":\"AR\",\"zip\":\"72205\"}"
},
"provider_id": "040007",
"state": "AR",
"score": "0.108",
"address_1": "TWO ST VINCENT CIRCLE",
"city": "LITTLE ROCK",
"county_name": "PULASKI"
},
{
"hospital_name": "QUINCY MEDICAL CENTER",
"phone_number": {
"phone_number": "6177736100"
},
"zip_code": "02169",
"measure": "Surgical Site Infection from colon surgery (SSI: Colon)",
"location": {
"needs_recoding": false,
"longitude": "-71.0145927906031",
"latitude": "42.250403277721546",
"human_address": "{\"address\":\"114 WHITWELL STREET\",\"city\":\"QUINCY\",\"state\":\"MA\",\"zip\":\"02169\"}"
},
"provider_id": "220067",
"state": "MA",
"score": "0.00",
"address_1": "114 WHITWELL STREET",
"city": "QUINCY",
"footnote": "The lower limit of the confidence interval cannot be calculated if the number of observed infections equals zero",
"county_name": "NORFOLK"
},
{
"hospital_name": "MEDSTAR UNION MEMORIAL HOSPITAL",
"phone_number": {
"phone_number": "4105542227"
},
"zip_code": "21218",
"measure": "CLABSI Lower Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-76.61507001967105",
"latitude": "39.330665409051115",
"human_address": "{\"address\":\"201 EAST UNIVERSITY PARKWAY\",\"city\":\"BALTIMORE\",\"state\":\"MD\",\"zip\":\"21218\"}"
},
"provider_id": "210024",
"state": "MD",
"score": "0.036",
"address_1": "201 EAST UNIVERSITY PARKWAY",
"city": "BALTIMORE",
"county_name": "BALTIMORE CITY"
},
{
"hospital_name": "UPMC PRESBYTERIAN SHADYSIDE",
"phone_number": {
"phone_number": "4126478788"
},
"zip_code": "15213",
"measure": "CAUTI Urinary Catheter Days",
"location": {
"needs_recoding": false,
"longitude": "-79.9606954803803",
"latitude": "40.44188106801257",
"human_address": "{\"address\":\"200 LOTHROP STREET\",\"city\":\"PITTSBURGH\",\"state\":\"PA\",\"zip\":\"15213\"}"
},
"provider_id": "390164",
"state": "PA",
"score": "28957",
"address_1": "200 LOTHROP STREET",
"city": "PITTSBURGH",
"county_name": "ALLEGHENY"
},
{
"hospital_name": "HILLCREST HOSPITAL SOUTH",
"phone_number": {
"phone_number": "9182944000"
},
"zip_code": "74133",
"measure": "SSI: Abdominal, Number of Procedures",
"location": {
"needs_recoding": false,
"longitude": "-95.8646770906613",
"latitude": "36.035215712890135",
"human_address": "{\"address\":\"8801 SOUTH 101ST EAST AVENUE\",\"city\":\"TULSA\",\"state\":\"OK\",\"zip\":\"74133\"}"
},
"provider_id": "370202",
"state": "OK",
"score": "21",
"address_1": "8801 SOUTH 101ST EAST AVENUE",
"city": "TULSA",
"footnote": "No data are available from the hospital for this measure",
"county_name": "TULSA"
},
{
"hospital_name": "ST VINCENT'S BIRMINGHAM",
"phone_number": {
"phone_number": "2059397000"
},
"zip_code": "35205",
"measure": "SSI: Colon Upper Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-86.78874615062654",
"latitude": "33.507976919032444",
"human_address": "{\"address\":\"810 ST VINCENT'S DRIVE\",\"city\":\"BIRMINGHAM\",\"state\":\"AL\",\"zip\":\"35205\"}"
},
"provider_id": "010056",
"state": "AL",
"score": "1.902",
"address_1": "810 ST VINCENT'S DRIVE",
"city": "BIRMINGHAM",
"county_name": "JEFFERSON"
},
{
"hospital_name": "VIRTUA WEST JERSEY HOSPITALS BERLIN",
"phone_number": {
"phone_number": "8563223200"
},
"zip_code": "08009",
"measure": "SSI: Colon Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-74.91831589606676",
"latitude": "39.78376979541838",
"human_address": "{\"address\":\"WHITEHORSE PIKE AND TOWNSEND AVENUE\",\"city\":\"BERLIN\",\"state\":\"NJ\",\"zip\":\"08009\"}"
},
"provider_id": "310022",
"state": "NJ",
"score": "4.359",
"address_1": "WHITEHORSE PIKE AND TOWNSEND AVENUE",
"city": "BERLIN",
"county_name": "CAMDEN"
},
{
"hospital_name": "EAST EL PASO PHYSICIANS MEDICAL CENTER, LLC",
"phone_number": {
"phone_number": "9155984240"
},
"zip_code": "79936",
"measure": "SSI: Abdominal Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-106.30156105085598",
"latitude": "31.734459917931076",
"human_address": "{\"address\":\"1416 GEORGE DIETER\",\"city\":\"EL PASO\",\"state\":\"TX\",\"zip\":\"79936\"}"
},
"provider_id": "450877",
"state": "TX",
"score": "0",
"address_1": "1416 GEORGE DIETER",
"city": "EL PASO",
"footnote": "No data are available from the hospital for this measure",
"county_name": "EL PASO"
},
{
"hospital_name": "HARRIS HEALTH SYSTEM",
"phone_number": {
"phone_number": "7135666417"
},
"zip_code": "77054",
"measure": "SSI: Abdominal Upper Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-95.39073720120088",
"latitude": "29.68542550597213",
"human_address": "{\"address\":\"2525 HOLLY HALL\",\"city\":\"HOUSTON\",\"state\":\"TX\",\"zip\":\"77054\"}"
},
"provider_id": "450289",
"state": "TX",
"score": "5.841",
"address_1": "2525 HOLLY HALL",
"city": "HOUSTON",
"county_name": "HARRIS"
},
{
"hospital_name": "SAMARITAN PACIFIC COMMUNITIES HOSPITAL",
"phone_number": {
"phone_number": "5412652244"
},
"zip_code": "97365",
"measure": "CAUTI Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-124.05906122785706",
"latitude": "44.62978453674202",
"human_address": "{\"address\":\"930 SW ABBEY STREET\",\"city\":\"NEWPORT\",\"state\":\"OR\",\"zip\":\"97365\"}"
},
"provider_id": "381314",
"state": "OR",
"score": "0",
"address_1": "930 SW ABBEY STREET",
"city": "NEWPORT",
"footnote": "No data are available from the hospital for this measure",
"county_name": "LINCOLN"
},
{
"hospital_name": "ARROWHEAD HOSPITAL",
"phone_number": {
"phone_number": "6235611000"
},
"zip_code": "85308",
"measure": "SSI: Abdominal Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-112.20358669864453",
"latitude": "33.65416171489517",
"human_address": "{\"address\":\"18701 NORTH 67TH AVENUE\",\"city\":\"GLENDALE\",\"state\":\"AZ\",\"zip\":\"85308\"}"
},
"provider_id": "030094",
"state": "AZ",
"score": "2",
"address_1": "18701 NORTH 67TH AVENUE",
"city": "GLENDALE",
"footnote": "No data are available from the hospital for this measure",
"county_name": "MARICOPA"
},
{
"hospital_name": "BAY MEDICAL CENTER SACRED HEART HEALTH SYSTEM",
"phone_number": {
"phone_number": "8507691511"
},
"zip_code": "32401",
"measure": "SSI: Abdominal Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-85.64709280731137",
"latitude": "30.159153492087455",
"human_address": "{\"address\":\"615 N BONITA AVE\",\"city\":\"PANAMA CITY\",\"state\":\"FL\",\"zip\":\"32401\"}"
},
"provider_id": "100026",
"state": "FL",
"score": "0.054",
"address_1": "615 N BONITA AVE",
"city": "PANAMA CITY",
"footnote": "No data are available from the hospital for this measure",
"county_name": "BAY"
},
{
"hospital_name": "ST ALEXIUS MEDICAL CENTER",
"phone_number": {
"phone_number": "8478432000"
},
"zip_code": "60194",
"measure": "CAUTI Urinary Catheter Days",
"location": {
"needs_recoding": false,
"longitude": "-88.11660999985145",
"latitude": "42.03457999996721",
"human_address": "{\"address\":\"1555 N BARRINGTON RD\",\"city\":\"HOFFMAN ESTATES\",\"state\":\"IL\",\"zip\":\"60194\"}"
},
"provider_id": "140290",
"state": "IL",
"score": "1696",
"address_1": "1555 N BARRINGTON RD",
"city": "HOFFMAN ESTATES",
"county_name": "COOK"
},
{
"hospital_name": "DEKALB REGIONAL MEDICAL CENTER",
"phone_number": {
"phone_number": "2568453150"
},
"zip_code": "35968",
"measure": "SSI: Abdominal Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-85.7715300003091",
"latitude": "34.48122999996468",
"human_address": "{\"address\":\"200 MED CENTER DRIVE\",\"city\":\"FORT PAYNE\",\"state\":\"AL\",\"zip\":\"35968\"}"
},
"provider_id": "010012",
"state": "AL",
"score": "0",
"address_1": "200 MED CENTER DRIVE",
"city": "FORT PAYNE",
"footnote": "No data are available from the hospital for this measure",
"county_name": "DE KALB"
},
{
"hospital_name": "BERT FISH MEDICAL CENTER",
"phone_number": {
"phone_number": "3864245000"
},
"zip_code": "32170",
"measure": "Catheter-Associated Urinary Tract Infections (CAUTI)",
"location": {
"needs_recoding": false,
"longitude": "-80.92286425519558",
"latitude": "29.02113340977064",
"human_address": "{\"address\":\"401 PALMETTO ST\",\"city\":\"NEW SMYRNA BEACH\",\"state\":\"FL\",\"zip\":\"32170\"}"
},
"provider_id": "100014",
"state": "FL",
"score": "0.94",
"address_1": "401 PALMETTO ST",
"city": "NEW SMYRNA BEACH",
"county_name": "VOLUSIA"
},
{
"hospital_name": "SOUTHWEST GENERAL HOSPITAL",
"phone_number": {
"phone_number": "2109212000"
},
"zip_code": "78224",
"measure": "CAUTI Lower Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-98.54648236169476",
"latitude": "29.354107391118987",
"human_address": "{\"address\":\"7400 BARLITE BLVD\",\"city\":\"SAN ANTONIO\",\"state\":\"TX\",\"zip\":\"78224\"}"
},
"provider_id": "450697",
"state": "TX",
"score": "0.125",
"address_1": "7400 BARLITE BLVD",
"city": "SAN ANTONIO",
"county_name": "BEXAR"
},
{
"hospital_name": "ST ELIZABETH HSPTL",
"phone_number": {
"phone_number": "9207382000"
},
"zip_code": "54915",
"measure": "SSI: Colon Lower Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-88.40409039321463",
"latitude": "44.2483820641159",
"human_address": "{\"address\":\"1506 S ONEIDA ST\",\"city\":\"APPLETON\",\"state\":\"WI\",\"zip\":\"54915\"}"
},
"provider_id": "520009",
"state": "WI",
"score": "0.016",
"address_1": "1506 S ONEIDA ST",
"city": "APPLETON",
"county_name": "OUTAGAMIE"
},
{
"hospital_name": "NORWOOD HOSPITAL",
"phone_number": {
"phone_number": "5087721000"
},
"zip_code": "02062",
"measure": "SSI: Colon Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-71.20251512184564",
"latitude": "42.190112728877295",
"human_address": "{\"address\":\"800 WASHINGTON STREET\",\"city\":\"NORWOOD\",\"state\":\"MA\",\"zip\":\"02062\"}"
},
"provider_id": "220126",
"state": "MA",
"score": "0",
"address_1": "800 WASHINGTON STREET",
"city": "NORWOOD",
"footnote": "The lower limit of the confidence interval cannot be calculated if the number of observed infections equals zero",
"county_name": "NORFOLK"
},
{
"hospital_name": "GORDON HOSPITAL",
"phone_number": {
"phone_number": "7066292895"
},
"zip_code": "30701",
"measure": "CAUTI Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-84.92561134810977",
"latitude": "34.51185323494236",
"human_address": "{\"address\":\"1035 RED BUD ROAD\",\"city\":\"CALHOUN\",\"state\":\"GA\",\"zip\":\"30701\"}"
},
"provider_id": "110023",
"state": "GA",
"score": "0",
"address_1": "1035 RED BUD ROAD",
"city": "CALHOUN",
"footnote": "The lower limit of the confidence interval cannot be calculated if the number of observed infections equals zero",
"county_name": "GORDON"
},
{
"hospital_name": "LAC/RANCHO LOS AMIGOS NATIONAL REHABILITATION CTR",
"phone_number": {
"phone_number": "5624017022"
},
"zip_code": "90242",
"measure": "CLABSI Upper Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-118.15749072639609",
"latitude": "33.92721777876487",
"human_address": "{\"address\":\"7601 EAST IMPERIAL HIGHWAY\",\"city\":\"DOWNEY\",\"state\":\"CA\",\"zip\":\"90242\"}"
},
"provider_id": "050717",
"state": "CA",
"score": "8.604",
"address_1": "7601 EAST IMPERIAL HIGHWAY",
"city": "DOWNEY",
"county_name": "ORANGE"
},
{
"hospital_name": "BENEWAH COMMUNITY HOSPITAL",
"phone_number": {
"phone_number": "2082457614"
},
"zip_code": "83861",
"measure": "SSI: Colon, Number of Procedures",
"location": {
"needs_recoding": false,
"longitude": "-116.56675988974584",
"latitude": "47.314977306484806",
"human_address": "{\"address\":\"229 SOUTH 7TH STREET\",\"city\":\"SAINT MARIES\",\"state\":\"ID\",\"zip\":\"83861\"}"
},
"provider_id": "131317",
"state": "ID",
"score": "1",
"address_1": "229 SOUTH 7TH STREET",
"city": "SAINT MARIES",
"footnote": "No data are available from the hospital for this measure",
"county_name": "BENEWAH"
},
{
"hospital_name": "AURELIA OSBORN FOX MEMORIAL HOSPITAL",
"phone_number": {
"phone_number": "6074232000"
},
"zip_code": "13820",
"measure": "CLABSI Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-75.05154524884736",
"latitude": "42.45763675049722",
"human_address": "{\"address\":\"ONE NORTON AVENUE\",\"city\":\"ONEONTA\",\"state\":\"NY\",\"zip\":\"13820\"}"
},
"provider_id": "330085",
"state": "NY",
"score": "0",
"address_1": "ONE NORTON AVENUE",
"city": "ONEONTA",
"footnote": "No data are available from the hospital for this measure",
"county_name": "OTSEGO"
},
{
"hospital_name": "SOUTHEASTERN OHIO REGIONAL MEDICAL CENTER",
"phone_number": {
"phone_number": "7404398111"
},
"zip_code": "43725",
"measure": "CLABSI Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-81.57684548686906",
"latitude": "40.04007589039584",
"human_address": "{\"address\":\"1341 NORTH CLARK STREET\",\"city\":\"CAMBRIDGE\",\"state\":\"OH\",\"zip\":\"43725\"}"
},
"provider_id": "360203",
"state": "OH",
"score": "0",
"address_1": "1341 NORTH CLARK STREET",
"city": "CAMBRIDGE",
"footnote": "The lower limit of the confidence interval cannot be calculated if the number of observed infections equals zero",
"county_name": "GUERNSEY"
},
{
"hospital_name": "MERCY HOSPITAL WASHINGTON",
"phone_number": {
"phone_number": "6362398000"
},
"zip_code": "63090",
"measure": "SSI: Colon Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-91.00194120465372",
"latitude": "38.552213287573935",
"human_address": "{\"address\":\"901 EAST 5TH STREET\",\"city\":\"WASHINGTON\",\"state\":\"MO\",\"zip\":\"63090\"}"
},
"provider_id": "260052",
"state": "MO",
"score": "4",
"address_1": "901 EAST 5TH STREET",
"city": "WASHINGTON",
"county_name": "FRANKLIN"
},
{
"hospital_name": "MCLAREN - NORTHERN MICHIGAN",
"phone_number": {
"phone_number": "2314874000"
},
"zip_code": "49770",
"measure": "CAUTI Upper Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-84.96920794368039",
"latitude": "45.37327986890659",
"human_address": "{\"address\":\"416 CONNABLE AVE\",\"city\":\"PETOSKEY\",\"state\":\"MI\",\"zip\":\"49770\"}"
},
"provider_id": "230105",
"state": "MI",
"score": "2.868",
"address_1": "416 CONNABLE AVE",
"city": "PETOSKEY",
"county_name": "EMMET"
},
{
"hospital_name": "ELK REGIONAL HEALTH CENTER",
"phone_number": {
"phone_number": "8147888000"
},
"zip_code": "15857",
"measure": "SSI: Colon Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-78.5768838163433",
"latitude": "41.42701100735536",
"human_address": "{\"address\":\"763 JOHNSONBURG ROAD\",\"city\":\"SAINT MARYS\",\"state\":\"PA\",\"zip\":\"15857\"}"
},
"provider_id": "390154",
"state": "PA",
"score": "1",
"address_1": "763 JOHNSONBURG ROAD",
"city": "SAINT MARYS",
"footnote": "No data are available from the hospital for this measure",
"county_name": "ELK"
},
{
"hospital_name": "MEMORIAL HOSPITAL",
"phone_number": {
"phone_number": "8306727581"
},
"zip_code": "78629",
"measure": "SSI: Abdominal Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-97.42986375609738",
"latitude": "29.516853115700105",
"human_address": "{\"address\":\"1110 NORTH SARAH DEWITT DRIVE\",\"city\":\"GONZALES\",\"state\":\"TX\",\"zip\":\"78629\"}"
},
"provider_id": "450235",
"state": "TX",
"score": "0",
"address_1": "1110 NORTH SARAH DEWITT DRIVE",
"city": "GONZALES",
"footnote": "No data are available from the hospital for this measure",
"county_name": "GONZALES"
},
{
"hospital_name": "APPLING HOSPITAL",
"phone_number": {
"phone_number": "9123679841"
},
"zip_code": "31513",
"measure": "CAUTI Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-82.34956183751184",
"latitude": "31.769042636536387",
"human_address": "{\"address\":\"163 E TOLLISON STREET\",\"city\":\"BAXLEY\",\"state\":\"GA\",\"zip\":\"31513\"}"
},
"provider_id": "110071",
"state": "GA",
"score": "0.335",
"address_1": "163 E TOLLISON STREET",
"city": "BAXLEY",
"footnote": "No data are available from the hospital for this measure",
"county_name": "APPLING"
},
{
"hospital_name": "ST VINCENT HOSPITAL & HEALTH SERVICES",
"phone_number": {
"phone_number": "3173387000"
},
"zip_code": "46260",
"measure": "Surgical Site Infection from colon surgery (SSI: Colon)",
"location": {
"needs_recoding": false,
"longitude": "-86.19636272992665",
"latitude": "39.91194117103424",
"human_address": "{\"address\":\"2001 W 86TH ST\",\"city\":\"INDIANAPOLIS\",\"state\":\"IN\",\"zip\":\"46260\"}"
},
"provider_id": "150084",
"state": "IN",
"score": "0.66",
"address_1": "2001 W 86TH ST",
"city": "INDIANAPOLIS",
"county_name": "MARION"
},
{
"hospital_name": "MADERA COMMUNITY HOSPITAL",
"phone_number": {
"phone_number": "5596755555"
},
"zip_code": "93637",
"measure": "CLABSI Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-120.04470352634888",
"latitude": "36.945383565863494",
"human_address": "{\"address\":\"1250 E ALMOND AVE\",\"city\":\"MADERA\",\"state\":\"CA\",\"zip\":\"93637\"}"
},
"provider_id": "050568",
"state": "CA",
"score": "0",
"address_1": "1250 E ALMOND AVE",
"city": "MADERA",
"footnote": "No data are available from the hospital for this measure",
"county_name": "MADERA"
},
{
"hospital_name": "RICHARDSON MEDICAL CENTER",
"phone_number": {
"phone_number": "3187284181"
},
"zip_code": "71269",
"measure": "CAUTI Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-91.75048133904968",
"latitude": "32.46953790156124",
"human_address": "{\"address\":\"254 HIGHWAY 3048\",\"city\":\"RAYVILLE\",\"state\":\"LA\",\"zip\":\"71269\"}"
},
"provider_id": "190151",
"state": "LA",
"score": "0",
"address_1": "254 HIGHWAY 3048",
"city": "RAYVILLE",
"footnote": "No data are available from the hospital for this measure",
"county_name": "RICHLAND"
},
{
"hospital_name": "PHYSICIANS' SPECIALTY HOSPITAL",
"phone_number": {
"phone_number": "4795717002"
},
"zip_code": "72703",
"measure": "SSI: Abdominal Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-94.13376996730813",
"latitude": "36.12131680397533",
"human_address": "{\"address\":\"3873 NORTH PARKVIEW DRIVE\",\"city\":\"FAYETTEVILLE\",\"state\":\"AR\",\"zip\":\"72703\"}"
},
"provider_id": "040152",
"state": "AR",
"score": "0.000",
"address_1": "3873 NORTH PARKVIEW DRIVE",
"city": "FAYETTEVILLE",
"footnote": "No data are available from the hospital for this measure",
"county_name": "WASHINGTON"
},
{
"hospital_name": "FAIRVIEW SOUTHDALE HOSPITAL",
"phone_number": {
"phone_number": "9529245000"
},
"zip_code": "55435",
"measure": "CAUTI Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-93.32881379854263",
"latitude": "44.886226213396924",
"human_address": "{\"address\":\"6401 FRANCE AVENUE SOUTH\",\"city\":\"EDINA\",\"state\":\"MN\",\"zip\":\"55435\"}"
},
"provider_id": "240078",
"state": "MN",
"score": "2",
"address_1": "6401 FRANCE AVENUE SOUTH",
"city": "EDINA",
"county_name": "HENNEPIN"
},
{
"hospital_name": "WYCKOFF HEIGHTS MEDICAL CENTER",
"phone_number": {
"phone_number": "7189637272"
},
"zip_code": "11237",
"measure": "SSI: Colon Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-73.91759530796321",
"latitude": "40.704693539862205",
"human_address": "{\"address\":\"374 STOCKHOLM STREET\",\"city\":\"BROOKLYN\",\"state\":\"NY\",\"zip\":\"11237\"}"
},
"provider_id": "330221",
"state": "NY",
"score": "0.762",
"address_1": "374 STOCKHOLM STREET",
"city": "BROOKLYN",
"footnote": "No data are available from the hospital for this measure",
"county_name": "KINGS"
},
{
"hospital_name": "RUSSELL COUNTY MEDICAL CENTER",
"phone_number": {
"phone_number": "2768838100"
},
"zip_code": "24266",
"measure": "CAUTI Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-82.07855153848952",
"latitude": "36.89890927315248",
"human_address": "{\"address\":\"58 CARROLL STREET\",\"city\":\"LEBANON\",\"state\":\"VA\",\"zip\":\"24266\"}"
},
"provider_id": "490002",
"state": "VA",
"score": "1",
"address_1": "58 CARROLL STREET",
"city": "LEBANON",
"footnote": "No data are available from the hospital for this measure",
"county_name": "RUSSELL"
},
{
"hospital_name": "LSU HEALTH SCIENCES CENTER - SHREVEPORT",
"phone_number": {
"phone_number": "3186755058"
},
"zip_code": "71130",
"measure": "SSI: Colon Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-93.76161030876956",
"latitude": "32.48173539515555",
"human_address": "{\"address\":\"1541 KINGS HIGHWAY\",\"city\":\"SHREVEPORT\",\"state\":\"LA\",\"zip\":\"71130\"}"
},
"provider_id": "190098",
"state": "LA",
"score": "0.919",
"address_1": "1541 KINGS HIGHWAY",
"city": "SHREVEPORT",
"footnote": "No data are available from the hospital for this measure",
"county_name": "CADDO"
},
{
"hospital_name": "BETHESDA HOSPITAL",
"phone_number": {
"phone_number": "5617377733"
},
"zip_code": "33435",
"measure": "SSI: Abdominal Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-80.06872416464756",
"latitude": "26.50404796162377",
"human_address": "{\"address\":\"2815 S SEACREST BLVD\",\"city\":\"BOYNTON BEACH\",\"state\":\"FL\",\"zip\":\"33435\"}"
},
"provider_id": "100002",
"state": "FL",
"score": "0.648",
"address_1": "2815 S SEACREST BLVD",
"city": "BOYNTON BEACH",
"footnote": "No data are available from the hospital for this measure",
"county_name": "PALM BEACH"
},
{
"hospital_name": "MEDICAL CENTER OF ARLINGTON",
"phone_number": {
"phone_number": "8174653241"
},
"zip_code": "76015",
"measure": "Surgical Site Infection from colon surgery (SSI: Colon)",
"location": {
"needs_recoding": false,
"longitude": "-97.11471766221631",
"latitude": "32.69196031219766",
"human_address": "{\"address\":\"3301 MATLOCK ROAD\",\"city\":\"ARLINGTON\",\"state\":\"TX\",\"zip\":\"76015\"}"
},
"provider_id": "450675",
"state": "TX",
"score": "0.00",
"address_1": "3301 MATLOCK ROAD",
"city": "ARLINGTON",
"footnote": "The lower limit of the confidence interval cannot be calculated if the number of observed infections equals zero",
"county_name": "TARRANT"
},
{
"hospital_name": "BAYSTATE MARY LANE HOSPITAL",
"phone_number": {
"phone_number": "4139676211"
},
"zip_code": "01082",
"measure": "CLABSI Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-72.24130117128833",
"latitude": "42.25334917325202",
"human_address": "{\"address\":\"85 SOUTH STREET\",\"city\":\"WARE\",\"state\":\"MA\",\"zip\":\"01082\"}"
},
"provider_id": "220050",
"state": "MA",
"score": "0",
"address_1": "85 SOUTH STREET",
"city": "WARE",
"footnote": "No data are available from the hospital for this measure",
"county_name": "HAMPSHIRE"
},
{
"hospital_name": "GEISINGER - BLOOMSBURG HOSPITAL",
"phone_number": {
"phone_number": "5703872100"
},
"zip_code": "17815",
"measure": "CAUTI Urinary Catheter Days",
"location": {
"needs_recoding": false,
"longitude": "-76.4528275978872",
"latitude": "41.00858228427538",
"human_address": "{\"address\":\"549 EAST FAIR STREET\",\"city\":\"BLOOMSBURG\",\"state\":\"PA\",\"zip\":\"17815\"}"
},
"provider_id": "390003",
"state": "PA",
"score": "285",
"address_1": "549 EAST FAIR STREET",
"city": "BLOOMSBURG",
"footnote": "No data are available from the hospital for this measure",
"county_name": "COLUMBIA"
},
{
"hospital_name": "ASPIRUS WAUSAU HOSPITAL",
"phone_number": {
"phone_number": "7158472121"
},
"zip_code": "54401",
"measure": "Surgical Site Infection from abdominal hysterectomy (SSI: Hysterectomy)",
"location": {
"needs_recoding": false,
"longitude": "-89.67039876301106",
"latitude": "44.96547447061886",
"human_address": "{\"address\":\"333 PINE RIDGE BLVD\",\"city\":\"WAUSAU\",\"state\":\"WI\",\"zip\":\"54401\"}"
},
"provider_id": "520030",
"state": "WI",
"score": "0.95",
"address_1": "333 PINE RIDGE BLVD",
"city": "WAUSAU",
"county_name": "MARATHON"
},
{
"hospital_name": "COASTAL COMMUNITIES HOSPITAL",
"phone_number": {
"phone_number": "7147545454"
},
"zip_code": "92704",
"measure": "SSI: Colon, Number of Procedures",
"location": {
"needs_recoding": false,
"longitude": "-117.88538636789815",
"latitude": "33.711115779010754",
"human_address": "{\"address\":\"2701 S BRISTOL ST\",\"city\":\"SANTA ANA\",\"state\":\"CA\",\"zip\":\"92704\"}"
},
"provider_id": "050747",
"state": "CA",
"score": "12",
"address_1": "2701 S BRISTOL ST",
"city": "SANTA ANA",
"footnote": "No data are available from the hospital for this measure",
"county_name": "ORANGE"
},
{
"hospital_name": "DUKES MEMORIAL HOSPITAL",
"phone_number": {
"phone_number": "7654728000"
},
"zip_code": "46970",
"measure": "SSI: Colon, Number of Procedures",
"location": {
"needs_recoding": false,
"longitude": "-86.08333593728423",
"latitude": "40.75721394637333",
"human_address": "{\"address\":\"275 W 12TH ST\",\"city\":\"PERU\",\"state\":\"IN\",\"zip\":\"46970\"}"
},
"provider_id": "151318",
"state": "IN",
"score": "2",
"address_1": "275 W 12TH ST",
"city": "PERU",
"footnote": "No data are available from the hospital for this measure",
"county_name": "MIAMI"
},
{
"hospital_name": "COMMUNITY HOSPITAL NORTH",
"phone_number": {
"phone_number": "3176215335"
},
"zip_code": "46256",
"measure": "Surgical Site Infection from colon surgery (SSI: Colon)",
"location": {
"needs_recoding": false,
"longitude": "-86.0432875837568",
"latitude": "39.90032064235266",
"human_address": "{\"address\":\"7150 CLEARVISTA DR\",\"city\":\"INDIANAPOLIS\",\"state\":\"IN\",\"zip\":\"46256\"}"
},
"provider_id": "150169",
"state": "IN",
"score": "0.00",
"address_1": "7150 CLEARVISTA DR",
"city": "INDIANAPOLIS",
"footnote": "The lower limit of the confidence interval cannot be calculated if the number of observed infections equals zero",
"county_name": "MARION"
},
{
"hospital_name": "ST MARYS HSPTL MED CTR",
"phone_number": {
"phone_number": "9204984200"
},
"zip_code": "54303",
"measure": "CLABSI Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-88.06614583905753",
"latitude": "44.53218377319866",
"human_address": "{\"address\":\"1726 SHAWANO AVE\",\"city\":\"GREEN BAY\",\"state\":\"WI\",\"zip\":\"54303\"}"
},
"provider_id": "520097",
"state": "WI",
"score": "0.528",
"address_1": "1726 SHAWANO AVE",
"city": "GREEN BAY",
"footnote": "No data are available from the hospital for this measure",
"county_name": "BROWN"
},
{
"hospital_name": "DIXIE REGIONAL MEDICAL CENTER",
"phone_number": {
"phone_number": "4352511000"
},
"zip_code": "84790",
"measure": "CAUTI Urinary Catheter Days",
"location": {
"needs_recoding": false,
"longitude": "-113.55331743991442",
"latitude": "37.099792856611884",
"human_address": "{\"address\":\"1380 EAST MEDICAL CENTER DRIVE\",\"city\":\"ST GEORGE\",\"state\":\"UT\",\"zip\":\"84790\"}"
},
"provider_id": "460021",
"state": "UT",
"score": "1389",
"address_1": "1380 EAST MEDICAL CENTER DRIVE",
"city": "ST GEORGE",
"footnote": "The lower limit of the confidence interval cannot be calculated if the number of observed infections equals zero",
"county_name": "WASHINGTON"
},
{
"hospital_name": "ST MARY'S HOSPITAL",
"phone_number": {
"phone_number": "6082516100"
},
"zip_code": "53715",
"measure": "SSI: Abdominal Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-89.40084497116902",
"latitude": "43.05951431426246",
"human_address": "{\"address\":\"700 SOUTH PARK ST\",\"city\":\"MADISON\",\"state\":\"WI\",\"zip\":\"53715\"}"
},
"provider_id": "520083",
"state": "WI",
"score": "0",
"address_1": "700 SOUTH PARK ST",
"city": "MADISON",
"footnote": "No data are available from the hospital for this measure",
"county_name": "DANE"
},
{
"hospital_name": "BAYSTATE MEDICAL CENTER",
"phone_number": {
"phone_number": "4137940000"
},
"zip_code": "01199",
"measure": "SSI: Colon, Number of Procedures",
"location": {
"needs_recoding": false,
"longitude": "-72.60479198925196",
"latitude": "42.11985769194837",
"human_address": "{\"address\":\"759 CHESTNUT STREET\",\"city\":\"SPRINGFIELD\",\"state\":\"MA\",\"zip\":\"01199\"}"
},
"provider_id": "220077",
"state": "MA",
"score": "185",
"address_1": "759 CHESTNUT STREET",
"city": "SPRINGFIELD",
"county_name": "HAMPDEN"
},
{
"hospital_name": "ST JOSEPH MEDICAL CENTER",
"phone_number": {
"phone_number": "6103782300"
},
"zip_code": "19605",
"measure": "SSI: Colon Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-75.97733093455444",
"latitude": "40.376583791849164",
"human_address": "{\"address\":\"2500 BERNVILLE ROAD\",\"city\":\"READING\",\"state\":\"PA\",\"zip\":\"19605\"}"
},
"provider_id": "390096",
"state": "PA",
"score": "2",
"address_1": "2500 BERNVILLE ROAD",
"city": "READING",
"county_name": "BERKS"
},
{
"hospital_name": "LITTLE COMPANY OF MARY HOSPITAL",
"phone_number": {
"phone_number": "7084226200"
},
"zip_code": "60805",
"measure": "CLABSI Upper Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-87.69092802397972",
"latitude": "41.720909446530584",
"human_address": "{\"address\":\"2800 W 95TH ST\",\"city\":\"EVERGREEN PARK\",\"state\":\"IL\",\"zip\":\"60805\"}"
},
"provider_id": "140179",
"state": "IL",
"score": "5.213",
"address_1": "2800 W 95TH ST",
"city": "EVERGREEN PARK",
"county_name": "COOK"
},
{
"hospital_name": "KAISER FOUNDATION HOSPITAL OAKLAND/RICHMOND",
"phone_number": {
"phone_number": "5107521000"
},
"zip_code": "94611",
"measure": "SSI: Colon Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-122.25792604723591",
"latitude": "37.824228032556334",
"human_address": "{\"address\":\"280 W MAC ARTHUR BLVD\",\"city\":\"OAKLAND\",\"state\":\"CA\",\"zip\":\"94611\"}"
},
"provider_id": "050075",
"state": "CA",
"score": "2",
"address_1": "280 W MAC ARTHUR BLVD",
"city": "OAKLAND",
"county_name": "ALAMEDA"
},
{
"hospital_name": "SAN ANGELO COMMUNITY MEDICAL CENTER",
"phone_number": {
"phone_number": "3259499511"
},
"zip_code": "76904",
"measure": "CLABSI Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-100.47066278236474",
"latitude": "31.41964324835436",
"human_address": "{\"address\":\"3501 KNICKERBOCKER ROAD\",\"city\":\"SAN ANGELO\",\"state\":\"TX\",\"zip\":\"76904\"}"
},
"provider_id": "450340",
"state": "TX",
"score": "2.017",
"address_1": "3501 KNICKERBOCKER ROAD",
"city": "SAN ANGELO",
"footnote": "The lower limit of the confidence interval cannot be calculated if the number of observed infections equals zero",
"county_name": "TOM GREEN"
},
{
"hospital_name": "TEXAS HEALTH PRESBYTERIAN HOSPITAL DENTON",
"phone_number": {
"phone_number": "9408987000"
},
"zip_code": "76201",
"measure": "CLABSI Upper Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-97.16929657890591",
"latitude": "33.21746892390769",
"human_address": "{\"address\":\"3000 N I-35\",\"city\":\"DENTON\",\"state\":\"TX\",\"zip\":\"76201\"}"
},
"provider_id": "450743",
"state": "TX",
"score": "0.540",
"address_1": "3000 N I-35",
"city": "DENTON",
"footnote": "The lower limit of the confidence interval cannot be calculated if the number of observed infections equals zero",
"county_name": "DENTON"
},
{
"hospital_name": "NOVATO COMMUNITY HOSPITAL",
"phone_number": {
"phone_number": "4152091300"
},
"zip_code": "94945",
"measure": "CLABSI Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-122.55973852026898",
"latitude": "38.098269441324646",
"human_address": "{\"address\":\"180 ROWLAND WAY\",\"city\":\"NOVATO\",\"state\":\"CA\",\"zip\":\"94945\"}"
},
"provider_id": "050131",
"state": "CA",
"score": "0",
"address_1": "180 ROWLAND WAY",
"city": "NOVATO",
"footnote": "No data are available from the hospital for this measure",
"county_name": "MARIN"
},
{
"hospital_name": "KECK HOSPITAL OF USC",
"phone_number": {
"phone_number": "3234428656"
},
"zip_code": "90033",
"measure": "CLABSI Upper Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-118.20320677305278",
"latitude": "34.06202224162331",
"human_address": "{\"address\":\"1500 SAN PABLO ST\",\"city\":\"LOS ANGELES\",\"state\":\"CA\",\"zip\":\"90033\"}"
},
"provider_id": "050696",
"state": "CA",
"score": "1.554",
"address_1": "1500 SAN PABLO ST",
"city": "LOS ANGELES",
"county_name": "LOS ANGELES"
},
{
"hospital_name": "PARKVIEW HUNTINGTON HOSPITAL",
"phone_number": {
"phone_number": "2603553000"
},
"zip_code": "46750",
"measure": "CAUTI Urinary Catheter Days",
"location": {
"needs_recoding": false,
"longitude": "-85.49050227230727",
"latitude": "40.9037996518201",
"human_address": "{\"address\":\"2001 STULTS RD\",\"city\":\"HUNTINGTON\",\"state\":\"IN\",\"zip\":\"46750\"}"
},
"provider_id": "150091",
"state": "IN",
"score": "150",
"address_1": "2001 STULTS RD",
"city": "HUNTINGTON",
"footnote": "No data are available from the hospital for this measure",
"county_name": "HUNTINGTON"
},
{
"hospital_name": "MEASE COUNTRYSIDE HOSPITAL",
"phone_number": {
"phone_number": "7277346950"
},
"zip_code": "34695",
"measure": "CLABSI Upper Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-82.7089249867039",
"latitude": "28.039376747847136",
"human_address": "{\"address\":\"3231 MCMULLEN BOOTH RD\",\"city\":\"SAFETY HARBOR\",\"state\":\"FL\",\"zip\":\"34695\"}"
},
"provider_id": "100265",
"state": "FL",
"score": "1.329",
"address_1": "3231 MCMULLEN BOOTH RD",
"city": "SAFETY HARBOR",
"county_name": "PINELLAS"
},
{
"hospital_name": "MEDICAL CENTER, THE",
"phone_number": {
"phone_number": "7065711000"
},
"zip_code": "31901",
"measure": "Catheter-Associated Urinary Tract Infections (CAUTI)",
"location": {
"needs_recoding": false,
"longitude": "-84.98003867851867",
"latitude": "32.482282158175224",
"human_address": "{\"address\":\"710 CENTER ST BOX 951\",\"city\":\"COLUMBUS\",\"state\":\"GA\",\"zip\":\"31901\"}"
},
"provider_id": "110064",
"state": "GA",
"score": "2.21",
"address_1": "710 CENTER ST BOX 951",
"city": "COLUMBUS",
"county_name": "MUSCOGEE"
},
{
"hospital_name": "CLOVIS COMMUNITY MEDICAL CENTER",
"phone_number": {
"phone_number": "5593244000"
},
"zip_code": "93611",
"measure": "CAUTI Lower Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-119.66066435188674",
"latitude": "36.8374713454607",
"human_address": "{\"address\":\"2755 HERNDON AVE\",\"city\":\"CLOVIS\",\"state\":\"CA\",\"zip\":\"93611\"}"
},
"provider_id": "050492",
"state": "CA",
"score": "0.498",
"address_1": "2755 HERNDON AVE",
"city": "CLOVIS",
"county_name": "FRESNO"
},
{
"hospital_name": "CALDWELL MEMORIAL HOSPITAL",
"phone_number": {
"phone_number": "8287575100"
},
"zip_code": "28645",
"measure": "CAUTI Lower Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-81.53619288595786",
"latitude": "35.9106596118321",
"human_address": "{\"address\":\"321 MULBERRY ST SW\",\"city\":\"LENOIR\",\"state\":\"NC\",\"zip\":\"28645\"}"
},
"provider_id": "340041",
"state": "NC",
"score": "0.018",
"address_1": "321 MULBERRY ST SW",
"city": "LENOIR",
"county_name": "CALDWELL"
},
{
"hospital_name": "BON SECOURS HOSPITAL",
"phone_number": {
"phone_number": "4103623000"
},
"zip_code": "21223",
"measure": "SSI: Abdominal Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-76.6490971143358",
"latitude": "39.28809946574944",
"human_address": "{\"address\":\"2000 W BALTIMORE STREET\",\"city\":\"BALTIMORE\",\"state\":\"MD\",\"zip\":\"21223\"}"
},
"provider_id": "210013",
"state": "MD",
"score": "0.000",
"address_1": "2000 W BALTIMORE STREET",
"city": "BALTIMORE",
"footnote": "No data are available from the hospital for this measure",
"county_name": "BALTIMORE CITY"
},
{
"hospital_name": "INTEGRIS GROVE HOSPITAL",
"phone_number": {
"phone_number": "9187862243"
},
"zip_code": "74344",
"measure": "CLABSI Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-94.75732722605825",
"latitude": "36.58015267528284",
"human_address": "{\"address\":\"1001 EAST 18TH STREET\",\"city\":\"GROVE\",\"state\":\"OK\",\"zip\":\"74344\"}"
},
"provider_id": "370113",
"state": "OK",
"score": "0",
"address_1": "1001 EAST 18TH STREET",
"city": "GROVE",
"footnote": "No data are available from the hospital for this measure",
"county_name": "DELAWARE"
},
{
"hospital_name": "OHIO VALLEY GENERAL HOSPITAL",
"phone_number": {
"phone_number": "4127776161"
},
"zip_code": "15136",
"measure": "CAUTI Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-80.09390650259272",
"latitude": "40.47308751640466",
"human_address": "{\"address\":\"25 HECKEL ROAD\",\"city\":\"MCKEES ROCKS\",\"state\":\"PA\",\"zip\":\"15136\"}"
},
"provider_id": "390157",
"state": "PA",
"score": "0",
"address_1": "25 HECKEL ROAD",
"city": "MCKEES ROCKS",
"footnote": "No data are available from the hospital for this measure",
"county_name": "ALLEGHENY"
},
{
"hospital_name": "UNIVERSITY HEALTH CARE/UNIV HOSPITALS AND CLINICS",
"phone_number": {
"phone_number": "8015812121"
},
"zip_code": "84132",
"measure": "CAUTI Upper Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-111.83675974033541",
"latitude": "40.77293252488003",
"human_address": "{\"address\":\"50 NORTH MEDICAL DRIVE\",\"city\":\"SALT LAKE CITY\",\"state\":\"UT\",\"zip\":\"84132\"}"
},
"provider_id": "460009",
"state": "UT",
"score": "2.890",
"address_1": "50 NORTH MEDICAL DRIVE",
"city": "SALT LAKE CITY",
"county_name": "SALT LAKE"
},
{
"hospital_name": "SOUTHSIDE COMMUNITY HOSPITAL, INC",
"phone_number": {
"phone_number": "4343928811"
},
"zip_code": "23901",
"measure": "SSI: Colon Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-78.40362415504806",
"latitude": "37.303698519919",
"human_address": "{\"address\":\"800 OAK STREET\",\"city\":\"FARMVILLE\",\"state\":\"VA\",\"zip\":\"23901\"}"
},
"provider_id": "490090",
"state": "VA",
"score": "1",
"address_1": "800 OAK STREET",
"city": "FARMVILLE",
"footnote": "No data are available from the hospital for this measure",
"county_name": "PRINCE EDWARD"
},
{
"hospital_name": "SHARP CORONADO HOSPITAL AND HLTHCR CTR",
"phone_number": {
"phone_number": "6194356251"
},
"zip_code": "92118",
"measure": "CLABSI Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-117.1680007377475",
"latitude": "32.69425814957795",
"human_address": "{\"address\":\"250 PROSPECT PLACE\",\"city\":\"CORONADO\",\"state\":\"CA\",\"zip\":\"92118\"}"
},
"provider_id": "050234",
"state": "CA",
"score": "1",
"address_1": "250 PROSPECT PLACE",
"city": "CORONADO",
"footnote": "No data are available from the hospital for this measure",
"county_name": "SAN DIEGO"
},
{
"hospital_name": "RALEIGH GENERAL HOSPITAL",
"phone_number": {
"phone_number": "3042564100"
},
"zip_code": "25801",
"measure": "CAUTI Lower Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-81.20305186414171",
"latitude": "37.786532496936374",
"human_address": "{\"address\":\"1710 HARPER ROAD\",\"city\":\"BECKLEY\",\"state\":\"WV\",\"zip\":\"25801\"}"
},
"provider_id": "510070",
"state": "WV",
"score": "0.042",
"address_1": "1710 HARPER ROAD",
"city": "BECKLEY",
"county_name": "RALEIGH"
},
{
"hospital_name": "POUDRE VALLEY HOSPITAL",
"phone_number": {
"phone_number": "9704957000"
},
"zip_code": "80524",
"measure": "CAUTI Upper Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-105.05786163687611",
"latitude": "40.571746764270756",
"human_address": "{\"address\":\"1024 S LEMAY AVE\",\"city\":\"FORT COLLINS\",\"state\":\"CO\",\"zip\":\"80524\"}"
},
"provider_id": "060010",
"state": "CO",
"score": "5.506",
"address_1": "1024 S LEMAY AVE",
"city": "FORT COLLINS",
"county_name": "LARIMER"
},
{
"hospital_name": "LEXINGTON MEDICAL CENTER",
"phone_number": {
"phone_number": "8037912000"
},
"zip_code": "29169",
"measure": "SSI: Abdominal Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-81.11600195936694",
"latitude": "34.00477629188705",
"human_address": "{\"address\":\"2720 SUNSET BLVD\",\"city\":\"WEST COLUMBIA\",\"state\":\"SC\",\"zip\":\"29169\"}"
},
"provider_id": "420073",
"state": "SC",
"score": "1",
"address_1": "2720 SUNSET BLVD",
"city": "WEST COLUMBIA",
"county_name": "LEXINGTON"
},
{
"hospital_name": "ASANTE THREE RIVERS MEDICAL CENTER",
"phone_number": {
"phone_number": "5414727000"
},
"zip_code": "97527",
"measure": "SSI: Colon Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-123.33953687144621",
"latitude": "42.421491909295646",
"human_address": "{\"address\":\"500 SW RAMSEY AVENUE\",\"city\":\"GRANTS PASS\",\"state\":\"OR\",\"zip\":\"97527\"}"
},
"provider_id": "380002",
"state": "OR",
"score": "2.105",
"address_1": "500 SW RAMSEY AVENUE",
"city": "GRANTS PASS",
"county_name": "JOSEPHINE"
},
{
"hospital_name": "PALM BAY HOSPITAL",
"phone_number": {
"phone_number": "3214348000"
},
"zip_code": "32907",
"measure": "SSI: Colon Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-80.6120588503057",
"latitude": "27.99838759410747",
"human_address": "{\"address\":\"1425 MALABAR RD, NE\",\"city\":\"PALM BAY\",\"state\":\"FL\",\"zip\":\"32907\"}"
},
"provider_id": "100316",
"state": "FL",
"score": "0.603",
"address_1": "1425 MALABAR RD, NE",
"city": "PALM BAY",
"footnote": "No data are available from the hospital for this measure",
"county_name": "BREVARD"
},
{
"hospital_name": "MEDWEST HARRIS",
"phone_number": {
"phone_number": "8285867000"
},
"zip_code": "28779",
"measure": "SSI: Colon Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-83.20287348191587",
"latitude": "35.38395163905719",
"human_address": "{\"address\":\"68 HOSPITAL RD\",\"city\":\"SYLVA\",\"state\":\"NC\",\"zip\":\"28779\"}"
},
"provider_id": "340016",
"state": "NC",
"score": "0",
"address_1": "68 HOSPITAL RD",
"city": "SYLVA",
"footnote": "No data are available from the hospital for this measure",
"county_name": "JACKSON"
},
{
"hospital_name": "NORTHWESTERN MEMORIAL HOSPITAL",
"phone_number": {
"phone_number": "3129262000"
},
"zip_code": "60611",
"measure": "SSI: Abdominal, Number of Procedures",
"location": {
"needs_recoding": false,
"longitude": "-87.62138488753187",
"latitude": "41.894927948624925",
"human_address": "{\"address\":\"251 E HURON ST\",\"city\":\"CHICAGO\",\"state\":\"IL\",\"zip\":\"60611\"}"
},
"provider_id": "140281",
"state": "IL",
"score": "277",
"address_1": "251 E HURON ST",
"city": "CHICAGO",
"county_name": "COOK"
},
{
"hospital_name": "SIERRA MEDICAL CENTER",
"phone_number": {
"phone_number": "9157474000"
},
"zip_code": "79902",
"measure": "SSI: Colon Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-106.47968976519945",
"latitude": "31.778122002453642",
"human_address": "{\"address\":\"1625 MEDICAL CENTER DR\",\"city\":\"EL PASO\",\"state\":\"TX\",\"zip\":\"79902\"}"
},
"provider_id": "450668",
"state": "TX",
"score": "0",
"address_1": "1625 MEDICAL CENTER DR",
"city": "EL PASO",
"footnote": "No data are available from the hospital for this measure",
"county_name": "EL PASO"
},
{
"hospital_name": "BANNER THUNDERBIRD MEDICAL CENTER",
"phone_number": {
"phone_number": "6025885555"
},
"zip_code": "85306",
"measure": "SSI: Abdominal Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-112.17961976656369",
"latitude": "33.610733454100284",
"human_address": "{\"address\":\"5555 WEST THUNDERBIRD ROAD\",\"city\":\"GLENDALE\",\"state\":\"AZ\",\"zip\":\"85306\"}"
},
"provider_id": "030089",
"state": "AZ",
"score": "1.659",
"address_1": "5555 WEST THUNDERBIRD ROAD",
"city": "GLENDALE",
"county_name": "MARICOPA"
},
{
"hospital_name": "MONONGAHELA VALLEY HOSPITAL",
"phone_number": {
"phone_number": "7242581000"
},
"zip_code": "15063",
"measure": "CAUTI Urinary Catheter Days",
"location": {
"needs_recoding": false,
"longitude": "-79.91630508519331",
"latitude": "40.18203780145195",
"human_address": "{\"address\":\"1163 COUNTRY CLUB ROAD\",\"city\":\"MONONGAHELA\",\"state\":\"PA\",\"zip\":\"15063\"}"
},
"provider_id": "390147",
"state": "PA",
"score": "926",
"address_1": "1163 COUNTRY CLUB ROAD",
"city": "MONONGAHELA",
"footnote": "The lower limit of the confidence interval cannot be calculated if the number of observed infections equals zero",
"county_name": "WASHINGTON"
},
{
"hospital_name": "CLARENDON MEMORIAL HOSPITAL",
"phone_number": {
"phone_number": "8034358463"
},
"zip_code": "29102",
"measure": "CLABSI Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-80.2118758199515",
"latitude": "33.68785443228046",
"human_address": "{\"address\":\"10 HOSPITAL ST BOX 550\",\"city\":\"MANNING\",\"state\":\"SC\",\"zip\":\"29102\"}"
},
"provider_id": "420069",
"state": "SC",
"score": "0",
"address_1": "10 HOSPITAL ST BOX 550",
"city": "MANNING",
"footnote": "No data are available from the hospital for this measure",
"county_name": "CLARENDON"
},
{
"hospital_name": "ST THOMAS HOSPITAL",
"phone_number": {
"phone_number": "6152222111"
},
"zip_code": "37205",
"measure": "CLABSI Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-86.84385660458207",
"latitude": "36.12761205818043",
"human_address": "{\"address\":\"4220 HARDING RD, PO BOX 380\",\"city\":\"NASHVILLE\",\"state\":\"TN\",\"zip\":\"37205\"}"
},
"provider_id": "440082",
"state": "TN",
"score": "9.778",
"address_1": "4220 HARDING RD, PO BOX 380",
"city": "NASHVILLE",
"county_name": "DAVIDSON"
},
{
"hospital_name": "DELANO REGIONAL MEDICAL CENTER",
"phone_number": {
"phone_number": "6617254800"
},
"zip_code": "93215",
"measure": "CLABSI Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-119.23886602199465",
"latitude": "35.761471943850324",
"human_address": "{\"address\":\"1401 GARCES HIGHWAY\",\"city\":\"DELANO\",\"state\":\"CA\",\"zip\":\"93215\"}"
},
"provider_id": "050608",
"state": "CA",
"score": "0.960",
"address_1": "1401 GARCES HIGHWAY",
"city": "DELANO",
"footnote": "No data are available from the hospital for this measure",
"county_name": "KERN"
},
{
"hospital_name": "FRANCISCAN ST ANTHONY HEALTH - MICHIGAN CITY",
"phone_number": {
"phone_number": "2198798511"
},
"zip_code": "46360",
"measure": "CLABSI Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-86.89968651616101",
"latitude": "41.70627747711387",
"human_address": "{\"address\":\"301 W HOMER ST\",\"city\":\"MICHIGAN CITY\",\"state\":\"IN\",\"zip\":\"46360\"}"
},
"provider_id": "150015",
"state": "IN",
"score": "0",
"address_1": "301 W HOMER ST",
"city": "MICHIGAN CITY",
"footnote": "The lower limit of the confidence interval cannot be calculated if the number of observed infections equals zero",
"county_name": "LA PORTE"
},
{
"hospital_name": "CHRISTIAN HOSPITAL NORTHEAST",
"phone_number": {
"phone_number": "3146535000"
},
"zip_code": "63136",
"measure": "CAUTI Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-90.23850948214016",
"latitude": "38.77691583107503",
"human_address": "{\"address\":\"11133 DUNN ROAD\",\"city\":\"SAINT LOUIS\",\"state\":\"MO\",\"zip\":\"63136\"}"
},
"provider_id": "260180",
"state": "MO",
"score": "1",
"address_1": "11133 DUNN ROAD",
"city": "SAINT LOUIS",
"county_name": "SAINT LOUIS"
},
{
"hospital_name": "PACIFIC HOSPITAL OF LONG BEACH",
"phone_number": {
"phone_number": "5625951911"
},
"zip_code": "90806",
"measure": "SSI: Abdominal, Number of Procedures",
"location": {
"needs_recoding": false,
"longitude": "-118.19363798666103",
"latitude": "33.807298270044384",
"human_address": "{\"address\":\"2776 PACIFIC AVE\",\"city\":\"LONG BEACH\",\"state\":\"CA\",\"zip\":\"90806\"}"
},
"provider_id": "050277",
"state": "CA",
"score": "3",
"address_1": "2776 PACIFIC AVE",
"city": "LONG BEACH",
"footnote": "No data are available from the hospital for this measure",
"county_name": "LOS ANGELES"
},
{
"hospital_name": "VIDANT DUPLIN HOSPITAL",
"phone_number": {
"phone_number": "9102960941"
},
"zip_code": "28349",
"measure": "SSI: Abdominal, Number of Procedures",
"location": {
"needs_recoding": false,
"longitude": "-77.96042695932616",
"latitude": "34.96508347990333",
"human_address": "{\"address\":\"401 N MAIN ST\",\"city\":\"KENANSVILLE\",\"state\":\"NC\",\"zip\":\"28349\"}"
},
"provider_id": "340120",
"state": "NC",
"score": "17",
"address_1": "401 N MAIN ST",
"city": "KENANSVILLE",
"footnote": "No data are available from the hospital for this measure",
"county_name": "DUPLIN"
},
{
"hospital_name": "SHANDS LAKE SHORE REGIONAL MEDICAL CENTER",
"phone_number": {
"phone_number": "3867548000"
},
"zip_code": "32055",
"measure": "SSI: Colon, Number of Procedures",
"location": {
"needs_recoding": false,
"longitude": "-82.63270925662249",
"latitude": "30.193453634284992",
"human_address": "{\"address\":\"368 NE FRANKLIN ST\",\"city\":\"LAKE CITY\",\"state\":\"FL\",\"zip\":\"32055\"}"
},
"provider_id": "100102",
"state": "FL",
"score": "6",
"address_1": "368 NE FRANKLIN ST",
"city": "LAKE CITY",
"footnote": "No data are available from the hospital for this measure",
"county_name": "COLUMBIA"
},
{
"hospital_name": "PARKVIEW ADVENTIST MEDICAL CENTER",
"phone_number": {
"phone_number": "2073732000"
},
"zip_code": "04011",
"measure": "SSI: Colon Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-69.97030033625678",
"latitude": "43.89561151301639",
"human_address": "{\"address\":\"329 MAIN ST\",\"city\":\"BRUNSWICK\",\"state\":\"ME\",\"zip\":\"04011\"}"
},
"provider_id": "200025",
"state": "ME",
"score": "0.089",
"address_1": "329 MAIN ST",
"city": "BRUNSWICK",
"footnote": "No data are available from the hospital for this measure",
"county_name": "CUMBERLAND"
},
{
"hospital_name": "CHESTATEE REGIONAL HOSPITAL",
"phone_number": {
"phone_number": "7068646136"
},
"zip_code": "30533",
"measure": "SSI: Abdominal Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-84.01201196070994",
"latitude": "34.543011743765796",
"human_address": "{\"address\":\"227 MOUNTAIN DR\",\"city\":\"DAHLONEGA\",\"state\":\"GA\",\"zip\":\"30533\"}"
},
"provider_id": "110187",
"state": "GA",
"score": "0.000",
"address_1": "227 MOUNTAIN DR",
"city": "DAHLONEGA",
"footnote": "No data are available from the hospital for this measure",
"county_name": "LUMPKIN"
},
{
"hospital_name": "BARTON MEMORIAL HOSPITAL",
"phone_number": {
"phone_number": "5305413420"
},
"zip_code": "96158",
"measure": "CLABSI Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-119.99757905201358",
"latitude": "38.91228178292522",
"human_address": "{\"address\":\"2170 SOUTH AVENUE\",\"city\":\"SOUTH LAKE TAHOE\",\"state\":\"CA\",\"zip\":\"96158\"}"
},
"provider_id": "050352",
"state": "CA",
"score": "0.459",
"address_1": "2170 SOUTH AVENUE",
"city": "SOUTH LAKE TAHOE",
"footnote": "No data are available from the hospital for this measure",
"county_name": "EL DORADO"
},
{
"hospital_name": "FLOWER HOSPITAL",
"phone_number": {
"phone_number": "4198241444"
},
"zip_code": "43560",
"measure": "SSI: Colon Upper Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-83.69433998313727",
"latitude": "41.70948704820845",
"human_address": "{\"address\":\"5200 HARROUN ROAD\",\"city\":\"SYLVANIA\",\"state\":\"OH\",\"zip\":\"43560\"}"
},
"provider_id": "360074",
"state": "OH",
"score": "8.086",
"address_1": "5200 HARROUN ROAD",
"city": "SYLVANIA",
"county_name": "LUCAS"
},
{
"hospital_name": "MEMORIAL HOSPITAL OF CARBONDALE",
"phone_number": {
"phone_number": "6185490721"
},
"zip_code": "62902",
"measure": "SSI: Abdominal Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-89.21883318549011",
"latitude": "37.72798291643462",
"human_address": "{\"address\":\"405 W JACKSON\",\"city\":\"CARBONDALE\",\"state\":\"IL\",\"zip\":\"62902\"}"
},
"provider_id": "140164",
"state": "IL",
"score": "0",
"address_1": "405 W JACKSON",
"city": "CARBONDALE",
"footnote": "No data are available from the hospital for this measure",
"county_name": "JACKSON"
},
{
"hospital_name": "ST ELIZABETH BOARDMAN HEALTH CENTER",
"phone_number": {
"phone_number": "3307292929"
},
"zip_code": "44512",
"measure": "SSI: Abdominal Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-80.66265587608407",
"latitude": "40.99527866755993",
"human_address": "{\"address\":\"8401 MARKET STREET\",\"city\":\"BOARDMAN\",\"state\":\"OH\",\"zip\":\"44512\"}"
},
"provider_id": "360276",
"state": "OH",
"score": "0",
"address_1": "8401 MARKET STREET",
"city": "BOARDMAN",
"footnote": "No data are available from the hospital for this measure",
"county_name": "MAHONING"
},
{
"hospital_name": "STAMFORD HOSPITAL",
"phone_number": {
"phone_number": "2032761000"
},
"zip_code": "06904",
"measure": "CAUTI Urinary Catheter Days",
"location": {
"needs_recoding": false,
"longitude": "-73.55381954711135",
"latitude": "41.054853565190456",
"human_address": "{\"address\":\"30 SHELBURNE ROAD\",\"city\":\"STAMFORD\",\"state\":\"CT\",\"zip\":\"06904\"}"
},
"provider_id": "070006",
"state": "CT",
"score": "752",
"address_1": "30 SHELBURNE ROAD",
"city": "STAMFORD",
"county_name": "FAIRFIELD"
},
{
"hospital_name": "STERLING REGIONAL MEDCENTER",
"phone_number": {
"phone_number": "9705220122"
},
"zip_code": "80751",
"measure": "CAUTI Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-103.22060968355828",
"latitude": "40.61364617761586",
"human_address": "{\"address\":\"615 FAIRHURST ST\",\"city\":\"STERLING\",\"state\":\"CO\",\"zip\":\"80751\"}"
},
"provider_id": "060076",
"state": "CO",
"score": "0.160",
"address_1": "615 FAIRHURST ST",
"city": "STERLING",
"footnote": "No data are available from the hospital for this measure",
"county_name": "LOGAN"
},
{
"hospital_name": "GOOD SAMARITAN MEDICAL CENTER",
"phone_number": {
"phone_number": "5084273000"
},
"zip_code": "02301",
"measure": "CAUTI Upper Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-71.06579990817511",
"latitude": "42.097805040736404",
"human_address": "{\"address\":\"235 NORTH PEARL STREET\",\"city\":\"BROCKTON\",\"state\":\"MA\",\"zip\":\"02301\"}"
},
"provider_id": "220111",
"state": "MA",
"score": "3.144",
"address_1": "235 NORTH PEARL STREET",
"city": "BROCKTON",
"county_name": "PLYMOUTH"
},
{
"hospital_name": "TY COBB REGIONAL MEDICAL CENTER, LLC",
"phone_number": {
"phone_number": "7063567800"
},
"zip_code": "30553",
"measure": "SSI: Abdominal Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-83.13286528998228",
"latitude": "34.4385878956982",
"human_address": "{\"address\":\"367 CLEAR CREEK PARKWAY\",\"city\":\"LAVONIA\",\"state\":\"GA\",\"zip\":\"30553\"}"
},
"provider_id": "110027",
"state": "GA",
"score": "0.033",
"address_1": "367 CLEAR CREEK PARKWAY",
"city": "LAVONIA",
"footnote": "No data are available from the hospital for this measure",
"county_name": "FRANKLIN"
},
{
"hospital_name": "UNM HOSPITAL",
"phone_number": {
"phone_number": "5052722111"
},
"zip_code": "87106",
"measure": "Surgical Site Infection from colon surgery (SSI: Colon)",
"location": {
"needs_recoding": false,
"longitude": "-106.61749287974908",
"latitude": "35.08756411773555",
"human_address": "{\"address\":\"2211 LOMAS BOULEVARD NE\",\"city\":\"ALBUQUERQUE\",\"state\":\"NM\",\"zip\":\"87106\"}"
},
"provider_id": "320001",
"state": "NM",
"score": "0.60",
"address_1": "2211 LOMAS BOULEVARD NE",
"city": "ALBUQUERQUE",
"county_name": "BERNALILLO"
},
{
"hospital_name": "PALM BEACH GARDENS MEDICAL CENTER",
"phone_number": {
"phone_number": "5616221411"
},
"zip_code": "33410",
"measure": "Central-Line-Associated Blood Stream Infections (CLABSI)",
"location": {
"needs_recoding": false,
"longitude": "-80.08789771031223",
"latitude": "26.83059179046262",
"human_address": "{\"address\":\"3360 BURNS RD\",\"city\":\"PALM BEACH GARDENS\",\"state\":\"FL\",\"zip\":\"33410\"}"
},
"provider_id": "100176",
"state": "FL",
"score": "0.16",
"address_1": "3360 BURNS RD",
"city": "PALM BEACH GARDENS",
"county_name": "PALM BEACH"
},
{
"hospital_name": "DELTA REGIONAL MEDICAL CENTER",
"phone_number": {
"phone_number": "6623783783"
},
"zip_code": "38704",
"measure": "CLABSI Lower Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-91.03525034416808",
"latitude": "33.40996067451783",
"human_address": "{\"address\":\"1400 E UNION ST\",\"city\":\"GREENVILLE\",\"state\":\"MS\",\"zip\":\"38704\"}"
},
"provider_id": "250082",
"state": "MS",
"score": "1.500",
"address_1": "1400 E UNION ST",
"city": "GREENVILLE",
"county_name": "WASHINGTON"
},
{
"hospital_name": "NASSAU UNIVERSITY MEDICAL CENTER",
"phone_number": {
"phone_number": "5165720123"
},
"zip_code": "11554",
"measure": "CAUTI Urinary Catheter Days",
"location": {
"needs_recoding": false,
"longitude": "-73.55437295462036",
"latitude": "40.725362081832145",
"human_address": "{\"address\":\"2201 HEMPSTEAD TURNPIKE\",\"city\":\"EAST MEADOW\",\"state\":\"NY\",\"zip\":\"11554\"}"
},
"provider_id": "330027",
"state": "NY",
"score": "2489",
"address_1": "2201 HEMPSTEAD TURNPIKE",
"city": "EAST MEADOW",
"county_name": "NASSAU"
},
{
"hospital_name": "NORTH CENTRAL BRONX HOSPITAL",
"phone_number": {
"phone_number": "2125195000"
},
"zip_code": "10467",
"measure": "SSI: Colon, Number of Procedures",
"location": {
"needs_recoding": false,
"longitude": "-73.87185999973906",
"latitude": "40.87334000014107",
"human_address": "{\"address\":\"3424 KOSSUTH AVENUE &amp; 210TH STREET\",\"city\":\"BRONX\",\"state\":\"NY\",\"zip\":\"10467\"}"
},
"provider_id": "330385",
"state": "NY",
"score": "6",
"address_1": "3424 KOSSUTH AVENUE & 210TH STREET",
"city": "BRONX",
"footnote": "No data are available from the hospital for this measure",
"county_name": "BRONX"
},
{
"hospital_name": "ST JOHNS HOSPITAL",
"phone_number": {
"phone_number": "2175446464"
},
"zip_code": "62769",
"measure": "CAUTI Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-89.64365292585973",
"latitude": "39.807215120722276",
"human_address": "{\"address\":\"800 E CARPENTER ST\",\"city\":\"SPRINGFIELD\",\"state\":\"IL\",\"zip\":\"62769\"}"
},
"provider_id": "140053",
"state": "IL",
"score": "14",
"address_1": "800 E CARPENTER ST",
"city": "SPRINGFIELD",
"county_name": "SANGAMON"
},
{
"hospital_name": "UMDNJ UNIVERSITY HOSPITAL",
"phone_number": {
"phone_number": "9739725658"
},
"zip_code": "07103",
"measure": "SSI: Colon Lower Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-74.19241663237352",
"latitude": "40.74018971142079",
"human_address": "{\"address\":\"150 BERGEN ST\",\"city\":\"NEWARK\",\"state\":\"NJ\",\"zip\":\"07103\"}"
},
"provider_id": "310119",
"state": "NJ",
"score": "0.016",
"address_1": "150 BERGEN ST",
"city": "NEWARK",
"county_name": "ESSEX"
},
{
"hospital_name": "FORT HAMILTON HUGHES MEMORIAL HOSPITAL",
"phone_number": {
"phone_number": "5138672000"
},
"zip_code": "45013",
"measure": "CLABSI Upper Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-84.57385089076507",
"latitude": "39.41528158713305",
"human_address": "{\"address\":\"630 EATON AVENUE\",\"city\":\"HAMILTON\",\"state\":\"OH\",\"zip\":\"45013\"}"
},
"provider_id": "360132",
"state": "OH",
"score": "3.085",
"address_1": "630 EATON AVENUE",
"city": "HAMILTON",
"county_name": "BUTLER"
},
{
"hospital_name": "CAROLINAS MED CTR-UNIVERSITY",
"phone_number": {
"phone_number": "7045486000"
},
"zip_code": "28262",
"measure": "CLABSI Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-80.74802943975018",
"latitude": "35.30780862826922",
"human_address": "{\"address\":\"8800 NORTH TYRON STREET\",\"city\":\"CHARLOTTE\",\"state\":\"NC\",\"zip\":\"28262\"}"
},
"provider_id": "340166",
"state": "NC",
"score": "1.476",
"address_1": "8800 NORTH TYRON STREET",
"city": "CHARLOTTE",
"footnote": "The lower limit of the confidence interval cannot be calculated if the number of observed infections equals zero",
"county_name": "MECKLENBURG"
},
{
"hospital_name": "BELTON REGIONAL MEDICAL CENTER",
"phone_number": {
"phone_number": "8163481236"
},
"zip_code": "64012",
"measure": "CLABSI Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-94.5037759794675",
"latitude": "38.81471644529522",
"human_address": "{\"address\":\"17065 S 71 HIGHWAY\",\"city\":\"BELTON\",\"state\":\"MO\",\"zip\":\"64012\"}"
},
"provider_id": "260214",
"state": "MO",
"score": "0.163",
"address_1": "17065 S 71 HIGHWAY",
"city": "BELTON",
"footnote": "No data are available from the hospital for this measure",
"county_name": "CASS"
},
{
"hospital_name": "NORTHERN HOSPITAL OF SURRY COUNTY",
"phone_number": {
"phone_number": "3367197000"
},
"zip_code": "27030",
"measure": "CAUTI Urinary Catheter Days",
"location": {
"needs_recoding": false,
"longitude": "-80.61119521272133",
"latitude": "36.48845602921676",
"human_address": "{\"address\":\"830 ROCKFORD ST\",\"city\":\"MOUNT AIRY\",\"state\":\"NC\",\"zip\":\"27030\"}"
},
"provider_id": "340003",
"state": "NC",
"score": "615",
"address_1": "830 ROCKFORD ST",
"city": "MOUNT AIRY",
"footnote": "No data are available from the hospital for this measure",
"county_name": "SURRY"
},
{
"hospital_name": "BROWARD HEALTH CORAL SPRINGS",
"phone_number": {
"phone_number": "9543443000"
},
"zip_code": "33065",
"measure": "SSI: Abdominal Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-80.25418235352981",
"latitude": "26.268425589947185",
"human_address": "{\"address\":\"3000 CORAL HILLS DR\",\"city\":\"CORAL SPRINGS\",\"state\":\"FL\",\"zip\":\"33065\"}"
},
"provider_id": "100276",
"state": "FL",
"score": "0",
"address_1": "3000 CORAL HILLS DR",
"city": "CORAL SPRINGS",
"footnote": "No data are available from the hospital for this measure",
"county_name": "BROWARD"
},
{
"hospital_name": "MILTON S HERSHEY MEDICAL CENTER",
"phone_number": {
"phone_number": "7175318521"
},
"zip_code": "17033",
"measure": "CLABSI Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-76.67422804032067",
"latitude": "40.26569825545468",
"human_address": "{\"address\":\"500 UNIVERSITY DRIVE\",\"city\":\"HERSHEY\",\"state\":\"PA\",\"zip\":\"17033\"}"
},
"provider_id": "390256",
"state": "PA",
"score": "44.573",
"address_1": "500 UNIVERSITY DRIVE",
"city": "HERSHEY",
"county_name": "DAUPHIN"
},
{
"hospital_name": "FORT WALTON BEACH MEDICAL CENTER",
"phone_number": {
"phone_number": "8508621111"
},
"zip_code": "32547",
"measure": "SSI: Colon Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-86.63209324634278",
"latitude": "30.454616751593676",
"human_address": "{\"address\":\"1000 MAR-WALT DR\",\"city\":\"FORT WALTON BEACH\",\"state\":\"FL\",\"zip\":\"32547\"}"
},
"provider_id": "100223",
"state": "FL",
"score": "2.023",
"address_1": "1000 MAR-WALT DR",
"city": "FORT WALTON BEACH",
"county_name": "OKALOOSA"
},
{
"hospital_name": "BAPTIST MEMORIAL HOSPITAL UNION COUNTY",
"phone_number": {
"phone_number": "6625387631"
},
"zip_code": "38652",
"measure": "CLABSI Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-89.02753831542933",
"latitude": "34.498782830846594",
"human_address": "{\"address\":\"200 HWY 30 WEST\",\"city\":\"NEW ALBANY\",\"state\":\"MS\",\"zip\":\"38652\"}"
},
"provider_id": "250006",
"state": "MS",
"score": "0.133",
"address_1": "200 HWY 30 WEST",
"city": "NEW ALBANY",
"footnote": "No data are available from the hospital for this measure",
"county_name": "UNION"
},
{
"hospital_name": "MEMORIAL HOSPITAL",
"phone_number": {
"phone_number": "7178438623"
},
"zip_code": "17403",
"measure": "SSI: Abdominal, Number of Procedures",
"location": {
"needs_recoding": false,
"longitude": "-76.6938473785138",
"latitude": "39.96756423854646",
"human_address": "{\"address\":\"325 SOUTH BELMONT STREET\",\"city\":\"YORK\",\"state\":\"PA\",\"zip\":\"17403\"}"
},
"provider_id": "390101",
"state": "PA",
"score": "27",
"address_1": "325 SOUTH BELMONT STREET",
"city": "YORK",
"footnote": "No data are available from the hospital for this measure",
"county_name": "YORK"
},
{
"hospital_name": "ST MARYS HOSPITAL AND MEDICAL CENTER",
"phone_number": {
"phone_number": "9702442273"
},
"zip_code": "81502",
"measure": "Surgical Site Infection from colon surgery (SSI: Colon)",
"location": {
"needs_recoding": false,
"longitude": "-108.56144939184338",
"latitude": "39.09050942269192",
"human_address": "{\"address\":\"2635 N 7TH STREET\",\"city\":\"GRAND JUNCTION\",\"state\":\"CO\",\"zip\":\"81502\"}"
},
"provider_id": "060023",
"state": "CO",
"score": "0.70",
"address_1": "2635 N 7TH STREET",
"city": "GRAND JUNCTION",
"county_name": "MESA"
},
{
"hospital_name": "FLETCHER ALLEN HOSPITAL OF VERMONT",
"phone_number": {
"phone_number": "8028470000"
},
"zip_code": "05401",
"measure": "CLABSI Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-73.19654588453136",
"latitude": "44.480676944284085",
"human_address": "{\"address\":\"111 COLCHESTER AVE\",\"city\":\"BURLINGTON\",\"state\":\"VT\",\"zip\":\"05401\"}"
},
"provider_id": "470003",
"state": "VT",
"score": "19.533",
"address_1": "111 COLCHESTER AVE",
"city": "BURLINGTON",
"county_name": "CHITTENDEN"
},
{
"hospital_name": "PRESBYTERIAN HOSPITAL",
"phone_number": {
"phone_number": "5057248386"
},
"zip_code": "87106",
"measure": "SSI: Colon, Number of Procedures",
"location": {
"needs_recoding": false,
"longitude": "-106.63459798474634",
"latitude": "35.08227610420329",
"human_address": "{\"address\":\"1100 CENTRAL AVENUE SE\",\"city\":\"ALBUQUERQUE\",\"state\":\"NM\",\"zip\":\"87106\"}"
},
"provider_id": "320021",
"state": "NM",
"score": "38",
"address_1": "1100 CENTRAL AVENUE SE",
"city": "ALBUQUERQUE",
"footnote": "The lower limit of the confidence interval cannot be calculated if the number of observed infections equals zero",
"county_name": "BERNALILLO"
},
{
"hospital_name": "MEMORIAL MEDICAL CENTER",
"phone_number": {
"phone_number": "2177883000"
},
"zip_code": "62781",
"measure": "SSI: Colon Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-89.65474939938142",
"latitude": "39.80858710848011",
"human_address": "{\"address\":\"701 N FIRST ST\",\"city\":\"SPRINGFIELD\",\"state\":\"IL\",\"zip\":\"62781\"}"
},
"provider_id": "140148",
"state": "IL",
"score": "0",
"address_1": "701 N FIRST ST",
"city": "SPRINGFIELD",
"footnote": "The lower limit of the confidence interval cannot be calculated if the number of observed infections equals zero",
"county_name": "SANGAMON"
},
{
"hospital_name": "MERCY HEALTH CENTER, INC",
"phone_number": {
"phone_number": "4057551515"
},
"zip_code": "73120",
"measure": "CAUTI Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-97.59964276440044",
"latitude": "35.6089721804243",
"human_address": "{\"address\":\"4300 WEST MEMORIAL ROAD\",\"city\":\"OKLAHOMA CITY\",\"state\":\"OK\",\"zip\":\"73120\"}"
},
"provider_id": "370013",
"state": "OK",
"score": "4.385",
"address_1": "4300 WEST MEMORIAL ROAD",
"city": "OKLAHOMA CITY",
"county_name": "OKLAHOMA"
},
{
"hospital_name": "WING MEMORIAL HOSPITAL AND MEDICAL CENTER",
"phone_number": {
"phone_number": "4132837651"
},
"zip_code": "01069",
"measure": "SSI: Abdominal, Number of Procedures",
"location": {
"needs_recoding": false,
"longitude": "-72.34101184483796",
"latitude": "42.16878980356262",
"human_address": "{\"address\":\"40 WRIGHT STREET\",\"city\":\"PALMER\",\"state\":\"MA\",\"zip\":\"01069\"}"
},
"provider_id": "220030",
"state": "MA",
"score": "0",
"address_1": "40 WRIGHT STREET",
"city": "PALMER",
"footnote": "No data are available from the hospital for this measure",
"county_name": "HAMPDEN"
},
{
"hospital_name": "ALHAMBRA HOSPITAL MEDICAL CENTER",
"phone_number": {
"phone_number": "6265701606"
},
"zip_code": "91801",
"measure": "SSI: Colon Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-118.14496667843531",
"latitude": "34.09005410927659",
"human_address": "{\"address\":\"100 S RAYMOND AVE\",\"city\":\"ALHAMBRA\",\"state\":\"CA\",\"zip\":\"91801\"}"
},
"provider_id": "050281",
"state": "CA",
"score": "0.675",
"address_1": "100 S RAYMOND AVE",
"city": "ALHAMBRA",
"footnote": "No data are available from the hospital for this measure",
"county_name": "LOS ANGELES"
},
{
"hospital_name": "CORTLAND REGIONAL MEDICAL CENTER, INC",
"phone_number": {
"phone_number": "6077563500"
},
"zip_code": "13045",
"measure": "SSI: Abdominal Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-76.18617109975361",
"latitude": "42.60890001826141",
"human_address": "{\"address\":\"134 HOMER AVENUE\",\"city\":\"CORTLAND\",\"state\":\"NY\",\"zip\":\"13045\"}"
},
"provider_id": "330175",
"state": "NY",
"score": "0",
"address_1": "134 HOMER AVENUE",
"city": "CORTLAND",
"footnote": "No data are available from the hospital for this measure",
"county_name": "CORTLAND"
},
{
"hospital_name": "JENNIE STUART MEDICAL CENTER",
"phone_number": {
"phone_number": "2708870100"
},
"zip_code": "42240",
"measure": "Catheter-Associated Urinary Tract Infections (CAUTI)",
"location": {
"needs_recoding": false,
"longitude": "-87.4953644161202",
"latitude": "36.8603419585358",
"human_address": "{\"address\":\"320 WEST 18TH STREET\",\"city\":\"HOPKINSVILLE\",\"state\":\"KY\",\"zip\":\"42240\"}"
},
"provider_id": "180051",
"state": "KY",
"score": "2.00",
"address_1": "320 WEST 18TH STREET",
"city": "HOPKINSVILLE",
"county_name": "CHRISTIAN"
},
{
"hospital_name": "INDIANA UNIVERSITY HEALTH PAOLI HOSPITAL",
"phone_number": {
"phone_number": "8127232811"
},
"zip_code": "47454",
"measure": "SSI: Abdominal Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-86.47386652850776",
"latitude": "38.56825513383683",
"human_address": "{\"address\":\"642 W HOSPITAL RD\",\"city\":\"PAOLI\",\"state\":\"IN\",\"zip\":\"47454\"}"
},
"provider_id": "151306",
"state": "IN",
"score": "0.000",
"address_1": "642 W HOSPITAL RD",
"city": "PAOLI",
"footnote": "No data are available from the hospital for this measure",
"county_name": "ORANGE"
},
{
"hospital_name": "BAYLOR ALL SAINTS MEDICAL CENTER AT FW",
"phone_number": {
"phone_number": "8179262544"
},
"zip_code": "76104",
"measure": "SSI: Colon, Number of Procedures",
"location": {
"needs_recoding": false,
"longitude": "-97.34378303903071",
"latitude": "32.73044107894026",
"human_address": "{\"address\":\"1400 EIGHTH AVE\",\"city\":\"FORT WORTH\",\"state\":\"TX\",\"zip\":\"76104\"}"
},
"provider_id": "450137",
"state": "TX",
"score": "60",
"address_1": "1400 EIGHTH AVE",
"city": "FORT WORTH",
"county_name": "TARRANT"
},
{
"hospital_name": "FRANK R HOWARD MEMORIAL HOSPITAL",
"phone_number": {
"phone_number": "7074596801"
},
"zip_code": "95490",
"measure": "SSI: Colon Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-123.3506023128354",
"latitude": "39.40087444822365",
"human_address": "{\"address\":\"1 MADRONE STREET\",\"city\":\"WILLITS\",\"state\":\"CA\",\"zip\":\"95490\"}"
},
"provider_id": "051310",
"state": "CA",
"score": "0",
"address_1": "1 MADRONE STREET",
"city": "WILLITS",
"footnote": "No data are available from the hospital for this measure",
"county_name": "MENDOCINO"
},
{
"hospital_name": "INDIAN PATH MEDICAL CENTER",
"phone_number": {
"phone_number": "4234311941"
},
"zip_code": "37660",
"measure": "SSI: Colon Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-82.51782983349386",
"latitude": "36.5507043219757",
"human_address": "{\"address\":\"2000 BROOKSIDE DR\",\"city\":\"KINGSPORT\",\"state\":\"TN\",\"zip\":\"37660\"}"
},
"provider_id": "440176",
"state": "TN",
"score": "0.052",
"address_1": "2000 BROOKSIDE DR",
"city": "KINGSPORT",
"footnote": "No data are available from the hospital for this measure",
"county_name": "SULLIVAN"
},
{
"hospital_name": "UKIAH VALLEY MEDICAL CENTER/HOSPITAL D",
"phone_number": {
"phone_number": "7074623111"
},
"zip_code": "95482",
"measure": "SSI: Abdominal Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-123.20291564918375",
"latitude": "39.15407350372283",
"human_address": "{\"address\":\"275 HOSPITAL DRIVE\",\"city\":\"UKIAH\",\"state\":\"CA\",\"zip\":\"95482\"}"
},
"provider_id": "050301",
"state": "CA",
"score": "0.067",
"address_1": "275 HOSPITAL DRIVE",
"city": "UKIAH",
"footnote": "No data are available from the hospital for this measure",
"county_name": "MENDOCINO"
},
{
"hospital_name": "ALICE HYDE MEDICAL CENTER",
"phone_number": {
"phone_number": "5184833000"
},
"zip_code": "12953",
"measure": "SSI: Abdominal Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-74.29196781824331",
"latitude": "44.856863626787884",
"human_address": "{\"address\":\"133 PARK STREET\",\"city\":\"MALONE\",\"state\":\"NY\",\"zip\":\"12953\"}"
},
"provider_id": "330084",
"state": "NY",
"score": "0",
"address_1": "133 PARK STREET",
"city": "MALONE",
"footnote": "No data are available from the hospital for this measure",
"county_name": "FRANKLIN"
},
{
"hospital_name": "RIVER REGION HEALTH SYSTEM",
"phone_number": {
"phone_number": "6018835000"
},
"zip_code": "39183",
"measure": "Central-Line-Associated Blood Stream Infections (CLABSI)",
"location": {
"needs_recoding": false,
"longitude": "-90.82750405691363",
"latitude": "32.37319464053748",
"human_address": "{\"address\":\"2100 HWY 61 N\",\"city\":\"VICKSBURG\",\"state\":\"MS\",\"zip\":\"39183\"}"
},
"provider_id": "250031",
"state": "MS",
"score": "0.75",
"address_1": "2100 HWY 61 N",
"city": "VICKSBURG",
"county_name": "WARREN"
},
{
"hospital_name": "ALAMEDA HOSPITAL",
"phone_number": {
"phone_number": "5105223700"
},
"zip_code": "94501",
"measure": "CAUTI Urinary Catheter Days",
"location": {
"needs_recoding": false,
"longitude": "-122.25422084047517",
"latitude": "37.763487822697414",
"human_address": "{\"address\":\"2070 CLINTON AVE\",\"city\":\"ALAMEDA\",\"state\":\"CA\",\"zip\":\"94501\"}"
},
"provider_id": "050211",
"state": "CA",
"score": "405",
"address_1": "2070 CLINTON AVE",
"city": "ALAMEDA",
"footnote": "No data are available from the hospital for this measure",
"county_name": "ALAMEDA"
},
{
"hospital_name": "PALMETTO HEALTH BAPTIST",
"phone_number": {
"phone_number": "8032965678"
},
"zip_code": "29220",
"measure": "CAUTI Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-81.03412999999932",
"latitude": "34.00715999973437",
"human_address": "{\"address\":\"TAYLOR AT MARION ST\",\"city\":\"COLUMBIA\",\"state\":\"SC\",\"zip\":\"29220\"}"
},
"provider_id": "420086",
"state": "SC",
"score": "2",
"address_1": "TAYLOR AT MARION ST",
"city": "COLUMBIA",
"county_name": "RICHLAND"
},
{
"hospital_name": "WILLIAM W BACKUS HOSPITAL",
"phone_number": {
"phone_number": "8608898331"
},
"zip_code": "06360",
"measure": "SSI: Colon Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-72.08689360600455",
"latitude": "41.543482865842805",
"human_address": "{\"address\":\"326 WASHINGTON ST\",\"city\":\"NORWICH\",\"state\":\"CT\",\"zip\":\"06360\"}"
},
"provider_id": "070024",
"state": "CT",
"score": "1.910",
"address_1": "326 WASHINGTON ST",
"city": "NORWICH",
"footnote": "The lower limit of the confidence interval cannot be calculated if the number of observed infections equals zero",
"county_name": "NEW LONDON"
},
{
"hospital_name": "EXETER HOSPITAL INC",
"phone_number": {
"phone_number": "6037787311"
},
"zip_code": "03833",
"measure": "CLABSI Lower Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-70.9360429407273",
"latitude": "42.98183454167952",
"human_address": "{\"address\":\"5 ALUMNI DRIVE\",\"city\":\"EXETER\",\"state\":\"NH\",\"zip\":\"03833\"}"
},
"provider_id": "300023",
"state": "NH",
"score": "0.117",
"address_1": "5 ALUMNI DRIVE",
"city": "EXETER",
"county_name": "ROCKINGHAM"
},
{
"hospital_name": "ST RITA'S MEDICAL CENTER",
"phone_number": {
"phone_number": "4192273361"
},
"zip_code": "45801",
"measure": "CLABSI Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-84.1191266930901",
"latitude": "40.740063875274586",
"human_address": "{\"address\":\"730 WEST MARKET STREET\",\"city\":\"LIMA\",\"state\":\"OH\",\"zip\":\"45801\"}"
},
"provider_id": "360066",
"state": "OH",
"score": "0",
"address_1": "730 WEST MARKET STREET",
"city": "LIMA",
"footnote": "The lower limit of the confidence interval cannot be calculated if the number of observed infections equals zero",
"county_name": "ALLEN"
},
{
"hospital_name": "BERWICK HOSPITAL CENTER",
"phone_number": {
"phone_number": "5707595000"
},
"zip_code": "18603",
"measure": "CAUTI Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-76.23104578390145",
"latitude": "41.07015327624766",
"human_address": "{\"address\":\"701 EAST 16TH STREET\",\"city\":\"BERWICK\",\"state\":\"PA\",\"zip\":\"18603\"}"
},
"provider_id": "390072",
"state": "PA",
"score": "0",
"address_1": "701 EAST 16TH STREET",
"city": "BERWICK",
"footnote": "No data are available from the hospital for this measure",
"county_name": "COLUMBIA"
},
{
"hospital_name": "COOPER UNIVERSITY HOSPITAL",
"phone_number": {
"phone_number": "8563422000"
},
"zip_code": "08103",
"measure": "SSI: Colon Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-75.11576640721717",
"latitude": "39.940855965504724",
"human_address": "{\"address\":\"1 COOPER PLAZA\",\"city\":\"CAMDEN\",\"state\":\"NJ\",\"zip\":\"08103\"}"
},
"provider_id": "310014",
"state": "NJ",
"score": "2.465",
"address_1": "1 COOPER PLAZA",
"city": "CAMDEN",
"county_name": "CAMDEN"
},
{
"hospital_name": "NW ARKANSAS HOSPITALS, LLC",
"phone_number": {
"phone_number": "4797515711"
},
"zip_code": "72764",
"measure": "SSI: Abdominal, Number of Procedures",
"location": {
"needs_recoding": false,
"longitude": "-94.13664779780191",
"latitude": "36.181364535871694",
"human_address": "{\"address\":\"609 WEST MAPLE AVENUE\",\"city\":\"SPRINGDALE\",\"state\":\"AR\",\"zip\":\"72764\"}"
},
"provider_id": "040022",
"state": "AR",
"score": "51",
"address_1": "609 WEST MAPLE AVENUE",
"city": "SPRINGDALE",
"footnote": "No data are available from the hospital for this measure",
"county_name": "WASHINGTON"
},
{
"hospital_name": "LEE MEMORIAL HOSPITAL",
"phone_number": {
"phone_number": "2393321111"
},
"zip_code": "33901",
"measure": "CAUTI Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-81.87236560459874",
"latitude": "26.62674242007896",
"human_address": "{\"address\":\"2776 CLEVELAND AVE\",\"city\":\"FORT MYERS\",\"state\":\"FL\",\"zip\":\"33901\"}"
},
"provider_id": "100012",
"state": "FL",
"score": "17.906",
"address_1": "2776 CLEVELAND AVE",
"city": "FORT MYERS",
"county_name": "LEE"
},
{
"hospital_name": "UNIONTOWN HOSPITAL",
"phone_number": {
"phone_number": "7244305000"
},
"zip_code": "15401",
"measure": "SSI: Colon, Number of Procedures",
"location": {
"needs_recoding": false,
"longitude": "-79.73786011965987",
"latitude": "39.90234361863595",
"human_address": "{\"address\":\"500 WEST BERKELEY STREET\",\"city\":\"UNIONTOWN\",\"state\":\"PA\",\"zip\":\"15401\"}"
},
"provider_id": "390041",
"state": "PA",
"score": "53",
"address_1": "500 WEST BERKELEY STREET",
"city": "UNIONTOWN",
"county_name": "FAYETTE"
},
{
"hospital_name": "MARY IMMACULATE HOSPITAL",
"phone_number": {
"phone_number": "7578866768"
},
"zip_code": "23602",
"measure": "CAUTI Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-76.52323699633524",
"latitude": "37.1045635650496",
"human_address": "{\"address\":\"2 BERNARDINE DRIVE\",\"city\":\"NEWPORT NEWS\",\"state\":\"VA\",\"zip\":\"23602\"}"
},
"provider_id": "490041",
"state": "VA",
"score": "0",
"address_1": "2 BERNARDINE DRIVE",
"city": "NEWPORT NEWS",
"footnote": "The lower limit of the confidence interval cannot be calculated if the number of observed infections equals zero",
"county_name": "NEWPORT NEWS CITY"
},
{
"hospital_name": "PHYSICIAN'S CARE SURGICAL HOSPITAL",
"phone_number": {
"phone_number": "6104954793"
},
"zip_code": "19468",
"measure": "SSI: Colon Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-75.5550422203245",
"latitude": "40.217134871132195",
"human_address": "{\"address\":\"454 ENTERPRISE DRIVE\",\"city\":\"ROYERSFORD\",\"state\":\"PA\",\"zip\":\"19468\"}"
},
"provider_id": "390324",
"state": "PA",
"score": "0.057",
"address_1": "454 ENTERPRISE DRIVE",
"city": "ROYERSFORD",
"footnote": "No data are available from the hospital for this measure",
"county_name": "MONTGOMERY"
},
{
"hospital_name": "LIBERTYHEALTH-JERSEY CITY MEDICAL CENTER CAMPUS",
"phone_number": {
"phone_number": "2019152000"
},
"zip_code": "07302",
"measure": "SSI: Abdominal, Number of Procedures",
"location": {
"needs_recoding": false,
"longitude": "-74.050676981859",
"latitude": "40.7167354618345",
"human_address": "{\"address\":\"355 GRAND STREET\",\"city\":\"JERSEY CITY\",\"state\":\"NJ\",\"zip\":\"07302\"}"
},
"provider_id": "310074",
"state": "NJ",
"score": "9",
"address_1": "355 GRAND STREET",
"city": "JERSEY CITY",
"footnote": "No data are available from the hospital for this measure",
"county_name": "HUDSON"
},
{
"hospital_name": "ST JOSEPH'S REGIONAL MEDICAL CENTER",
"phone_number": {
"phone_number": "9737542000"
},
"zip_code": "07503",
"measure": "CAUTI Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-74.16689524663126",
"latitude": "40.90270531470338",
"human_address": "{\"address\":\"703 MAIN ST\",\"city\":\"PATERSON\",\"state\":\"NJ\",\"zip\":\"07503\"}"
},
"provider_id": "310019",
"state": "NJ",
"score": "25",
"address_1": "703 MAIN ST",
"city": "PATERSON",
"county_name": "PASSAIC"
},
{
"hospital_name": "LICKING MEMORIAL HOSPITAL",
"phone_number": {
"phone_number": "7403484000"
},
"zip_code": "43055",
"measure": "CLABSI Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-82.45093828806034",
"latitude": "40.04675853644659",
"human_address": "{\"address\":\"1320 WEST MAIN STREET\",\"city\":\"NEWARK\",\"state\":\"OH\",\"zip\":\"43055\"}"
},
"provider_id": "360218",
"state": "OH",
"score": "0.939",
"address_1": "1320 WEST MAIN STREET",
"city": "NEWARK",
"footnote": "No data are available from the hospital for this measure",
"county_name": "LICKING"
},
{
"hospital_name": "PHOEBE SUMTER MEDICAL CENTER",
"phone_number": {
"phone_number": "2299311280"
},
"zip_code": "31719",
"measure": "CAUTI Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-84.25927602309213",
"latitude": "32.06330588599723",
"human_address": "{\"address\":\"126 HIGHWAY 280 W\",\"city\":\"AMERICUS\",\"state\":\"GA\",\"zip\":\"31719\"}"
},
"provider_id": "110044",
"state": "GA",
"score": "0",
"address_1": "126 HIGHWAY 280 W",
"city": "AMERICUS",
"footnote": "No data are available from the hospital for this measure",
"county_name": "SUMTER"
},
{
"hospital_name": "ST MARY'S MEDICAL CENTER",
"phone_number": {
"phone_number": "4156681000"
},
"zip_code": "94117",
"measure": "SSI: Abdominal Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-122.45441891741768",
"latitude": "37.773659154848815",
"human_address": "{\"address\":\"450 STANYAN ST\",\"city\":\"SAN FRANCISCO\",\"state\":\"CA\",\"zip\":\"94117\"}"
},
"provider_id": "050457",
"state": "CA",
"score": "0",
"address_1": "450 STANYAN ST",
"city": "SAN FRANCISCO",
"footnote": "No data are available from the hospital for this measure",
"county_name": "SAN FRANCISCO"
},
{
"hospital_name": "ST LUKE'S HOSPITAL AT THE VINTAGE, LLC",
"phone_number": {
"phone_number": "8325345000"
},
"zip_code": "77070",
"measure": "CAUTI Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-95.57435784855576",
"latitude": "29.990715301983887",
"human_address": "{\"address\":\"20171 CHASEWOOD PARK DRIVE\",\"city\":\"HOUSTON\",\"state\":\"TX\",\"zip\":\"77070\"}"
},
"provider_id": "670075",
"state": "TX",
"score": "0.723",
"address_1": "20171 CHASEWOOD PARK DRIVE",
"city": "HOUSTON",
"footnote": "No data are available from the hospital for this measure",
"county_name": "HARRIS"
},
{
"hospital_name": "SEBASTIAN RIVER MEDICAL CENTER",
"phone_number": {
"phone_number": "7725893187"
},
"zip_code": "32978",
"measure": "CAUTI Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-80.48779024386079",
"latitude": "27.843138463251478",
"human_address": "{\"address\":\"13695 US HWY 1\",\"city\":\"SEBASTIAN\",\"state\":\"FL\",\"zip\":\"32978\"}"
},
"provider_id": "100217",
"state": "FL",
"score": "0",
"address_1": "13695 US HWY 1",
"city": "SEBASTIAN",
"footnote": "No data are available from the hospital for this measure",
"county_name": "INDIAN RIVER"
},
{
"hospital_name": "LICKING MEMORIAL HOSPITAL",
"phone_number": {
"phone_number": "7403484000"
},
"zip_code": "43055",
"measure": "SSI: Colon, Number of Procedures",
"location": {
"needs_recoding": false,
"longitude": "-82.45093828806034",
"latitude": "40.04675853644659",
"human_address": "{\"address\":\"1320 WEST MAIN STREET\",\"city\":\"NEWARK\",\"state\":\"OH\",\"zip\":\"43055\"}"
},
"provider_id": "360218",
"state": "OH",
"score": "36",
"address_1": "1320 WEST MAIN STREET",
"city": "NEWARK",
"county_name": "LICKING"
},
{
"hospital_name": "SARATOGA HOSPITAL",
"phone_number": {
"phone_number": "5185873222"
},
"zip_code": "12866",
"measure": "SSI: Colon Lower Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-73.7969602509529",
"latitude": "43.084794256506086",
"human_address": "{\"address\":\"211 CHURCH STREET\",\"city\":\"SARATOGA SPRINGS\",\"state\":\"NY\",\"zip\":\"12866\"}"
},
"provider_id": "330222",
"state": "NY",
"score": "0.147",
"address_1": "211 CHURCH STREET",
"city": "SARATOGA SPRINGS",
"county_name": "SARATOGA"
},
{
"hospital_name": "RANDOLPH HOSPITAL",
"phone_number": {
"phone_number": "3366255151"
},
"zip_code": "27204",
"measure": "CLABSI Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-79.81483961412847",
"latitude": "35.711608729696245",
"human_address": "{\"address\":\"364 WHITE OAK STREET\",\"city\":\"ASHEBORO\",\"state\":\"NC\",\"zip\":\"27204\"}"
},
"provider_id": "340123",
"state": "NC",
"score": "1.230",
"address_1": "364 WHITE OAK STREET",
"city": "ASHEBORO",
"footnote": "The lower limit of the confidence interval cannot be calculated if the number of observed infections equals zero",
"county_name": "RANDOLPH"
},
{
"hospital_name": "PENNSYLVANIA HOSP OF THE UNIV OF PA HEALTH SYS",
"phone_number": {
"phone_number": "2158293000"
},
"zip_code": "19107",
"measure": "SSI: Abdominal, Number of Procedures",
"location": {
"needs_recoding": false,
"longitude": "-75.15552107451492",
"latitude": "39.94579165221711",
"human_address": "{\"address\":\"800 SPRUCE STREET\",\"city\":\"PHILADELPHIA\",\"state\":\"PA\",\"zip\":\"19107\"}"
},
"provider_id": "390226",
"state": "PA",
"score": "170",
"address_1": "800 SPRUCE STREET",
"city": "PHILADELPHIA",
"county_name": "PHILADELPHIA"
},
{
"hospital_name": "JENNINGS AMERICAN LEGION HOSPITAL",
"phone_number": {
"phone_number": "3376167000"
},
"zip_code": "70546",
"measure": "CAUTI Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-92.66336895184793",
"latitude": "30.238013790217092",
"human_address": "{\"address\":\"1634 ELTON ROAD\",\"city\":\"JENNINGS\",\"state\":\"LA\",\"zip\":\"70546\"}"
},
"provider_id": "190053",
"state": "LA",
"score": "3",
"address_1": "1634 ELTON ROAD",
"city": "JENNINGS",
"footnote": "No data are available from the hospital for this measure",
"county_name": "JEFFERSON DAVIS"
},
{
"hospital_name": "MEMORIAL HOSPITAL MIRAMAR",
"phone_number": {
"phone_number": "9545384810"
},
"zip_code": "33029",
"measure": "SSI: Colon Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-80.37596890717896",
"latitude": "25.991039349833894",
"human_address": "{\"address\":\"1901 SW 172ND AVE\",\"city\":\"MIRAMAR\",\"state\":\"FL\",\"zip\":\"33029\"}"
},
"provider_id": "100285",
"state": "FL",
"score": "0.842",
"address_1": "1901 SW 172ND AVE",
"city": "MIRAMAR",
"footnote": "No data are available from the hospital for this measure",
"county_name": "BROWARD"
},
{
"hospital_name": "ST JOSEPH'S HOSPITAL",
"phone_number": {
"phone_number": "6512323000"
},
"zip_code": "55102",
"measure": "SSI: Colon Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-93.0999347374934",
"latitude": "44.94922016212539",
"human_address": "{\"address\":\"45 WEST 10TH STREET\",\"city\":\"SAINT PAUL\",\"state\":\"MN\",\"zip\":\"55102\"}"
},
"provider_id": "240063",
"state": "MN",
"score": "1.492",
"address_1": "45 WEST 10TH STREET",
"city": "SAINT PAUL",
"county_name": "RAMSEY"
},
{
"hospital_name": "MAGEE WOMENS HOSPITAL OF UPMC HEALTH SYSTEM",
"phone_number": {
"phone_number": "4126414010"
},
"zip_code": "15213",
"measure": "CAUTI Lower Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-79.95836835843215",
"latitude": "40.436111015811775",
"human_address": "{\"address\":\"300 HALKET STREET\",\"city\":\"PITTSBURGH\",\"state\":\"PA\",\"zip\":\"15213\"}"
},
"provider_id": "390114",
"state": "PA",
"score": "0.156",
"address_1": "300 HALKET STREET",
"city": "PITTSBURGH",
"county_name": "ALLEGHENY"
},
{
"hospital_name": "LAKESIDE MEDICAL CENTER",
"phone_number": {
"phone_number": "5619966571"
},
"zip_code": "33430",
"measure": "SSI: Abdominal Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-80.67100912089006",
"latitude": "26.72564090964329",
"human_address": "{\"address\":\"39200 HOOKER HWY\",\"city\":\"BELLE GLADE\",\"state\":\"FL\",\"zip\":\"33430\"}"
},
"provider_id": "100130",
"state": "FL",
"score": "0.095",
"address_1": "39200 HOOKER HWY",
"city": "BELLE GLADE",
"footnote": "No data are available from the hospital for this measure",
"county_name": "PALM BEACH"
},
{
"hospital_name": "BEAR RIVER VALLEY HOSPITAL",
"phone_number": {
"phone_number": "4352074500"
},
"zip_code": "84337",
"measure": "SSI: Abdominal Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-112.18145152484756",
"latitude": "41.72336286054258",
"human_address": "{\"address\":\"905 NORTH 1000 WEST\",\"city\":\"TREMONTON\",\"state\":\"UT\",\"zip\":\"84337\"}"
},
"provider_id": "460039",
"state": "UT",
"score": "0",
"address_1": "905 NORTH 1000 WEST",
"city": "TREMONTON",
"footnote": "No data are available from the hospital for this measure",
"county_name": "BOX ELDER"
},
{
"hospital_name": "CENTENNIAL MEDICAL CENTER",
"phone_number": {
"phone_number": "9729633333"
},
"zip_code": "75035",
"measure": "SSI: Abdominal, Number of Procedures",
"location": {
"needs_recoding": false,
"longitude": "-96.77095087924778",
"latitude": "33.11585452781708",
"human_address": "{\"address\":\"12505 LEBANON ROAD\",\"city\":\"FRISCO\",\"state\":\"TX\",\"zip\":\"75035\"}"
},
"provider_id": "450885",
"state": "TX",
"score": "12",
"address_1": "12505 LEBANON ROAD",
"city": "FRISCO",
"footnote": "No data are available from the hospital for this measure",
"county_name": "COLLIN"
},
{
"hospital_name": "ANNA JAQUES HOSPITAL",
"phone_number": {
"phone_number": "9784631000"
},
"zip_code": "01950",
"measure": "SSI: Colon, Number of Procedures",
"location": {
"needs_recoding": false,
"longitude": "-70.89063798520817",
"latitude": "42.814835117854685",
"human_address": "{\"address\":\"25 HIGHLAND AVENUE\",\"city\":\"NEWBURYPORT\",\"state\":\"MA\",\"zip\":\"01950\"}"
},
"provider_id": "220029",
"state": "MA",
"score": "21",
"address_1": "25 HIGHLAND AVENUE",
"city": "NEWBURYPORT",
"footnote": "No data are available from the hospital for this measure",
"county_name": "ESSEX"
},
{
"hospital_name": "HEALTH CENTER NORTHWEST",
"phone_number": {
"phone_number": "4067517550"
},
"zip_code": "59901",
"measure": "SSI: Colon, Number of Procedures",
"location": {
"needs_recoding": false,
"longitude": "-114.32400817932808",
"latitude": "48.21619085738752",
"human_address": "{\"address\":\"320 SUNNYVIEW LANE\",\"city\":\"KALISPELL\",\"state\":\"MT\",\"zip\":\"59901\"}"
},
"provider_id": "270087",
"state": "MT",
"score": "5",
"address_1": "320 SUNNYVIEW LANE",
"city": "KALISPELL",
"footnote": "No data are available from the hospital for this measure",
"county_name": "FLATHEAD"
},
{
"hospital_name": "MEDICAL PARK HOSPITAL",
"phone_number": {
"phone_number": "3367180600"
},
"zip_code": "27103",
"measure": "SSI: Colon Lower Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-80.29569505840232",
"latitude": "36.078194312670405",
"human_address": "{\"address\":\"1950 S HAWTHORNE RD\",\"city\":\"WINSTON-SALEM\",\"state\":\"NC\",\"zip\":\"27103\"}"
},
"provider_id": "340148",
"state": "NC",
"score": "0.009",
"address_1": "1950 S HAWTHORNE RD",
"city": "WINSTON-SALEM",
"county_name": "FORSYTH"
},
{
"hospital_name": "INDIANA UNIVERSITY HEALTH",
"phone_number": {
"phone_number": "3179625900"
},
"zip_code": "46206",
"measure": "Surgical Site Infection from abdominal hysterectomy (SSI: Hysterectomy)",
"location": {
"needs_recoding": false,
"longitude": "-86.16548622843966",
"latitude": "39.78972259800849",
"human_address": "{\"address\":\"1701 N SENATE BLVD\",\"city\":\"INDIANAPOLIS\",\"state\":\"IN\",\"zip\":\"46206\"}"
},
"provider_id": "150056",
"state": "IN",
"score": "2.17",
"address_1": "1701 N SENATE BLVD",
"city": "INDIANAPOLIS",
"county_name": "MARION"
},
{
"hospital_name": "GRIFFIN HOSPITAL",
"phone_number": {
"phone_number": "2037327500"
},
"zip_code": "06418",
"measure": "CLABSI Lower Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-73.08011156210671",
"latitude": "41.329713470342575",
"human_address": "{\"address\":\"130 DIVISION ST\",\"city\":\"DERBY\",\"state\":\"CT\",\"zip\":\"06418\"}"
},
"provider_id": "070031",
"state": "CT",
"score": "0.021",
"address_1": "130 DIVISION ST",
"city": "DERBY",
"county_name": "NEW HAVEN"
},
{
"hospital_name": "FLAGET MEMORIAL HOSPITAL (MEMBER OF SAINT JOSEPH H",
"phone_number": {
"phone_number": "5023505000"
},
"zip_code": "40004",
"measure": "SSI: Colon Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-85.52280721824621",
"latitude": "37.86307365569437",
"human_address": "{\"address\":\"4305 NEW SHEPHERDSVILLE ROAD\",\"city\":\"BARDSTOWN\",\"state\":\"KY\",\"zip\":\"40004\"}"
},
"provider_id": "180025",
"state": "KY",
"score": "0.221",
"address_1": "4305 NEW SHEPHERDSVILLE ROAD",
"city": "BARDSTOWN",
"footnote": "No data are available from the hospital for this measure",
"county_name": "NELSON"
},
{
"hospital_name": "BRONSON METHODIST HOSPITAL",
"phone_number": {
"phone_number": "2693416000"
},
"zip_code": "49007",
"measure": "Surgical Site Infection from colon surgery (SSI: Colon)",
"location": {
"needs_recoding": false,
"longitude": "-85.58195311534479",
"latitude": "42.28484644798493",
"human_address": "{\"address\":\"601 JOHN STREET\",\"city\":\"KALAMAZOO\",\"state\":\"MI\",\"zip\":\"49007\"}"
},
"provider_id": "230017",
"state": "MI",
"score": "2.14",
"address_1": "601 JOHN STREET",
"city": "KALAMAZOO",
"county_name": "KALAMAZOO"
},
{
"hospital_name": "NORTH TEXAS MEDICAL CENTER",
"phone_number": {
"phone_number": "9406128600"
},
"zip_code": "76240",
"measure": "CAUTI Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-97.16237776933777",
"latitude": "33.64612188418418",
"human_address": "{\"address\":\"1900 HOSPITAL BLVD\",\"city\":\"GAINESVILLE\",\"state\":\"TX\",\"zip\":\"76240\"}"
},
"provider_id": "450090",
"state": "TX",
"score": "0",
"address_1": "1900 HOSPITAL BLVD",
"city": "GAINESVILLE",
"footnote": "No data are available from the hospital for this measure",
"county_name": "COOKE"
},
{
"hospital_name": "SAINT ANTHONY'S HEALTH CENTER",
"phone_number": {
"phone_number": "6184652571"
},
"zip_code": "62002",
"measure": "CAUTI Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-90.15742999959468",
"latitude": "38.91171000011656",
"human_address": "{\"address\":\"ST ANTHONY'S WAY\",\"city\":\"ALTON\",\"state\":\"IL\",\"zip\":\"62002\"}"
},
"provider_id": "140052",
"state": "IL",
"score": "0.824",
"address_1": "ST ANTHONY'S WAY",
"city": "ALTON",
"footnote": "No data are available from the hospital for this measure",
"county_name": "MADISON"
},
{
"hospital_name": "LAKE CHARLES MEMORIAL HOSPITAL",
"phone_number": {
"phone_number": "3374943200"
},
"zip_code": "70601",
"measure": "SSI: Colon Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-93.19702714836899",
"latitude": "30.203508054572524",
"human_address": "{\"address\":\"1701 OAK PARK BLVD\",\"city\":\"LAKE CHARLES\",\"state\":\"LA\",\"zip\":\"70601\"}"
},
"provider_id": "190060",
"state": "LA",
"score": "0",
"address_1": "1701 OAK PARK BLVD",
"city": "LAKE CHARLES",
"footnote": "No data are available from the hospital for this measure",
"county_name": "CALCASIEU"
},
{
"hospital_name": "NORTHSIDE HOSPITAL CHEROKEE",
"phone_number": {
"phone_number": "7707205298"
},
"zip_code": "30114",
"measure": "CAUTI Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-84.49212949796254",
"latitude": "34.24575373220932",
"human_address": "{\"address\":\"201 HOSPITAL ROAD\",\"city\":\"CANTON\",\"state\":\"GA\",\"zip\":\"30114\"}"
},
"provider_id": "110008",
"state": "GA",
"score": "1",
"address_1": "201 HOSPITAL ROAD",
"city": "CANTON",
"county_name": "CHEROKEE"
},
{
"hospital_name": "WILLIS KNIGHTON BOSSIER HEALTH CENTER",
"phone_number": {
"phone_number": "3182127000"
},
"zip_code": "71111",
"measure": "CAUTI Lower Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-93.71734789486106",
"latitude": "32.55754641880736",
"human_address": "{\"address\":\"2400 HOSPITAL DR\",\"city\":\"BOSSIER CITY\",\"state\":\"LA\",\"zip\":\"71111\"}"
},
"provider_id": "190236",
"state": "LA",
"score": "0.520",
"address_1": "2400 HOSPITAL DR",
"city": "BOSSIER CITY",
"county_name": "BOSSIER"
},
{
"hospital_name": "MEDSTAR SAINT MARY'S HOSPITAL",
"phone_number": {
"phone_number": "3014756001"
},
"zip_code": "20650",
"measure": "SSI: Colon Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-76.64006820592611",
"latitude": "38.299200834862376",
"human_address": "{\"address\":\"25500 POINT LOOKOUT ROAD\",\"city\":\"LEONARDTOWN\",\"state\":\"MD\",\"zip\":\"20650\"}"
},
"provider_id": "210028",
"state": "MD",
"score": "0.429",
"address_1": "25500 POINT LOOKOUT ROAD",
"city": "LEONARDTOWN",
"footnote": "No data are available from the hospital for this measure",
"county_name": "SAINT MARYS"
},
{
"hospital_name": "BRONX-LEBANON HOSPITAL CENTER",
"phone_number": {
"phone_number": "2125887000"
},
"zip_code": "10456",
"measure": "SSI: Colon Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-73.90378172159313",
"latitude": "40.83164183751819",
"human_address": "{\"address\":\"1276 FULTON AVENUE\",\"city\":\"BRONX\",\"state\":\"NY\",\"zip\":\"10456\"}"
},
"provider_id": "330009",
"state": "NY",
"score": "1.353",
"address_1": "1276 FULTON AVENUE",
"city": "BRONX",
"footnote": "The lower limit of the confidence interval cannot be calculated if the number of observed infections equals zero",
"county_name": "BRONX"
},
{
"hospital_name": "HARDIN MEMORIAL HOSPITAL",
"phone_number": {
"phone_number": "2707371212"
},
"zip_code": "42701",
"measure": "SSI: Abdominal Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-85.87530457226393",
"latitude": "37.710444762960535",
"human_address": "{\"address\":\"913 NORTH DIXIE AVENUE\",\"city\":\"ELIZABETHTOWN\",\"state\":\"KY\",\"zip\":\"42701\"}"
},
"provider_id": "180012",
"state": "KY",
"score": "0",
"address_1": "913 NORTH DIXIE AVENUE",
"city": "ELIZABETHTOWN",
"footnote": "No data are available from the hospital for this measure",
"county_name": "HARDIN"
},
{
"hospital_name": "HIGGINS GENERAL HOSPITAL",
"phone_number": {
"phone_number": "7708242210"
},
"zip_code": "30110",
"measure": "SSI: Colon, Number of Procedures",
"location": {
"needs_recoding": false,
"longitude": "-85.14439877259355",
"latitude": "33.716457751864766",
"human_address": "{\"address\":\"200 ALLEN MEMORIAL DRIVE\",\"city\":\"BREMEN\",\"state\":\"GA\",\"zip\":\"30110\"}"
},
"provider_id": "111320",
"state": "GA",
"score": "4",
"address_1": "200 ALLEN MEMORIAL DRIVE",
"city": "BREMEN",
"footnote": "No data are available from the hospital for this measure",
"county_name": "HARALSON"
},
{
"hospital_name": "ST FRANCIS HOSPITAL",
"phone_number": {
"phone_number": "3024214100"
},
"zip_code": "19805",
"measure": "SSI: Abdominal, Number of Procedures",
"location": {
"needs_recoding": false,
"longitude": "-75.58304999975752",
"latitude": "39.7442000003299",
"human_address": "{\"address\":\"7TH AND CLAYTON STS\",\"city\":\"WILMINGTON\",\"state\":\"DE\",\"zip\":\"19805\"}"
},
"provider_id": "080003",
"state": "DE",
"score": "42",
"address_1": "7TH AND CLAYTON STS",
"city": "WILMINGTON",
"footnote": "No data are available from the hospital for this measure",
"county_name": "NEW CASTLE"
},
{
"hospital_name": "HOSPITAL DE LA CONCEPCION",
"phone_number": {
"phone_number": "7878921860"
},
"zip_code": "00683",
"measure": "CAUTI Urinary Catheter Days",
"location": {
"needs_recoding": false,
"longitude": "-67.04137000032512",
"latitude": "18.081239999926197",
"human_address": "{\"address\":\"ROAD NUMBER 2 KM 173.4\",\"city\":\"SAN GERMAN\",\"state\":\"PR\",\"zip\":\"00683\"}"
},
"provider_id": "400021",
"state": "PR",
"score": "1152",
"address_1": "ROAD NUMBER 2 KM 173.4",
"city": "SAN GERMAN",
"county_name": "SAN GERMAN"
},
{
"hospital_name": "KAISER FOUNDATION HOSPITAL - LOS ANGELES",
"phone_number": {
"phone_number": "3237834011"
},
"zip_code": "90027",
"measure": "SSI: Colon Lower Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-118.29595385393446",
"latitude": "34.09817498720116",
"human_address": "{\"address\":\"4867 SUNSET BLVD\",\"city\":\"LOS ANGELES\",\"state\":\"CA\",\"zip\":\"90027\"}"
},
"provider_id": "050138",
"state": "CA",
"score": "0.008",
"address_1": "4867 SUNSET BLVD",
"city": "LOS ANGELES",
"county_name": "LOS ANGELES"
},
{
"hospital_name": "ST MARYS HOSPITAL",
"phone_number": {
"phone_number": "5072555123"
},
"zip_code": "55902",
"measure": "CLABSI Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-92.48209311473636",
"latitude": "44.02160902120761",
"human_address": "{\"address\":\"1216 SECOND STREET WEST\",\"city\":\"ROCHESTER\",\"state\":\"MN\",\"zip\":\"55902\"}"
},
"provider_id": "240010",
"state": "MN",
"score": "53.763",
"address_1": "1216 SECOND STREET WEST",
"city": "ROCHESTER",
"county_name": "OLMSTED"
},
{
"hospital_name": "WOODWARD REGIONAL HOSPITAL",
"phone_number": {
"phone_number": "5802565511"
},
"zip_code": "73801",
"measure": "CLABSI Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-99.40087863511964",
"latitude": "36.43832108757048",
"human_address": "{\"address\":\"900 17TH STREET\",\"city\":\"WOODWARD\",\"state\":\"OK\",\"zip\":\"73801\"}"
},
"provider_id": "370002",
"state": "OK",
"score": "0.151",
"address_1": "900 17TH STREET",
"city": "WOODWARD",
"footnote": "No data are available from the hospital for this measure",
"county_name": "WOODWARD"
},
{
"hospital_name": "PEACEHEALTH KETCHIKAN MEDICAL CENTER",
"phone_number": {
"phone_number": "9072255171"
},
"zip_code": "99901",
"measure": "CAUTI Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-131.68635524987508",
"latitude": "55.35288672598176",
"human_address": "{\"address\":\"3100 TONGASS AVENUE\",\"city\":\"KETCHIKAN\",\"state\":\"AK\",\"zip\":\"99901\"}"
},
"provider_id": "021311",
"state": "AK",
"score": "0.110",
"address_1": "3100 TONGASS AVENUE",
"city": "KETCHIKAN",
"footnote": "No data are available from the hospital for this measure",
"county_name": "KETCHIKAN GATEWAY"
},
{
"hospital_name": "ST FRANCIS MEDICAL CENTER",
"phone_number": {
"phone_number": "3189664000"
},
"zip_code": "71201",
"measure": "CAUTI Lower Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-92.11460315390349",
"latitude": "32.4993962563928",
"human_address": "{\"address\":\"309 JACKSON STREET\",\"city\":\"MONROE\",\"state\":\"LA\",\"zip\":\"71201\"}"
},
"provider_id": "190125",
"state": "LA",
"score": "0.003",
"address_1": "309 JACKSON STREET",
"city": "MONROE",
"county_name": "OUACHITA"
},
{
"hospital_name": "GOOD SHEPHERD MEDICAL CENTER",
"phone_number": {
"phone_number": "9033152000"
},
"zip_code": "75601",
"measure": "CAUTI Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-94.73136508577325",
"latitude": "32.501434873895",
"human_address": "{\"address\":\"700 EAST MARSHALL AVENUE\",\"city\":\"LONGVIEW\",\"state\":\"TX\",\"zip\":\"75601\"}"
},
"provider_id": "450037",
"state": "TX",
"score": "5",
"address_1": "700 EAST MARSHALL AVENUE",
"city": "LONGVIEW",
"county_name": "GREGG"
},
{
"hospital_name": "MEMORIAL HOSPITAL PEMBROKE",
"phone_number": {
"phone_number": "9549629650"
},
"zip_code": "33024",
"measure": "SSI: Colon, Number of Procedures",
"location": {
"needs_recoding": false,
"longitude": "-80.24531503832094",
"latitude": "26.03092363522933",
"human_address": "{\"address\":\"7800 SHERIDAN ST\",\"city\":\"PEMBROKE PINES\",\"state\":\"FL\",\"zip\":\"33024\"}"
},
"provider_id": "100230",
"state": "FL",
"score": "42",
"address_1": "7800 SHERIDAN ST",
"city": "PEMBROKE PINES",
"county_name": "BROWARD"
},
{
"hospital_name": "LUBBOCK HEART HOSPITAL LP",
"phone_number": {
"phone_number": "8066877777"
},
"zip_code": "79416",
"measure": "Central-Line-Associated Blood Stream Infections (CLABSI)",
"location": {
"needs_recoding": false,
"longitude": "-101.91343983595787",
"latitude": "33.603117572689875",
"human_address": "{\"address\":\"4810 NORTH LOOP 289\",\"city\":\"LUBBOCK\",\"state\":\"TX\",\"zip\":\"79416\"}"
},
"provider_id": "450876",
"state": "TX",
"score": "0.00",
"address_1": "4810 NORTH LOOP 289",
"city": "LUBBOCK",
"footnote": "The lower limit of the confidence interval cannot be calculated if the number of observed infections equals zero",
"county_name": "LUBBOCK"
},
{
"hospital_name": "MEMORIAL HOSPITAL AT GULFPORT",
"phone_number": {
"phone_number": "2288674000"
},
"zip_code": "39502",
"measure": "CAUTI Urinary Catheter Days",
"location": {
"needs_recoding": false,
"longitude": "-89.11370667997767",
"latitude": "30.3673397352762",
"human_address": "{\"address\":\"4500 13TH ST-P O BOX 1810\",\"city\":\"GULFPORT\",\"state\":\"MS\",\"zip\":\"39502\"}"
},
"provider_id": "250019",
"state": "MS",
"score": "2486",
"address_1": "4500 13TH ST-P O BOX 1810",
"city": "GULFPORT",
"county_name": "HARRISON"
},
{
"hospital_name": "WINN PARISH MEDICAL CENTER",
"phone_number": {
"phone_number": "3186483000"
},
"zip_code": "71483",
"measure": "SSI: Abdominal Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-92.64506584045209",
"latitude": "31.924917949141363",
"human_address": "{\"address\":\"301 W BOUNDARY STREET\",\"city\":\"WINNFIELD\",\"state\":\"LA\",\"zip\":\"71483\"}"
},
"provider_id": "190090",
"state": "LA",
"score": "0.000",
"address_1": "301 W BOUNDARY STREET",
"city": "WINNFIELD",
"footnote": "No data are available from the hospital for this measure",
"county_name": "WINN"
},
{
"hospital_name": "PARIS REGIONAL MEDICAL CENTER",
"phone_number": {
"phone_number": "9037854521"
},
"zip_code": "75460",
"measure": "CLABSI Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-95.5477020482142",
"latitude": "33.6603940165582",
"human_address": "{\"address\":\"820 CLARKSVILLE ST\",\"city\":\"PARIS\",\"state\":\"TX\",\"zip\":\"75460\"}"
},
"provider_id": "450196",
"state": "TX",
"score": "2.133",
"address_1": "820 CLARKSVILLE ST",
"city": "PARIS",
"county_name": "LAMAR"
},
{
"hospital_name": "OKLAHOMA STATE UNIVERSITY MEDICAL CENTER",
"phone_number": {
"phone_number": "9185872561"
},
"zip_code": "74127",
"measure": "CAUTI Lower Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-96.06079173445036",
"latitude": "36.14614676325775",
"human_address": "{\"address\":\"744 WEST 9TH STREET\",\"city\":\"TULSA\",\"state\":\"OK\",\"zip\":\"74127\"}"
},
"provider_id": "370078",
"state": "OK",
"score": "0.310",
"address_1": "744 WEST 9TH STREET",
"city": "TULSA",
"county_name": "OSAGE"
},
{
"hospital_name": "QUEENS HOSPITAL CENTER",
"phone_number": {
"phone_number": "7188833000"
},
"zip_code": "11432",
"measure": "CLABSI Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-73.80218531194316",
"latitude": "40.71740096013622",
"human_address": "{\"address\":\"82-68 164TH STREET\",\"city\":\"JAMAICA\",\"state\":\"NY\",\"zip\":\"11432\"}"
},
"provider_id": "330231",
"state": "NY",
"score": "4",
"address_1": "82-68 164TH STREET",
"city": "JAMAICA",
"county_name": "QUEENS"
},
{
"hospital_name": "DECATUR MEMORIAL HOSPITAL",
"phone_number": {
"phone_number": "2178778121"
},
"zip_code": "62526",
"measure": "Catheter-Associated Urinary Tract Infections (CAUTI)",
"location": {
"needs_recoding": false,
"longitude": "-88.95938889443501",
"latitude": "39.86675892529047",
"human_address": "{\"address\":\"2300 NORTH EDWARD STREET\",\"city\":\"DECATUR\",\"state\":\"IL\",\"zip\":\"62526\"}"
},
"provider_id": "140135",
"state": "IL",
"score": "0.60",
"address_1": "2300 NORTH EDWARD STREET",
"city": "DECATUR",
"county_name": "MACON"
},
{
"hospital_name": "MERCY HOSPITAL ST LOUIS",
"phone_number": {
"phone_number": "3145696000"
},
"zip_code": "63141",
"measure": "CLABSI Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-90.44334806075386",
"latitude": "38.66700069265397",
"human_address": "{\"address\":\"615 NEW BALLAS ROAD\",\"city\":\"SAINT LOUIS\",\"state\":\"MO\",\"zip\":\"63141\"}"
},
"provider_id": "260020",
"state": "MO",
"score": "36.491",
"address_1": "615 NEW BALLAS ROAD",
"city": "SAINT LOUIS",
"county_name": "SAINT LOUIS"
},
{
"hospital_name": "BAPTIST MEDICAL CENTER SOUTH",
"phone_number": {
"phone_number": "3342882100"
},
"zip_code": "36116",
"measure": "CLABSI Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-86.27655671218812",
"latitude": "32.32720893505362",
"human_address": "{\"address\":\"2105 EAST SOUTH BOULEVARD\",\"city\":\"MONTGOMERY\",\"state\":\"AL\",\"zip\":\"36116\"}"
},
"provider_id": "010023",
"state": "AL",
"score": "24",
"address_1": "2105 EAST SOUTH BOULEVARD",
"city": "MONTGOMERY",
"county_name": "MONTGOMERY"
},
{
"hospital_name": "PORTER HOSPITAL, INC",
"phone_number": {
"phone_number": "8023884701"
},
"zip_code": "05753",
"measure": "SSI: Abdominal Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-73.16910671721493",
"latitude": "43.999294964515755",
"human_address": "{\"address\":\"115 PORTER DRIVE\",\"city\":\"MIDDLEBURY\",\"state\":\"VT\",\"zip\":\"05753\"}"
},
"provider_id": "471307",
"state": "VT",
"score": "0",
"address_1": "115 PORTER DRIVE",
"city": "MIDDLEBURY",
"footnote": "No data are available from the hospital for this measure",
"county_name": "ADDISON"
},
{
"hospital_name": "DEACONESS HOSPITAL INC",
"phone_number": {
"phone_number": "8124505000"
},
"zip_code": "47747",
"measure": "SSI: Abdominal Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-87.57076275751872",
"latitude": "37.98302518229049",
"human_address": "{\"address\":\"600 MARY ST\",\"city\":\"EVANSVILLE\",\"state\":\"IN\",\"zip\":\"47747\"}"
},
"provider_id": "150082",
"state": "IN",
"score": "0.028",
"address_1": "600 MARY ST",
"city": "EVANSVILLE",
"footnote": "No data are available from the hospital for this measure",
"county_name": "VANDERBURGH"
},
{
"hospital_name": "ST FRANCIS HOSPITAL",
"phone_number": {
"phone_number": "6605622600"
},
"zip_code": "64468",
"measure": "CAUTI Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-94.87406488216703",
"latitude": "40.326051985866",
"human_address": "{\"address\":\"2016 SOUTH MAIN ST\",\"city\":\"MARYVILLE\",\"state\":\"MO\",\"zip\":\"64468\"}"
},
"provider_id": "260050",
"state": "MO",
"score": "0",
"address_1": "2016 SOUTH MAIN ST",
"city": "MARYVILLE",
"footnote": "No data are available from the hospital for this measure",
"county_name": "NODAWAY"
},
{
"hospital_name": "PINNACLE HEALTH HOSPITALS",
"phone_number": {
"phone_number": "7177825181"
},
"zip_code": "17105",
"measure": "SSI: Abdominal Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-76.87528559792503",
"latitude": "40.25623761673148",
"human_address": "{\"address\":\"409 SOUTH SECOND STREET\",\"city\":\"HARRISBURG\",\"state\":\"PA\",\"zip\":\"17105\"}"
},
"provider_id": "390067",
"state": "PA",
"score": "2.533",
"address_1": "409 SOUTH SECOND STREET",
"city": "HARRISBURG",
"county_name": "DAUPHIN"
},
{
"hospital_name": "BEEBE MEDICAL CENTER",
"phone_number": {
"phone_number": "3026453300"
},
"zip_code": "19958",
"measure": "SSI: Abdominal Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-75.14253800853915",
"latitude": "38.771223610976584",
"human_address": "{\"address\":\"424 SAVANNAH RD\",\"city\":\"LEWES\",\"state\":\"DE\",\"zip\":\"19958\"}"
},
"provider_id": "080007",
"state": "DE",
"score": "0.147",
"address_1": "424 SAVANNAH RD",
"city": "LEWES",
"footnote": "No data are available from the hospital for this measure",
"county_name": "SUSSEX"
},
{
"hospital_name": "FRISBIE MEMORIAL HOSPITAL",
"phone_number": {
"phone_number": "6033325211"
},
"zip_code": "03867",
"measure": "CLABSI Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-70.96122400116617",
"latitude": "43.29811370433292",
"human_address": "{\"address\":\"11 WHITEHALL ROAD\",\"city\":\"ROCHESTER\",\"state\":\"NH\",\"zip\":\"03867\"}"
},
"provider_id": "300014",
"state": "NH",
"score": "0",
"address_1": "11 WHITEHALL ROAD",
"city": "ROCHESTER",
"footnote": "No data are available from the hospital for this measure",
"county_name": "STRAFFORD"
},
{
"hospital_name": "PIEDMONT HENRY HOSPITAL",
"phone_number": {
"phone_number": "6786041000"
},
"zip_code": "30281",
"measure": "SSI: Abdominal Upper Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-84.22557944169836",
"latitude": "33.509307915635816",
"human_address": "{\"address\":\"1133 EAGLE'S LANDING PARKWAY\",\"city\":\"STOCKBRIDGE\",\"state\":\"GA\",\"zip\":\"30281\"}"
},
"provider_id": "110191",
"state": "GA",
"score": "5.107",
"address_1": "1133 EAGLE'S LANDING PARKWAY",
"city": "STOCKBRIDGE",
"county_name": "HENRY"
},
{
"hospital_name": "LONG BEACH MEDICAL CENTER",
"phone_number": {
"phone_number": "5168971000"
},
"zip_code": "11561",
"measure": "CAUTI Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-73.64988512628116",
"latitude": "40.594409679409125",
"human_address": "{\"address\":\"455 EAST BAY DRIVE\",\"city\":\"LONG BEACH\",\"state\":\"NY\",\"zip\":\"11561\"}"
},
"provider_id": "330225",
"state": "NY",
"score": "0",
"address_1": "455 EAST BAY DRIVE",
"city": "LONG BEACH",
"footnote": "The lower limit of the confidence interval cannot be calculated if the number of observed infections equals zero",
"county_name": "NASSAU"
},
{
"hospital_name": "MARK TWAIN ST JOSEPH'S HOSPITAL (4RH)",
"phone_number": {
"phone_number": "2097542515"
},
"zip_code": "95249",
"measure": "SSI: Abdominal Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-120.67095541467228",
"latitude": "38.19056686119171",
"human_address": "{\"address\":\"768 MOUNTAIN RANCH RD\",\"city\":\"SAN ANDREAS\",\"state\":\"CA\",\"zip\":\"95249\"}"
},
"provider_id": "051332",
"state": "CA",
"score": "0.000",
"address_1": "768 MOUNTAIN RANCH RD",
"city": "SAN ANDREAS",
"footnote": "No data are available from the hospital for this measure",
"county_name": "CALAVERAS"
},
{
"hospital_name": "HILLCREST BAPTIST MEDICAL CENTER",
"phone_number": {
"phone_number": "2542022000"
},
"zip_code": "76712",
"measure": "Central-Line-Associated Blood Stream Infections (CLABSI)",
"location": {
"needs_recoding": false,
"longitude": "-97.15699519115852",
"latitude": "31.48922997905185",
"human_address": "{\"address\":\"100 HILLCREST MEDICAL BLVD\",\"city\":\"WACO\",\"state\":\"TX\",\"zip\":\"76712\"}"
},
"provider_id": "450101",
"state": "TX",
"score": "0.49",
"address_1": "100 HILLCREST MEDICAL BLVD",
"city": "WACO",
"county_name": "MCLENNAN"
},
{
"hospital_name": "ST MARGARETS HOSPITAL",
"phone_number": {
"phone_number": "8156641176"
},
"zip_code": "61362",
"measure": "CLABSI Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-89.19406950952394",
"latitude": "41.32872157902024",
"human_address": "{\"address\":\"600 E 1ST ST\",\"city\":\"SPRING VALLEY\",\"state\":\"IL\",\"zip\":\"61362\"}"
},
"provider_id": "140143",
"state": "IL",
"score": "0.058",
"address_1": "600 E 1ST ST",
"city": "SPRING VALLEY",
"footnote": "No data are available from the hospital for this measure",
"county_name": "BUREAU"
},
{
"hospital_name": "BAYSHORE MEDICAL CENTER",
"phone_number": {
"phone_number": "7133591000"
},
"zip_code": "77504",
"measure": "SSI: Abdominal Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-95.18370621317345",
"latitude": "29.665129682748336",
"human_address": "{\"address\":\"4000 SPENCER HWY\",\"city\":\"PASADENA\",\"state\":\"TX\",\"zip\":\"77504\"}"
},
"provider_id": "450097",
"state": "TX",
"score": "2",
"address_1": "4000 SPENCER HWY",
"city": "PASADENA",
"footnote": "No data are available from the hospital for this measure",
"county_name": "HARRIS"
},
{
"hospital_name": "KAISER FOUNDATION HOSPITAL AND REHAB CENTER",
"phone_number": {
"phone_number": "7076511000"
},
"zip_code": "94589",
"measure": "Central-Line-Associated Blood Stream Infections (CLABSI)",
"location": {
"needs_recoding": false,
"longitude": "-122.24754195244061",
"latitude": "38.12837515180279",
"human_address": "{\"address\":\"975 SERENO DR\",\"city\":\"VALLEJO\",\"state\":\"CA\",\"zip\":\"94589\"}"
},
"provider_id": "050073",
"state": "CA",
"score": "0.77",
"address_1": "975 SERENO DR",
"city": "VALLEJO",
"county_name": "SOLANO"
},
{
"hospital_name": "MCLAREN FLINT",
"phone_number": {
"phone_number": "8103422000"
},
"zip_code": "48532",
"measure": "CAUTI Upper Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-83.73357834590888",
"latitude": "43.01411653822345",
"human_address": "{\"address\":\"401 S BALLENGER HIGHWAY\",\"city\":\"FLINT\",\"state\":\"MI\",\"zip\":\"48532\"}"
},
"provider_id": "230141",
"state": "MI",
"score": "2.332",
"address_1": "401 S BALLENGER HIGHWAY",
"city": "FLINT",
"county_name": "GENESEE"
},
{
"hospital_name": "VALLEY PRESBYTERIAN HOSPITAL",
"phone_number": {
"phone_number": "8189023906"
},
"zip_code": "91406",
"measure": "CLABSI Lower Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-118.46620099994531",
"latitude": "34.193971633221",
"human_address": "{\"address\":\"15107 VANOWEN ST\",\"city\":\"VAN NUYS\",\"state\":\"CA\",\"zip\":\"91406\"}"
},
"provider_id": "050126",
"state": "CA",
"score": "0.167",
"address_1": "15107 VANOWEN ST",
"city": "VAN NUYS",
"county_name": "LOS ANGELES"
},
{
"hospital_name": "BAPTIST MEDICAL CENTER EAST",
"phone_number": {
"phone_number": "3342448330"
},
"zip_code": "36117",
"measure": "CAUTI Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-86.17186519784849",
"latitude": "32.37636000956428",
"human_address": "{\"address\":\"400 TAYLOR ROAD\",\"city\":\"MONTGOMERY\",\"state\":\"AL\",\"zip\":\"36117\"}"
},
"provider_id": "010149",
"state": "AL",
"score": "2",
"address_1": "400 TAYLOR ROAD",
"city": "MONTGOMERY",
"county_name": "MONTGOMERY"
},
{
"hospital_name": "USMD HOSPITAL AT FORT WORTH LP",
"phone_number": {
"phone_number": "8174339100"
},
"zip_code": "76132",
"measure": "SSI: Abdominal Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-97.41750477626059",
"latitude": "32.64563687610086",
"human_address": "{\"address\":\"5900 DIRKS ROAD\",\"city\":\"FORT WORTH\",\"state\":\"TX\",\"zip\":\"76132\"}"
},
"provider_id": "670046",
"state": "TX",
"score": "0.015",
"address_1": "5900 DIRKS ROAD",
"city": "FORT WORTH",
"footnote": "No data are available from the hospital for this measure",
"county_name": "TARRANT"
},
{
"hospital_name": "NYACK HOSPITAL",
"phone_number": {
"phone_number": "8453482000"
},
"zip_code": "10960",
"measure": "CAUTI Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-73.92523954521226",
"latitude": "41.09537701583071",
"human_address": "{\"address\":\"160 NORTH MIDLAND AVENUE\",\"city\":\"NYACK\",\"state\":\"NY\",\"zip\":\"10960\"}"
},
"provider_id": "330104",
"state": "NY",
"score": "4.615",
"address_1": "160 NORTH MIDLAND AVENUE",
"city": "NYACK",
"footnote": "The lower limit of the confidence interval cannot be calculated if the number of observed infections equals zero",
"county_name": "ROCKLAND"
},
{
"hospital_name": "ST ALEXIUS MEDICAL CENTER",
"phone_number": {
"phone_number": "7015307000"
},
"zip_code": "58501",
"measure": "CAUTI Upper Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-100.77851843991553",
"latitude": "46.80645020865122",
"human_address": "{\"address\":\"900 E BROADWAY\",\"city\":\"BISMARCK\",\"state\":\"ND\",\"zip\":\"58501\"}"
},
"provider_id": "350002",
"state": "ND",
"score": "2.753",
"address_1": "900 E BROADWAY",
"city": "BISMARCK",
"footnote": "The lower limit of the confidence interval cannot be calculated if the number of observed infections equals zero",
"county_name": "BURLEIGH"
},
{
"hospital_name": "ALLEGIANCE HEALTH",
"phone_number": {
"phone_number": "5177884800"
},
"zip_code": "49201",
"measure": "CAUTI Urinary Catheter Days",
"location": {
"needs_recoding": false,
"longitude": "-84.39348286456863",
"latitude": "42.25007952179101",
"human_address": "{\"address\":\"205 N EAST AVE\",\"city\":\"JACKSON\",\"state\":\"MI\",\"zip\":\"49201\"}"
},
"provider_id": "230092",
"state": "MI",
"score": "1000",
"address_1": "205 N EAST AVE",
"city": "JACKSON",
"footnote": "The lower limit of the confidence interval cannot be calculated if the number of observed infections equals zero",
"county_name": "JACKSON"
},
{
"hospital_name": "SPRUCE PINE COMMUNITY HOSPITAL",
"phone_number": {
"phone_number": "8287654201"
},
"zip_code": "28777",
"measure": "CLABSI Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-82.06296338681886",
"latitude": "35.91059148562249",
"human_address": "{\"address\":\"125 HOSPITAL DR\",\"city\":\"SPRUCE PINE\",\"state\":\"NC\",\"zip\":\"28777\"}"
},
"provider_id": "340011",
"state": "NC",
"score": "0",
"address_1": "125 HOSPITAL DR",
"city": "SPRUCE PINE",
"footnote": "No data are available from the hospital for this measure",
"county_name": "MITCHELL"
},
{
"hospital_name": "BAYLOR MEDICAL CENTER AT GARLAND",
"phone_number": {
"phone_number": "9724875000"
},
"zip_code": "75042",
"measure": "Catheter-Associated Urinary Tract Infections (CAUTI)",
"location": {
"needs_recoding": false,
"longitude": "-96.66200772807599",
"latitude": "32.91863407025039",
"human_address": "{\"address\":\"2300 MARIE CURIE DRIVE\",\"city\":\"GARLAND\",\"state\":\"TX\",\"zip\":\"75042\"}"
},
"provider_id": "450280",
"state": "TX",
"score": "0.00",
"address_1": "2300 MARIE CURIE DRIVE",
"city": "GARLAND",
"footnote": "The lower limit of the confidence interval cannot be calculated if the number of observed infections equals zero",
"county_name": "DALLAS"
},
{
"hospital_name": "CROZER CHESTER MEDICAL CENTER",
"phone_number": {
"phone_number": "6104472000"
},
"zip_code": "19013",
"measure": "SSI: Colon Upper Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-75.36936964651632",
"latitude": "39.8562655157235",
"human_address": "{\"address\":\"ONE MEDICAL CENTER BOULEVARD\",\"city\":\"UPLAND\",\"state\":\"PA\",\"zip\":\"19013\"}"
},
"provider_id": "390180",
"state": "PA",
"score": "2.715",
"address_1": "ONE MEDICAL CENTER BOULEVARD",
"city": "UPLAND",
"county_name": "DELAWARE"
},
{
"hospital_name": "MOUNT DESERT ISLAND HOSPITAL",
"phone_number": {
"phone_number": "2072885081"
},
"zip_code": "04609",
"measure": "CAUTI Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-68.20155244135407",
"latitude": "44.3845832246691",
"human_address": "{\"address\":\"10 WAYMAN LANE, PO BOX 8\",\"city\":\"BAR HARBOR\",\"state\":\"ME\",\"zip\":\"04609\"}"
},
"provider_id": "201304",
"state": "ME",
"score": "0",
"address_1": "10 WAYMAN LANE, PO BOX 8",
"city": "BAR HARBOR",
"footnote": "No data are available from the hospital for this measure",
"county_name": "HANCOCK"
},
{
"hospital_name": "SUNRISE HOSPITAL AND MEDICAL CENTER",
"phone_number": {
"phone_number": "7027318000"
},
"zip_code": "89109",
"measure": "CAUTI Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-115.1368284896228",
"latitude": "36.13188468804491",
"human_address": "{\"address\":\"3186 S MARYLAND PKWY\",\"city\":\"LAS VEGAS\",\"state\":\"NV\",\"zip\":\"89109\"}"
},
"provider_id": "290003",
"state": "NV",
"score": "17",
"address_1": "3186 S MARYLAND PKWY",
"city": "LAS VEGAS",
"county_name": "CLARK"
},
{
"hospital_name": "CONROE REGIONAL MEDICAL CENTER",
"phone_number": {
"phone_number": "9365391111"
},
"zip_code": "77304",
"measure": "SSI: Colon Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-95.46627256264287",
"latitude": "30.284553500367913",
"human_address": "{\"address\":\"504 MEDICAL CENTER BLVD\",\"city\":\"CONROE\",\"state\":\"TX\",\"zip\":\"77304\"}"
},
"provider_id": "450222",
"state": "TX",
"score": "0",
"address_1": "504 MEDICAL CENTER BLVD",
"city": "CONROE",
"footnote": "The lower limit of the confidence interval cannot be calculated if the number of observed infections equals zero",
"county_name": "MONTGOMERY"
},
{
"hospital_name": "KAISER FOUNDATION HOSPITAL - ANTIOCH",
"phone_number": {
"phone_number": "9258136500"
},
"zip_code": "94531",
"measure": "Surgical Site Infection from colon surgery (SSI: Colon)",
"location": {
"needs_recoding": false,
"longitude": "-121.77471132767272",
"latitude": "37.94947661157698",
"human_address": "{\"address\":\"4501 SAND CREEK ROAD\",\"city\":\"ANTIOCH\",\"state\":\"CA\",\"zip\":\"94531\"}"
},
"provider_id": "050760",
"state": "CA",
"score": "0.50",
"address_1": "4501 SAND CREEK ROAD",
"city": "ANTIOCH",
"county_name": "CONTRA COSTA"
},
{
"hospital_name": "MERCY HEALTH PARTNERS, MERCY CAMPUS",
"phone_number": {
"phone_number": "2316723901"
},
"zip_code": "49444",
"measure": "SSI: Colon Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-86.20819220065273",
"latitude": "43.20503865490034",
"human_address": "{\"address\":\"1500 E SHERMAN BOULEVARD\",\"city\":\"MUSKEGON\",\"state\":\"MI\",\"zip\":\"49444\"}"
},
"provider_id": "230004",
"state": "MI",
"score": "0.844",
"address_1": "1500 E SHERMAN BOULEVARD",
"city": "MUSKEGON",
"footnote": "No data are available from the hospital for this measure",
"county_name": "MUSKEGON"
},
{
"hospital_name": "DUKE HEALTH RALEIGH HOSPITAL",
"phone_number": {
"phone_number": "9199543000"
},
"zip_code": "27609",
"measure": "CAUTI Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-78.61933181612625",
"latitude": "35.82931593428191",
"human_address": "{\"address\":\"3400 WAKE FOREST RD\",\"city\":\"RALEIGH\",\"state\":\"NC\",\"zip\":\"27609\"}"
},
"provider_id": "340073",
"state": "NC",
"score": "3",
"address_1": "3400 WAKE FOREST RD",
"city": "RALEIGH",
"county_name": "WAKE"
},
{
"hospital_name": "E A CONWAY MEDICAL CENTER",
"phone_number": {
"phone_number": "3183307000"
},
"zip_code": "71202",
"measure": "CLABSI Upper Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-92.10536407464464",
"latitude": "32.45014984031019",
"human_address": "{\"address\":\"4864 JACKSON STREET\",\"city\":\"MONROE\",\"state\":\"LA\",\"zip\":\"71202\"}"
},
"provider_id": "190011",
"state": "LA",
"score": "5.700",
"address_1": "4864 JACKSON STREET",
"city": "MONROE",
"county_name": "OUACHITA"
},
{
"hospital_name": "NEWARK BETH ISRAEL MEDICAL CENTER",
"phone_number": {
"phone_number": "9739267850"
},
"zip_code": "07112",
"measure": "CAUTI Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-74.21354002344556",
"latitude": "40.70998876118389",
"human_address": "{\"address\":\"201 LYONS AVE\",\"city\":\"NEWARK\",\"state\":\"NJ\",\"zip\":\"07112\"}"
},
"provider_id": "310002",
"state": "NJ",
"score": "10.537",
"address_1": "201 LYONS AVE",
"city": "NEWARK",
"county_name": "ESSEX"
},
{
"hospital_name": "MANATI MEDICAL CENTER DR OTERO LOPEZ",
"phone_number": {
"phone_number": "7876213700"
},
"zip_code": "00674",
"measure": "CLABSI Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-66.47770906650199",
"latitude": "18.437480013795817",
"human_address": "{\"address\":\"CALLE HERNANDEZ CARRION URB ATENAS\",\"city\":\"MANATI\",\"state\":\"PR\",\"zip\":\"00674\"}"
},
"provider_id": "400114",
"state": "PR",
"score": "1.700",
"address_1": "CALLE HERNANDEZ CARRION URB ATENAS",
"city": "MANATI",
"county_name": "MANATI"
},
{
"hospital_name": "DETAR HOSPITAL NAVARRO",
"phone_number": {
"phone_number": "3615757441"
},
"zip_code": "77902",
"measure": "SSI: Colon Upper Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-96.99847935266064",
"latitude": "28.807607380353943",
"human_address": "{\"address\":\"506 E SAN ANTONIO ST\",\"city\":\"VICTORIA\",\"state\":\"TX\",\"zip\":\"77902\"}"
},
"provider_id": "450147",
"state": "TX",
"score": "2.389",
"address_1": "506 E SAN ANTONIO ST",
"city": "VICTORIA",
"footnote": "The lower limit of the confidence interval cannot be calculated if the number of observed infections equals zero",
"county_name": "VICTORIA"
},
{
"hospital_name": "CHARLESTON AREA MEDICAL CENTER",
"phone_number": {
"phone_number": "3043886203"
},
"zip_code": "25301",
"measure": "CLABSI Lower Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-81.62576536007612",
"latitude": "38.34747157564368",
"human_address": "{\"address\":\"501 MORRIS STREET\",\"city\":\"CHARLESTON\",\"state\":\"WV\",\"zip\":\"25301\"}"
},
"provider_id": "510022",
"state": "WV",
"score": "0.274",
"address_1": "501 MORRIS STREET",
"city": "CHARLESTON",
"county_name": "KANAWHA"
},
{
"hospital_name": "ST LUKES HOSPITAL",
"phone_number": {
"phone_number": "8288943311"
},
"zip_code": "28722",
"measure": "SSI: Colon, Number of Procedures",
"location": {
"needs_recoding": false,
"longitude": "-82.21258197741469",
"latitude": "35.2404398694963",
"human_address": "{\"address\":\"101 HOSPITAL DRIVE\",\"city\":\"COLUMBUS\",\"state\":\"NC\",\"zip\":\"28722\"}"
},
"provider_id": "341322",
"state": "NC",
"score": "2",
"address_1": "101 HOSPITAL DRIVE",
"city": "COLUMBUS",
"footnote": "No data are available from the hospital for this measure",
"county_name": "POLK"
},
{
"hospital_name": "WESTCHESTER MEDICAL CENTER",
"phone_number": {
"phone_number": "9142857017"
},
"zip_code": "10595",
"measure": "CLABSI Upper Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-73.80399239011477",
"latitude": "41.087737328725964",
"human_address": "{\"address\":\"100 WOODS RD\",\"city\":\"VALHALLA\",\"state\":\"NY\",\"zip\":\"10595\"}"
},
"provider_id": "330234",
"state": "NY",
"score": "0.913",
"address_1": "100 WOODS RD",
"city": "VALHALLA",
"county_name": "WESTCHESTER"
},
{
"hospital_name": "WINTER HAVEN HOSPITAL",
"phone_number": {
"phone_number": "8632931121"
},
"zip_code": "33881",
"measure": "CLABSI Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-81.72573399685314",
"latitude": "28.027661357223224",
"human_address": "{\"address\":\"200 AVE F NE\",\"city\":\"WINTER HAVEN\",\"state\":\"FL\",\"zip\":\"33881\"}"
},
"provider_id": "100052",
"state": "FL",
"score": "5",
"address_1": "200 AVE F NE",
"city": "WINTER HAVEN",
"county_name": "POLK"
},
{
"hospital_name": "METROSOUTH MEDICAL CENTER",
"phone_number": {
"phone_number": "7085972000"
},
"zip_code": "60406",
"measure": "SSI: Abdominal, Number of Procedures",
"location": {
"needs_recoding": false,
"longitude": "-87.67819686391178",
"latitude": "41.65810857222827",
"human_address": "{\"address\":\"12935 S GREGORY\",\"city\":\"BLUE ISLAND\",\"state\":\"IL\",\"zip\":\"60406\"}"
},
"provider_id": "140118",
"state": "IL",
"score": "27",
"address_1": "12935 S GREGORY",
"city": "BLUE ISLAND",
"footnote": "No data are available from the hospital for this measure",
"county_name": "COOK"
},
{
"hospital_name": "UNIVERSITY HOSPITAL ( STONY BROOK )",
"phone_number": {
"phone_number": "6314444000"
},
"zip_code": "11794",
"measure": "CAUTI Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-73.11455455426425",
"latitude": "40.91381769952754",
"human_address": "{\"address\":\"HEALTH SCIENCES CENTER SUNY\",\"city\":\"STONY BROOK\",\"state\":\"NY\",\"zip\":\"11794\"}"
},
"provider_id": "330393",
"state": "NY",
"score": "17.236",
"address_1": "HEALTH SCIENCES CENTER SUNY",
"city": "STONY BROOK",
"county_name": "SUFFOLK"
},
{
"hospital_name": "ROCKDALE MEDICAL CENTER",
"phone_number": {
"phone_number": "7709183000"
},
"zip_code": "30012",
"measure": "SSI: Abdominal, Number of Procedures",
"location": {
"needs_recoding": false,
"longitude": "-84.00152235131856",
"latitude": "33.67994527747521",
"human_address": "{\"address\":\"1412 MILSTEAD AVENUE, NE\",\"city\":\"CONYERS\",\"state\":\"GA\",\"zip\":\"30012\"}"
},
"provider_id": "110091",
"state": "GA",
"score": "45",
"address_1": "1412 MILSTEAD AVENUE, NE",
"city": "CONYERS",
"footnote": "No data are available from the hospital for this measure",
"county_name": "ROCKDALE"
},
{
"hospital_name": "WILLIAMSPORT REGIONAL MEDICAL CENTER",
"phone_number": {
"phone_number": "5703211000"
},
"zip_code": "17701",
"measure": "CLABSI Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-77.014509641281",
"latitude": "41.24552782184264",
"human_address": "{\"address\":\"700 HIGH STREET\",\"city\":\"WILLIAMSPORT\",\"state\":\"PA\",\"zip\":\"17701\"}"
},
"provider_id": "390045",
"state": "PA",
"score": "3.205",
"address_1": "700 HIGH STREET",
"city": "WILLIAMSPORT",
"county_name": "LYCOMING"
},
{
"hospital_name": "UMDNJ UNIVERSITY HOSPITAL",
"phone_number": {
"phone_number": "9739725658"
},
"zip_code": "07103",
"measure": "SSI: Colon Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-74.19241663237352",
"latitude": "40.74018971142079",
"human_address": "{\"address\":\"150 BERGEN ST\",\"city\":\"NEWARK\",\"state\":\"NJ\",\"zip\":\"07103\"}"
},
"provider_id": "310119",
"state": "NJ",
"score": "1.566",
"address_1": "150 BERGEN ST",
"city": "NEWARK",
"county_name": "ESSEX"
},
{
"hospital_name": "PEACEHEALTH SOUTHWEST MEDICAL CENTER",
"phone_number": {
"phone_number": "3602562000"
},
"zip_code": "98668",
"measure": "SSI: Abdominal Upper Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-122.58038367093636",
"latitude": "45.623245165738545",
"human_address": "{\"address\":\"400 NE MOTHER JOSEPH PLACE\",\"city\":\"VANCOUVER\",\"state\":\"WA\",\"zip\":\"98668\"}"
},
"provider_id": "500050",
"state": "WA",
"score": "2.515",
"address_1": "400 NE MOTHER JOSEPH PLACE",
"city": "VANCOUVER",
"footnote": "The lower limit of the confidence interval cannot be calculated if the number of observed infections equals zero",
"county_name": "CLARK"
},
{
"hospital_name": "SOUND SHORE MEDICAL CENTER OF WESTSCHESTER",
"phone_number": {
"phone_number": "9146325000"
},
"zip_code": "10802",
"measure": "CLABSI Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-73.78710368151178",
"latitude": "40.91301249472923",
"human_address": "{\"address\":\"16 GUION PLACE\",\"city\":\"NEW ROCHELLE\",\"state\":\"NY\",\"zip\":\"10802\"}"
},
"provider_id": "330184",
"state": "NY",
"score": "1.762",
"address_1": "16 GUION PLACE",
"city": "NEW ROCHELLE",
"county_name": "WESTCHESTER"
},
{
"hospital_name": "PENN PRESBYTERIAN MEDICAL CENTER",
"phone_number": {
"phone_number": "2156628000"
},
"zip_code": "19104",
"measure": "Surgical Site Infection from colon surgery (SSI: Colon)",
"location": {
"needs_recoding": false,
"longitude": "-75.19943496920564",
"latitude": "39.95759075724152",
"human_address": "{\"address\":\"51 NORTH 39TH STREET\",\"city\":\"PHILADELPHIA\",\"state\":\"PA\",\"zip\":\"19104\"}"
},
"provider_id": "390223",
"state": "PA",
"score": "0.94",
"address_1": "51 NORTH 39TH STREET",
"city": "PHILADELPHIA",
"county_name": "PHILADELPHIA"
},
{
"hospital_name": "DALLAS REGIONAL MEDICAL CENTER",
"phone_number": {
"phone_number": "2143207000"
},
"zip_code": "75149",
"measure": "SSI: Colon Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-96.60017861910399",
"latitude": "32.77903144818333",
"human_address": "{\"address\":\"1011 NORTH GALLOWAY AVENUE\",\"city\":\"MESQUITE\",\"state\":\"TX\",\"zip\":\"75149\"}"
},
"provider_id": "450688",
"state": "TX",
"score": "0.384",
"address_1": "1011 NORTH GALLOWAY AVENUE",
"city": "MESQUITE",
"footnote": "No data are available from the hospital for this measure",
"county_name": "DALLAS"
},
{
"hospital_name": "WESTERN ARIZONA REGIONAL MEDICAL CTR",
"phone_number": {
"phone_number": "9287632273"
},
"zip_code": "86442",
"measure": "CAUTI Urinary Catheter Days",
"location": {
"needs_recoding": false,
"longitude": "-114.55463931374209",
"latitude": "35.109831331181056",
"human_address": "{\"address\":\"2735 SILVER CREEK ROAD\",\"city\":\"BULLHEAD CITY\",\"state\":\"AZ\",\"zip\":\"86442\"}"
},
"provider_id": "030101",
"state": "AZ",
"score": "2212",
"address_1": "2735 SILVER CREEK ROAD",
"city": "BULLHEAD CITY",
"county_name": "MOHAVE"
},
{
"hospital_name": "PROVIDENCE MOUNT CARMEL HOSPITAL",
"phone_number": {
"phone_number": "5096842561"
},
"zip_code": "99114",
"measure": "SSI: Abdominal, Number of Procedures",
"location": {
"needs_recoding": false,
"longitude": "-117.89314387226209",
"latitude": "48.54122442854396",
"human_address": "{\"address\":\"982 EAST COLUMBIA\",\"city\":\"COLVILLE\",\"state\":\"WA\",\"zip\":\"99114\"}"
},
"provider_id": "501326",
"state": "WA",
"score": "2",
"address_1": "982 EAST COLUMBIA",
"city": "COLVILLE",
"footnote": "No data are available from the hospital for this measure",
"county_name": "STEVENS"
},
{
"hospital_name": "MEMORIAL HERMANN TEXAS MEDICAL CENTER",
"phone_number": {
"phone_number": "7137043700"
},
"zip_code": "77030",
"measure": "CLABSI Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-95.3966833153055",
"latitude": "29.714852851764384",
"human_address": "{\"address\":\"6411 FANNIN\",\"city\":\"HOUSTON\",\"state\":\"TX\",\"zip\":\"77030\"}"
},
"provider_id": "450068",
"state": "TX",
"score": "38",
"address_1": "6411 FANNIN",
"city": "HOUSTON",
"county_name": "HARRIS"
},
{
"hospital_name": "METHODIST WILLOWBROOK HOSPITAL",
"phone_number": {
"phone_number": "2814771000"
},
"zip_code": "77070",
"measure": "SSI: Colon Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-95.55017422923656",
"latitude": "29.963667619378892",
"human_address": "{\"address\":\"18220 TOMBALL PARKWAY\",\"city\":\"HOUSTON\",\"state\":\"TX\",\"zip\":\"77070\"}"
},
"provider_id": "450844",
"state": "TX",
"score": "1.327",
"address_1": "18220 TOMBALL PARKWAY",
"city": "HOUSTON",
"county_name": "HARRIS"
},
{
"hospital_name": "DESERT REGIONAL MEDICAL CENTER",
"phone_number": {
"phone_number": "7603236511"
},
"zip_code": "92262",
"measure": "SSI: Colon Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-116.54556741542672",
"latitude": "33.8383968258176",
"human_address": "{\"address\":\"1150 NORTH INDIAN CANYON DRIVE\",\"city\":\"PALM SPRINGS\",\"state\":\"CA\",\"zip\":\"92262\"}"
},
"provider_id": "050243",
"state": "CA",
"score": "2.978",
"address_1": "1150 NORTH INDIAN CANYON DRIVE",
"city": "PALM SPRINGS",
"footnote": "The lower limit of the confidence interval cannot be calculated if the number of observed infections equals zero",
"county_name": "RIVERSIDE"
},
{
"hospital_name": "SPANISH PEAKS REGIONAL HEALTH CENTER",
"phone_number": {
"phone_number": "7197385100"
},
"zip_code": "81089",
"measure": "SSI: Abdominal, Number of Procedures",
"location": {
"needs_recoding": false,
"longitude": "-104.83903875812494",
"latitude": "37.599412591008004",
"human_address": "{\"address\":\"23500 US HWY 160\",\"city\":\"WALSENBURG\",\"state\":\"CO\",\"zip\":\"81089\"}"
},
"provider_id": "061316",
"state": "CO",
"score": "0",
"address_1": "23500 US HWY 160",
"city": "WALSENBURG",
"footnote": "No data are available from the hospital for this measure",
"county_name": "HUERFANO"
},
{
"hospital_name": "UT SOUTHWESTERN UNIVERSITY HOSPITAL-ZALE LIPSHY",
"phone_number": {
"phone_number": "2148793758"
},
"zip_code": "75390",
"measure": "CAUTI Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-96.83627980205308",
"latitude": "32.81090801402004",
"human_address": "{\"address\":\"5151 HARRY HINES BLVD\",\"city\":\"DALLAS\",\"state\":\"TX\",\"zip\":\"75390\"}"
},
"provider_id": "450766",
"state": "TX",
"score": "8.496",
"address_1": "5151 HARRY HINES BLVD",
"city": "DALLAS",
"county_name": "DALLAS"
},
{
"hospital_name": "SUNRISE HOSPITAL AND MEDICAL CENTER",
"phone_number": {
"phone_number": "7027318000"
},
"zip_code": "89109",
"measure": "CLABSI Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-115.1368284896228",
"latitude": "36.13188468804491",
"human_address": "{\"address\":\"3186 S MARYLAND PKWY\",\"city\":\"LAS VEGAS\",\"state\":\"NV\",\"zip\":\"89109\"}"
},
"provider_id": "290003",
"state": "NV",
"score": "7",
"address_1": "3186 S MARYLAND PKWY",
"city": "LAS VEGAS",
"county_name": "CLARK"
},
{
"hospital_name": "BLUEGRASS COMMUNITY HOSPITAL",
"phone_number": {
"phone_number": "8598792300"
},
"zip_code": "40383",
"measure": "SSI: Colon, Number of Procedures",
"location": {
"needs_recoding": false,
"longitude": "-84.72438840524956",
"latitude": "38.05534480086618",
"human_address": "{\"address\":\"360 AMSDEN AVENUE\",\"city\":\"VERSAILLES\",\"state\":\"KY\",\"zip\":\"40383\"}"
},
"provider_id": "181308",
"state": "KY",
"score": "0",
"address_1": "360 AMSDEN AVENUE",
"city": "VERSAILLES",
"footnote": "No data are available from the hospital for this measure",
"county_name": "WOODFORD"
},
{
"hospital_name": "RESEARCH MEDICAL CENTER",
"phone_number": {
"phone_number": "8162764000"
},
"zip_code": "64132",
"measure": "Catheter-Associated Urinary Tract Infections (CAUTI)",
"location": {
"needs_recoding": false,
"longitude": "-94.55968282390285",
"latitude": "39.00718810013609",
"human_address": "{\"address\":\"2316 E MEYER BLVD\",\"city\":\"KANSAS CITY\",\"state\":\"MO\",\"zip\":\"64132\"}"
},
"provider_id": "260027",
"state": "MO",
"score": "2.11",
"address_1": "2316 E MEYER BLVD",
"city": "KANSAS CITY",
"county_name": "JACKSON"
},
{
"hospital_name": "MERCY FRANCISCAN HOSPITAL WESTERN HILLS",
"phone_number": {
"phone_number": "5133895915"
},
"zip_code": "45238",
"measure": "CAUTI Urinary Catheter Days",
"location": {
"needs_recoding": false,
"longitude": "-84.60525521602818",
"latitude": "39.13631189364418",
"human_address": "{\"address\":\"3131 QUEEN CITY AVENUE\",\"city\":\"CINCINNATI\",\"state\":\"OH\",\"zip\":\"45238\"}"
},
"provider_id": "360113",
"state": "OH",
"score": "926",
"address_1": "3131 QUEEN CITY AVENUE",
"city": "CINCINNATI",
"footnote": "The lower limit of the confidence interval cannot be calculated if the number of observed infections equals zero",
"county_name": "HAMILTON"
},
{
"hospital_name": "CENTRO CARDIOVASCULAR",
"phone_number": {
"phone_number": "7877548500"
},
"zip_code": "00936",
"measure": "CAUTI Upper Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-66.06063000017423",
"latitude": "18.416839999766353",
"human_address": "{\"address\":\"AVENIDA AMERICO MIRANDA, ENTRADA PRINCIPAL CM\",\"city\":\"RIO PIEDRAS\",\"state\":\"PR\",\"zip\":\"00936\"}"
},
"provider_id": "400124",
"state": "PR",
"score": "0.862",
"address_1": "AVENIDA AMERICO MIRANDA, ENTRADA PRINCIPAL CM",
"city": "RIO PIEDRAS",
"footnote": "The lower limit of the confidence interval cannot be calculated if the number of observed infections equals zero",
"county_name": "SAN JUAN"
},
{
"hospital_name": "PALOS COMMUNITY HOSPITAL",
"phone_number": {
"phone_number": "7089234000"
},
"zip_code": "60463",
"measure": "CLABSI Upper Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-87.8158381764325",
"latitude": "41.66830272151739",
"human_address": "{\"address\":\"12251 SOUTH 80TH AVENUE\",\"city\":\"PALOS HEIGHTS\",\"state\":\"IL\",\"zip\":\"60463\"}"
},
"provider_id": "140062",
"state": "IL",
"score": "1.575",
"address_1": "12251 SOUTH 80TH AVENUE",
"city": "PALOS HEIGHTS",
"county_name": "COOK"
},
{
"hospital_name": "ALLEGIANCE HEALTH",
"phone_number": {
"phone_number": "5177884800"
},
"zip_code": "49201",
"measure": "CAUTI Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-84.39348286456863",
"latitude": "42.25007952179101",
"human_address": "{\"address\":\"205 N EAST AVE\",\"city\":\"JACKSON\",\"state\":\"MI\",\"zip\":\"49201\"}"
},
"provider_id": "230092",
"state": "MI",
"score": "0",
"address_1": "205 N EAST AVE",
"city": "JACKSON",
"footnote": "The lower limit of the confidence interval cannot be calculated if the number of observed infections equals zero",
"county_name": "JACKSON"
},
{
"hospital_name": "NYU HOSPITALS CENTER",
"phone_number": {
"phone_number": "2122637300"
},
"zip_code": "10016",
"measure": "SSI: Abdominal, Number of Procedures",
"location": {
"needs_recoding": false,
"longitude": "-73.97449496286752",
"latitude": "40.742337919405166",
"human_address": "{\"address\":\"550 FIRST AVENUE\",\"city\":\"NEW YORK\",\"state\":\"NY\",\"zip\":\"10016\"}"
},
"provider_id": "330214",
"state": "NY",
"score": "136",
"address_1": "550 FIRST AVENUE",
"city": "NEW YORK",
"footnote": "The lower limit of the confidence interval cannot be calculated if the number of observed infections equals zero",
"county_name": "NEW YORK"
},
{
"hospital_name": "HENNEPIN COUNTY MEDICAL CENTER",
"phone_number": {
"phone_number": "6128733000"
},
"zip_code": "55415",
"measure": "Catheter-Associated Urinary Tract Infections (CAUTI)",
"location": {
"needs_recoding": false,
"longitude": "-93.26280356159197",
"latitude": "44.97263307397208",
"human_address": "{\"address\":\"701 PARK AVENUE\",\"city\":\"MINNEAPOLIS\",\"state\":\"MN\",\"zip\":\"55415\"}"
},
"provider_id": "240004",
"state": "MN",
"score": "2.76",
"address_1": "701 PARK AVENUE",
"city": "MINNEAPOLIS",
"county_name": "HENNEPIN"
},
{
"hospital_name": "DELNOR COMMUNITY HOSPITAL",
"phone_number": {
"phone_number": "6302083000"
},
"zip_code": "60134",
"measure": "CAUTI Urinary Catheter Days",
"location": {
"needs_recoding": false,
"longitude": "-88.34043807291889",
"latitude": "41.88663875224312",
"human_address": "{\"address\":\"300 RANDALL RD\",\"city\":\"GENEVA\",\"state\":\"IL\",\"zip\":\"60134\"}"
},
"provider_id": "140211",
"state": "IL",
"score": "1024",
"address_1": "300 RANDALL RD",
"city": "GENEVA",
"county_name": "KANE"
},
{
"hospital_name": "MARION GENERAL HOSPITAL",
"phone_number": {
"phone_number": "7656606000"
},
"zip_code": "46952",
"measure": "CAUTI Upper Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-85.66538213539665",
"latitude": "40.5640206665741",
"human_address": "{\"address\":\"441 N WABASH AVE\",\"city\":\"MARION\",\"state\":\"IN\",\"zip\":\"46952\"}"
},
"provider_id": "150011",
"state": "IN",
"score": "4.841",
"address_1": "441 N WABASH AVE",
"city": "MARION",
"county_name": "GRANT"
},
{
"hospital_name": "BAPTIST EASLEY HOSPITAL",
"phone_number": {
"phone_number": "8644427200"
},
"zip_code": "29640",
"measure": "SSI: Colon, Number of Procedures",
"location": {
"needs_recoding": false,
"longitude": "-82.6079334175463",
"latitude": "34.83905045884081",
"human_address": "{\"address\":\"200 FLEETWOOD DRIVE\",\"city\":\"EASLEY\",\"state\":\"SC\",\"zip\":\"29640\"}"
},
"provider_id": "420015",
"state": "SC",
"score": "17",
"address_1": "200 FLEETWOOD DRIVE",
"city": "EASLEY",
"footnote": "No data are available from the hospital for this measure",
"county_name": "PICKENS"
},
{
"hospital_name": "RAPPAHANNOCK GENERAL HOSPITAL",
"phone_number": {
"phone_number": "8044358000"
},
"zip_code": "22482",
"measure": "SSI: Abdominal, Number of Procedures",
"location": {
"needs_recoding": false,
"longitude": "-76.39325883995447",
"latitude": "37.704581377298446",
"human_address": "{\"address\":\"101 HARRIS ROAD\",\"city\":\"KILMARNOCK\",\"state\":\"VA\",\"zip\":\"22482\"}"
},
"provider_id": "490123",
"state": "VA",
"score": "3",
"address_1": "101 HARRIS ROAD",
"city": "KILMARNOCK",
"footnote": "No data are available from the hospital for this measure",
"county_name": "LANCASTER"
},
{
"hospital_name": "ST CATHERINE HOSPITAL INC",
"phone_number": {
"phone_number": "2193927004"
},
"zip_code": "46312",
"measure": "SSI: Abdominal Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-87.44854959375864",
"latitude": "41.63611398698741",
"human_address": "{\"address\":\"4321 FIR ST\",\"city\":\"EAST CHICAGO\",\"state\":\"IN\",\"zip\":\"46312\"}"
},
"provider_id": "150008",
"state": "IN",
"score": "0",
"address_1": "4321 FIR ST",
"city": "EAST CHICAGO",
"footnote": "No data are available from the hospital for this measure",
"county_name": "LAKE"
},
{
"hospital_name": "QUAIL CREEK SURGICAL HOSPITAL",
"phone_number": {
"phone_number": "8063546100"
},
"zip_code": "79124",
"measure": "SSI: Abdominal, Number of Procedures",
"location": {
"needs_recoding": false,
"longitude": "-101.93746999984046",
"latitude": "35.23523000036437",
"human_address": "{\"address\":\"6819 PLUM CREEK\",\"city\":\"AMARILLO\",\"state\":\"TX\",\"zip\":\"79124\"}"
},
"provider_id": "450875",
"state": "TX",
"score": "17",
"address_1": "6819 PLUM CREEK",
"city": "AMARILLO",
"footnote": "No data are available from the hospital for this measure",
"county_name": "POTTER"
},
{
"hospital_name": "UNIVERSITY OF LOUISVILLE HOSPITAL",
"phone_number": {
"phone_number": "5025623000"
},
"zip_code": "40202",
"measure": "SSI: Colon Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-85.7450723394669",
"latitude": "38.248591208526214",
"human_address": "{\"address\":\"530 SOUTH JACKSON STREET\",\"city\":\"LOUISVILLE\",\"state\":\"KY\",\"zip\":\"40202\"}"
},
"provider_id": "180141",
"state": "KY",
"score": "0.835",
"address_1": "530 SOUTH JACKSON STREET",
"city": "LOUISVILLE",
"footnote": "No data are available from the hospital for this measure",
"county_name": "JEFFERSON"
},
{
"hospital_name": "MEMORIAL HOSPITAL",
"phone_number": {
"phone_number": "7178438623"
},
"zip_code": "17403",
"measure": "CLABSI Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-76.6938473785138",
"latitude": "39.96756423854646",
"human_address": "{\"address\":\"325 SOUTH BELMONT STREET\",\"city\":\"YORK\",\"state\":\"PA\",\"zip\":\"17403\"}"
},
"provider_id": "390101",
"state": "PA",
"score": "0",
"address_1": "325 SOUTH BELMONT STREET",
"city": "YORK",
"footnote": "The lower limit of the confidence interval cannot be calculated if the number of observed infections equals zero",
"county_name": "YORK"
},
{
"hospital_name": "REDLANDS COMMUNITY HOSPITAL",
"phone_number": {
"phone_number": "9093355500"
},
"zip_code": "92373",
"measure": "CAUTI Upper Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-117.20385315443372",
"latitude": "34.036679346837616",
"human_address": "{\"address\":\"350 TERRACINA BLVD\",\"city\":\"REDLANDS\",\"state\":\"CA\",\"zip\":\"92373\"}"
},
"provider_id": "050272",
"state": "CA",
"score": "3.004",
"address_1": "350 TERRACINA BLVD",
"city": "REDLANDS",
"county_name": "SAN BERNARDINO"
},
{
"hospital_name": "JEWISH HOSPITAL - SHELBYVILLE",
"phone_number": {
"phone_number": "5026474300"
},
"zip_code": "40065",
"measure": "SSI: Colon, Number of Procedures",
"location": {
"needs_recoding": false,
"longitude": "-85.23603219358766",
"latitude": "38.2106577970225",
"human_address": "{\"address\":\"727 HOSPITAL DRIVE\",\"city\":\"SHELBYVILLE\",\"state\":\"KY\",\"zip\":\"40065\"}"
},
"provider_id": "180016",
"state": "KY",
"score": "7",
"address_1": "727 HOSPITAL DRIVE",
"city": "SHELBYVILLE",
"footnote": "No data are available from the hospital for this measure",
"county_name": "SHELBY"
},
{
"hospital_name": "SEQUOIA HOSPITAL",
"phone_number": {
"phone_number": "6503675551"
},
"zip_code": "94062",
"measure": "CLABSI Lower Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-122.25322259302266",
"latitude": "37.48096580719283",
"human_address": "{\"address\":\"170 ALAMEDA DE LAS PULGAS\",\"city\":\"REDWOOD CITY\",\"state\":\"CA\",\"zip\":\"94062\"}"
},
"provider_id": "050197",
"state": "CA",
"score": "0.009",
"address_1": "170 ALAMEDA DE LAS PULGAS",
"city": "REDWOOD CITY",
"county_name": "SAN MATEO"
},
{
"hospital_name": "TRINITAS REGIONAL MEDICAL CENTER",
"phone_number": {
"phone_number": "9089945000"
},
"zip_code": "07207",
"measure": "Central-Line-Associated Blood Stream Infections (CLABSI)",
"location": {
"needs_recoding": false,
"longitude": "-74.21445649213737",
"latitude": "40.65953912838045",
"human_address": "{\"address\":\"225 WILLIAMSON STREET\",\"city\":\"ELIZABETH\",\"state\":\"NJ\",\"zip\":\"07207\"}"
},
"provider_id": "310027",
"state": "NJ",
"score": "0.41",
"address_1": "225 WILLIAMSON STREET",
"city": "ELIZABETH",
"county_name": "UNION"
},
{
"hospital_name": "PROVIDENCE SAINT JOSEPH MEDICAL CTR",
"phone_number": {
"phone_number": "8188435111"
},
"zip_code": "91505",
"measure": "SSI: Colon, Number of Procedures",
"location": {
"needs_recoding": false,
"longitude": "-118.34408999985345",
"latitude": "34.16710999962697",
"human_address": "{\"address\":\"501 SOUTH BUENA VISTA\",\"city\":\"BURBANK\",\"state\":\"CA\",\"zip\":\"91505\"}"
},
"provider_id": "050235",
"state": "CA",
"score": "66",
"address_1": "501 SOUTH BUENA VISTA",
"city": "BURBANK",
"county_name": "LOS ANGELES"
},
{
"hospital_name": "KANSAS HEART HOSPITAL",
"phone_number": {
"phone_number": "3166305000"
},
"zip_code": "67226",
"measure": "CLABSI Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-97.2263855413259",
"latitude": "37.75007893124058",
"human_address": "{\"address\":\"3601 NORTH WEBB ROAD\",\"city\":\"WICHITA\",\"state\":\"KS\",\"zip\":\"67226\"}"
},
"provider_id": "170186",
"state": "KS",
"score": "0",
"address_1": "3601 NORTH WEBB ROAD",
"city": "WICHITA",
"footnote": "The lower limit of the confidence interval cannot be calculated if the number of observed infections equals zero",
"county_name": "SEDGWICK"
},
{
"hospital_name": "NORTHEAST GEORGIA MEDICAL CENTER, INC",
"phone_number": {
"phone_number": "7705353553"
},
"zip_code": "30501",
"measure": "SSI: Colon Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-83.81873514886331",
"latitude": "34.30236605395373",
"human_address": "{\"address\":\"743 SPRING STREET\",\"city\":\"GAINESVILLE\",\"state\":\"GA\",\"zip\":\"30501\"}"
},
"provider_id": "110029",
"state": "GA",
"score": "2",
"address_1": "743 SPRING STREET",
"city": "GAINESVILLE",
"county_name": "HALL"
},
{
"hospital_name": "SOUTHWEST GENERAL HEALTH CENTER",
"phone_number": {
"phone_number": "4408168000"
},
"zip_code": "44130",
"measure": "Central-Line-Associated Blood Stream Infections (CLABSI)",
"location": {
"needs_recoding": false,
"longitude": "-81.83292418952539",
"latitude": "41.37205343814486",
"human_address": "{\"address\":\"18697 BAGLEY ROAD\",\"city\":\"MIDDLEBURG HEIGHTS\",\"state\":\"OH\",\"zip\":\"44130\"}"
},
"provider_id": "360155",
"state": "OH",
"score": "0.47",
"address_1": "18697 BAGLEY ROAD",
"city": "MIDDLEBURG HEIGHTS",
"county_name": "CUYAHOGA"
},
{
"hospital_name": "BAYSTATE FRANKLIN MEDICAL CENTER",
"phone_number": {
"phone_number": "4137730211"
},
"zip_code": "01301",
"measure": "SSI: Abdominal Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-72.59183275880974",
"latitude": "42.595050459010224",
"human_address": "{\"address\":\"164 HIGH STREET\",\"city\":\"GREENFIELD\",\"state\":\"MA\",\"zip\":\"01301\"}"
},
"provider_id": "220016",
"state": "MA",
"score": "1",
"address_1": "164 HIGH STREET",
"city": "GREENFIELD",
"footnote": "No data are available from the hospital for this measure",
"county_name": "FRANKLIN"
},
{
"hospital_name": "CYPRESS FAIRBANKS MEDICAL CENTER",
"phone_number": {
"phone_number": "2818973100"
},
"zip_code": "77065",
"measure": "CLABSI Upper Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-95.58864818020822",
"latitude": "29.926337005142273",
"human_address": "{\"address\":\"10655 STEEPLETOP DRIVE\",\"city\":\"HOUSTON\",\"state\":\"TX\",\"zip\":\"77065\"}"
},
"provider_id": "450716",
"state": "TX",
"score": "1.669",
"address_1": "10655 STEEPLETOP DRIVE",
"city": "HOUSTON",
"county_name": "HARRIS"
},
{
"hospital_name": "LAFAYETTE GENERAL MEDICAL CENTER",
"phone_number": {
"phone_number": "3372897991"
},
"zip_code": "70503",
"measure": "CLABSI Lower Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-92.01867902144814",
"latitude": "30.20229983697004",
"human_address": "{\"address\":\"1214 COOLIDGE AVENUE\",\"city\":\"LAFAYETTE\",\"state\":\"LA\",\"zip\":\"70503\"}"
},
"provider_id": "190002",
"state": "LA",
"score": "0.347",
"address_1": "1214 COOLIDGE AVENUE",
"city": "LAFAYETTE",
"county_name": "LAFAYETTE"
},
{
"hospital_name": "SINAI HOSPITAL OF BALTIMORE",
"phone_number": {
"phone_number": "4106015131"
},
"zip_code": "21215",
"measure": "SSI: Colon, Number of Procedures",
"location": {
"needs_recoding": false,
"longitude": "-76.66225419562448",
"latitude": "39.35468526879879",
"human_address": "{\"address\":\"2401 WEST BELVEDERE AVE\",\"city\":\"BALTIMORE\",\"state\":\"MD\",\"zip\":\"21215\"}"
},
"provider_id": "210012",
"state": "MD",
"score": "34",
"address_1": "2401 WEST BELVEDERE AVE",
"city": "BALTIMORE",
"county_name": "BALTIMORE CITY"
},
{
"hospital_name": "MIDDLESEX HOSPITAL",
"phone_number": {
"phone_number": "8603446000"
},
"zip_code": "06457",
"measure": "SSI: Colon Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-72.6476123733085",
"latitude": "41.554783316758915",
"human_address": "{\"address\":\"28 CRESCENT ST\",\"city\":\"MIDDLETOWN\",\"state\":\"CT\",\"zip\":\"06457\"}"
},
"provider_id": "070020",
"state": "CT",
"score": "3",
"address_1": "28 CRESCENT ST",
"city": "MIDDLETOWN",
"county_name": "MIDDLESEX"
},
{
"hospital_name": "FAIRVIEW PARK HOSPITAL",
"phone_number": {
"phone_number": "4782743100"
},
"zip_code": "31021",
"measure": "CAUTI Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-82.94934255669841",
"latitude": "32.53326472401625",
"human_address": "{\"address\":\"200 INDUSTRIAL BOULEVARD\",\"city\":\"DUBLIN\",\"state\":\"GA\",\"zip\":\"31021\"}"
},
"provider_id": "110125",
"state": "GA",
"score": "0.768",
"address_1": "200 INDUSTRIAL BOULEVARD",
"city": "DUBLIN",
"footnote": "No data are available from the hospital for this measure",
"county_name": "LAURENS"
},
{
"hospital_name": "ST JOSEPH'S HOSPITAL",
"phone_number": {
"phone_number": "6512323000"
},
"zip_code": "55102",
"measure": "SSI: Colon Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-93.0999347374934",
"latitude": "44.94922016212539",
"human_address": "{\"address\":\"45 WEST 10TH STREET\",\"city\":\"SAINT PAUL\",\"state\":\"MN\",\"zip\":\"55102\"}"
},
"provider_id": "240063",
"state": "MN",
"score": "1",
"address_1": "45 WEST 10TH STREET",
"city": "SAINT PAUL",
"county_name": "RAMSEY"
},
{
"hospital_name": "FRANKLIN WOODS COMMUNITY HOSPITAL",
"phone_number": {
"phone_number": "4238545600"
},
"zip_code": "37601",
"measure": "SSI: Abdominal Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-82.3712133901629",
"latitude": "36.351066602800586",
"human_address": "{\"address\":\"401 PRINCETON RD\",\"city\":\"JOHNSON CITY\",\"state\":\"TN\",\"zip\":\"37601\"}"
},
"provider_id": "440184",
"state": "TN",
"score": "0",
"address_1": "401 PRINCETON RD",
"city": "JOHNSON CITY",
"footnote": "No data are available from the hospital for this measure",
"county_name": "WASHINGTON"
},
{
"hospital_name": "COLUMBIA MEMORIAL HOSPITAL",
"phone_number": {
"phone_number": "5188287601"
},
"zip_code": "12534",
"measure": "SSI: Colon, Number of Procedures",
"location": {
"needs_recoding": false,
"longitude": "-73.77788563071147",
"latitude": "42.24579874893158",
"human_address": "{\"address\":\"71 PROSPECT AVENUE\",\"city\":\"HUDSON\",\"state\":\"NY\",\"zip\":\"12534\"}"
},
"provider_id": "330094",
"state": "NY",
"score": "23",
"address_1": "71 PROSPECT AVENUE",
"city": "HUDSON",
"footnote": "No data are available from the hospital for this measure",
"county_name": "COLUMBIA"
},
{
"hospital_name": "RIVER PARISHES HOSPITAL",
"phone_number": {
"phone_number": "9856527000"
},
"zip_code": "70068",
"measure": "SSI: Abdominal, Number of Procedures",
"location": {
"needs_recoding": false,
"longitude": "-90.51544558420477",
"latitude": "30.072396802652563",
"human_address": "{\"address\":\"500 RUE DE SANTE\",\"city\":\"LAPLACE\",\"state\":\"LA\",\"zip\":\"70068\"}"
},
"provider_id": "190175",
"state": "LA",
"score": "7",
"address_1": "500 RUE DE SANTE",
"city": "LAPLACE",
"footnote": "No data are available from the hospital for this measure",
"county_name": "ST JOHN THE BAPTIST"
},
{
"hospital_name": "GOOD SHEPHERD MEDICAL CENTER MARSHALL",
"phone_number": {
"phone_number": "9039276712"
},
"zip_code": "75670",
"measure": "CLABSI Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-94.36786626873904",
"latitude": "32.53735065079869",
"human_address": "{\"address\":\"811 S WASHINGTON\",\"city\":\"MARSHALL\",\"state\":\"TX\",\"zip\":\"75670\"}"
},
"provider_id": "450032",
"state": "TX",
"score": "0",
"address_1": "811 S WASHINGTON",
"city": "MARSHALL",
"footnote": "No data are available from the hospital for this measure",
"county_name": "HARRISON"
},
{
"hospital_name": "TOPPENISH COMMUNITY HOSPITAL",
"phone_number": {
"phone_number": "5098651520"
},
"zip_code": "98948",
"measure": "SSI: Colon Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-120.31663152834835",
"latitude": "46.371330639701796",
"human_address": "{\"address\":\"502 W FOURTH AVE\",\"city\":\"TOPPENISH\",\"state\":\"WA\",\"zip\":\"98948\"}"
},
"provider_id": "500037",
"state": "WA",
"score": "0.113",
"address_1": "502 W FOURTH AVE",
"city": "TOPPENISH",
"footnote": "No data are available from the hospital for this measure",
"county_name": "YAKIMA"
},
{
"hospital_name": "SEQUOIA HOSPITAL",
"phone_number": {
"phone_number": "6503675551"
},
"zip_code": "94062",
"measure": "CLABSI Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-122.25322259302266",
"latitude": "37.48096580719283",
"human_address": "{\"address\":\"170 ALAMEDA DE LAS PULGAS\",\"city\":\"REDWOOD CITY\",\"state\":\"CA\",\"zip\":\"94062\"}"
},
"provider_id": "050197",
"state": "CA",
"score": "1",
"address_1": "170 ALAMEDA DE LAS PULGAS",
"city": "REDWOOD CITY",
"county_name": "SAN MATEO"
},
{
"hospital_name": "REGIONAL HOSPITAL OF SCRANTON",
"phone_number": {
"phone_number": "5703487100"
},
"zip_code": "18501",
"measure": "SSI: Colon, Number of Procedures",
"location": {
"needs_recoding": false,
"longitude": "-75.6539900054445",
"latitude": "41.41281773972014",
"human_address": "{\"address\":\"746 JEFFERSON AVENUE\",\"city\":\"SCRANTON\",\"state\":\"PA\",\"zip\":\"18501\"}"
},
"provider_id": "390237",
"state": "PA",
"score": "53",
"address_1": "746 JEFFERSON AVENUE",
"city": "SCRANTON",
"county_name": "LACKAWANNA"
},
{
"hospital_name": "COFFEE REGIONAL MEDICAL CENTER",
"phone_number": {
"phone_number": "2293841900"
},
"zip_code": "31533",
"measure": "SSI: Abdominal Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-82.8634279693545",
"latitude": "31.50965418883302",
"human_address": "{\"address\":\"1101 OCILLA ROAD\",\"city\":\"DOUGLAS\",\"state\":\"GA\",\"zip\":\"31533\"}"
},
"provider_id": "110089",
"state": "GA",
"score": "0.259",
"address_1": "1101 OCILLA ROAD",
"city": "DOUGLAS",
"footnote": "No data are available from the hospital for this measure",
"county_name": "COFFEE"
},
{
"hospital_name": "HUTCHINSON AREA HEALTH CARE",
"phone_number": {
"phone_number": "3202345000"
},
"zip_code": "55350",
"measure": "CLABSI Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-94.37549873556372",
"latitude": "44.875668172772976",
"human_address": "{\"address\":\"1095 HIGHWAY 15 SOUTH\",\"city\":\"HUTCHINSON\",\"state\":\"MN\",\"zip\":\"55350\"}"
},
"provider_id": "240187",
"state": "MN",
"score": "0",
"address_1": "1095 HIGHWAY 15 SOUTH",
"city": "HUTCHINSON",
"footnote": "No data are available from the hospital for this measure",
"county_name": "MCLEOD"
},
{
"hospital_name": "HARRISON MEDICAL CENTER",
"phone_number": {
"phone_number": "3603773911"
},
"zip_code": "98310",
"measure": "CLABSI Lower Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-122.62598258094721",
"latitude": "47.58234869113687",
"human_address": "{\"address\":\"2520 CHERRY AVENUE\",\"city\":\"BREMERTON\",\"state\":\"WA\",\"zip\":\"98310\"}"
},
"provider_id": "500039",
"state": "WA",
"score": "0.004",
"address_1": "2520 CHERRY AVENUE",
"city": "BREMERTON",
"county_name": "KITSAP"
},
{
"hospital_name": "SOUTHEAST ALABAMA MEDICAL CENTER",
"phone_number": {
"phone_number": "3347938701"
},
"zip_code": "36301",
"measure": "Central-Line-Associated Blood Stream Infections (CLABSI)",
"location": {
"needs_recoding": false,
"longitude": "-85.36149620835074",
"latitude": "31.215421490943385",
"human_address": "{\"address\":\"1108 ROSS CLARK CIRCLE\",\"city\":\"DOTHAN\",\"state\":\"AL\",\"zip\":\"36301\"}"
},
"provider_id": "010001",
"state": "AL",
"score": "0.32",
"address_1": "1108 ROSS CLARK CIRCLE",
"city": "DOTHAN",
"county_name": "HOUSTON"
},
{
"hospital_name": "WENTWORTH-DOUGLASS HOSPITAL",
"phone_number": {
"phone_number": "6037402580"
},
"zip_code": "03820",
"measure": "SSI: Abdominal, Number of Procedures",
"location": {
"needs_recoding": false,
"longitude": "-70.87489678897882",
"latitude": "43.21231721101886",
"human_address": "{\"address\":\"789 CENTRAL AVE\",\"city\":\"DOVER\",\"state\":\"NH\",\"zip\":\"03820\"}"
},
"provider_id": "300018",
"state": "NH",
"score": "80",
"address_1": "789 CENTRAL AVE",
"city": "DOVER",
"footnote": "No data are available from the hospital for this measure",
"county_name": "STRAFFORD"
},
{
"hospital_name": "SOUTHSIDE COMMUNITY HOSPITAL, INC",
"phone_number": {
"phone_number": "4343928811"
},
"zip_code": "23901",
"measure": "CAUTI Urinary Catheter Days",
"location": {
"needs_recoding": false,
"longitude": "-78.40362415504806",
"latitude": "37.303698519919",
"human_address": "{\"address\":\"800 OAK STREET\",\"city\":\"FARMVILLE\",\"state\":\"VA\",\"zip\":\"23901\"}"
},
"provider_id": "490090",
"state": "VA",
"score": "354",
"address_1": "800 OAK STREET",
"city": "FARMVILLE",
"footnote": "No data are available from the hospital for this measure",
"county_name": "PRINCE EDWARD"
},
{
"hospital_name": "WEST ANAHEIM MEDICAL CENTER",
"phone_number": {
"phone_number": "7148273000"
},
"zip_code": "92804",
"measure": "CLABSI Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-117.9946629876784",
"latitude": "33.8247631038534",
"human_address": "{\"address\":\"3033 W ORANGE AVENUE\",\"city\":\"ANAHEIM\",\"state\":\"CA\",\"zip\":\"92804\"}"
},
"provider_id": "050426",
"state": "CA",
"score": "2.341",
"address_1": "3033 W ORANGE AVENUE",
"city": "ANAHEIM",
"county_name": "ORANGE"
},
{
"hospital_name": "MISSOURI SOUTHERN HEALTHCARE",
"phone_number": {
"phone_number": "5736245566"
},
"zip_code": "63841",
"measure": "CAUTI Urinary Catheter Days",
"location": {
"needs_recoding": false,
"longitude": "-89.9699283938499",
"latitude": "36.80708017903509",
"human_address": "{\"address\":\"1200 N ONE MILE RD\",\"city\":\"DEXTER\",\"state\":\"MO\",\"zip\":\"63841\"}"
},
"provider_id": "260160",
"state": "MO",
"score": "48",
"address_1": "1200 N ONE MILE RD",
"city": "DEXTER",
"footnote": "No data are available from the hospital for this measure",
"county_name": "STODDARD"
},
{
"hospital_name": "UINTAH BASIN MEDICAL CENTER",
"phone_number": {
"phone_number": "4357224691"
},
"zip_code": "84066",
"measure": "CAUTI Urinary Catheter Days",
"location": {
"needs_recoding": false,
"longitude": "-109.98033862570709",
"latitude": "40.303415186929726",
"human_address": "{\"address\":\"250 WEST 300 NORTH (75-2)\",\"city\":\"ROOSEVELT\",\"state\":\"UT\",\"zip\":\"84066\"}"
},
"provider_id": "460019",
"state": "UT",
"score": "51",
"address_1": "250 WEST 300 NORTH (75-2)",
"city": "ROOSEVELT",
"footnote": "No data are available from the hospital for this measure",
"county_name": "DUCHESNE"
},
{
"hospital_name": "CONTRA COSTA REGIONAL MEDICAL CENTER",
"phone_number": {
"phone_number": "9253705000"
},
"zip_code": "94553",
"measure": "CAUTI Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-122.13092379025818",
"latitude": "38.00622383162579",
"human_address": "{\"address\":\"2500 ALHAMBRA AVE\",\"city\":\"MARTINEZ\",\"state\":\"CA\",\"zip\":\"94553\"}"
},
"provider_id": "050276",
"state": "CA",
"score": "3",
"address_1": "2500 ALHAMBRA AVE",
"city": "MARTINEZ",
"footnote": "No data are available from the hospital for this measure",
"county_name": "CONTRA COSTA"
},
{
"hospital_name": "POCONO MEDICAL CENTER",
"phone_number": {
"phone_number": "5704763348"
},
"zip_code": "18301",
"measure": "SSI: Colon Upper Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-75.17476832556319",
"latitude": "40.99226568229875",
"human_address": "{\"address\":\"206 EAST BROWN STREET\",\"city\":\"EAST STROUDSBURG\",\"state\":\"PA\",\"zip\":\"18301\"}"
},
"provider_id": "390201",
"state": "PA",
"score": "2.513",
"address_1": "206 EAST BROWN STREET",
"city": "EAST STROUDSBURG",
"county_name": "MONROE"
},
{
"hospital_name": "CANCER TREATMENT CENTERS OF AMERICA",
"phone_number": {
"phone_number": "2157446728"
},
"zip_code": "19124",
"measure": "CLABSI Upper Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-75.09850405785733",
"latitude": "40.01834895354102",
"human_address": "{\"address\":\"1331 EAST WYOMING AVENUE\",\"city\":\"PHILADELPHIA\",\"state\":\"PA\",\"zip\":\"19124\"}"
},
"provider_id": "390312",
"state": "PA",
"score": "9.177",
"address_1": "1331 EAST WYOMING AVENUE",
"city": "PHILADELPHIA",
"county_name": "PHILADELPHIA"
},
{
"hospital_name": "NORTHRIDGE HOSPITAL MEDICAL CENTER",
"phone_number": {
"phone_number": "8188858500"
},
"zip_code": "91325",
"measure": "SSI: Abdominal Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-118.53186400866042",
"latitude": "34.22075257979475",
"human_address": "{\"address\":\"18300 ROSCOE BLVD\",\"city\":\"NORTHRIDGE\",\"state\":\"CA\",\"zip\":\"91325\"}"
},
"provider_id": "050116",
"state": "CA",
"score": "0.641",
"address_1": "18300 ROSCOE BLVD",
"city": "NORTHRIDGE",
"footnote": "No data are available from the hospital for this measure",
"county_name": "LOS ANGELES"
},
{
"hospital_name": "SENTARA VIRGINIA BEACH GENERAL HOSPITAL",
"phone_number": {
"phone_number": "7573958000"
},
"zip_code": "23454",
"measure": "Central-Line-Associated Blood Stream Infections (CLABSI)",
"location": {
"needs_recoding": false,
"longitude": "-76.02833109039119",
"latitude": "36.864012908652455",
"human_address": "{\"address\":\"1060 FIRST COLONIAL ROAD\",\"city\":\"VIRGINIA BEACH\",\"state\":\"VA\",\"zip\":\"23454\"}"
},
"provider_id": "490057",
"state": "VA",
"score": "0.09",
"address_1": "1060 FIRST COLONIAL ROAD",
"city": "VIRGINIA BEACH",
"county_name": "VIRGINIA BEACH CITY"
},
{
"hospital_name": "WEST HOUSTON MEDICAL CENTER",
"phone_number": {
"phone_number": "2815888080"
},
"zip_code": "77082",
"measure": "CAUTI Lower Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-95.59320774289677",
"latitude": "29.730563592583962",
"human_address": "{\"address\":\"12141 RICHMOND AVE\",\"city\":\"HOUSTON\",\"state\":\"TX\",\"zip\":\"77082\"}"
},
"provider_id": "450644",
"state": "TX",
"score": "0.063",
"address_1": "12141 RICHMOND AVE",
"city": "HOUSTON",
"county_name": "HARRIS"
},
{
"hospital_name": "WESTERN PLAINS MEDICAL COMPLEX",
"phone_number": {
"phone_number": "6202258400"
},
"zip_code": "67801",
"measure": "SSI: Colon Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-100.01500997281002",
"latitude": "37.78466450204349",
"human_address": "{\"address\":\"3001 AVENUE A\",\"city\":\"DODGE CITY\",\"state\":\"KS\",\"zip\":\"67801\"}"
},
"provider_id": "170175",
"state": "KS",
"score": "0.443",
"address_1": "3001 AVENUE A",
"city": "DODGE CITY",
"footnote": "No data are available from the hospital for this measure",
"county_name": "FORD"
},
{
"hospital_name": "MEDICAL CENTER OF PLANO",
"phone_number": {
"phone_number": "9725966800"
},
"zip_code": "75075",
"measure": "Surgical Site Infection from colon surgery (SSI: Colon)",
"location": {
"needs_recoding": false,
"longitude": "-96.76572581825752",
"latitude": "33.019375260513755",
"human_address": "{\"address\":\"3901 W 15TH ST\",\"city\":\"PLANO\",\"state\":\"TX\",\"zip\":\"75075\"}"
},
"provider_id": "450651",
"state": "TX",
"score": "0.00",
"address_1": "3901 W 15TH ST",
"city": "PLANO",
"footnote": "The lower limit of the confidence interval cannot be calculated if the number of observed infections equals zero",
"county_name": "COLLIN"
},
{
"hospital_name": "CHINLE COMPREHENSIVE HEALTH CARE FACILITY",
"phone_number": {
"phone_number": "9286747001"
},
"zip_code": "86503",
"measure": "SSI: Colon Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-109.52324999978754",
"latitude": "36.04439000029845",
"human_address": "{\"address\":\"US HWY 191, HOSPITAL ROAD\",\"city\":\"CHINLE\",\"state\":\"AZ\",\"zip\":\"86503\"}"
},
"provider_id": "030084",
"state": "AZ",
"score": "0.046",
"address_1": "US HWY 191, HOSPITAL ROAD",
"city": "CHINLE",
"footnote": "No data are available from the hospital for this measure",
"county_name": "APACHE"
},
{
"hospital_name": "SIERRA SURGERY HOSPITAL",
"phone_number": {
"phone_number": "7758831700"
},
"zip_code": "89703",
"measure": "SSI: Abdominal Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-119.78502725207677",
"latitude": "39.19992427101334",
"human_address": "{\"address\":\"1400 MEDICAL PKWY\",\"city\":\"CARSON CITY\",\"state\":\"NV\",\"zip\":\"89703\"}"
},
"provider_id": "290051",
"state": "NV",
"score": "0",
"address_1": "1400 MEDICAL PKWY",
"city": "CARSON CITY",
"footnote": "No data are available from the hospital for this measure",
"county_name": "CARSON CITY"
},
{
"hospital_name": "UNITY HOSPITAL OF ROCHESTER",
"phone_number": {
"phone_number": "5857237000"
},
"zip_code": "14626",
"measure": "CLABSI Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-77.70148375302267",
"latitude": "43.19203840850014",
"human_address": "{\"address\":\"1555 LONG POND ROAD\",\"city\":\"ROCHESTER\",\"state\":\"NY\",\"zip\":\"14626\"}"
},
"provider_id": "330226",
"state": "NY",
"score": "1",
"address_1": "1555 LONG POND ROAD",
"city": "ROCHESTER",
"county_name": "MONROE"
},
{
"hospital_name": "CARILION NEW RIVER VALLEY MEDICAL CENTER",
"phone_number": {
"phone_number": "5407312000"
},
"zip_code": "24073",
"measure": "SSI: Abdominal Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-80.50688285054287",
"latitude": "37.08895133462096",
"human_address": "{\"address\":\"2900 LAMB CIRCLE\",\"city\":\"CHRISTIANSBURG\",\"state\":\"VA\",\"zip\":\"24073\"}"
},
"provider_id": "490042",
"state": "VA",
"score": "0",
"address_1": "2900 LAMB CIRCLE",
"city": "CHRISTIANSBURG",
"footnote": "No data are available from the hospital for this measure",
"county_name": "MONTGOMERY"
},
{
"hospital_name": "SSM ST MARYS HEALTH CENTER",
"phone_number": {
"phone_number": "3147688000"
},
"zip_code": "63117",
"measure": "CLABSI Upper Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-90.31077000719444",
"latitude": "38.633968594517796",
"human_address": "{\"address\":\"6420 CLAYTON RD\",\"city\":\"RICHMOND HEIGHTS\",\"state\":\"MO\",\"zip\":\"63117\"}"
},
"provider_id": "260091",
"state": "MO",
"score": "0.582",
"address_1": "6420 CLAYTON RD",
"city": "RICHMOND HEIGHTS",
"county_name": "SAINT LOUIS"
},
{
"hospital_name": "ST PETERSBURG GENERAL HOSPITAL",
"phone_number": {
"phone_number": "7273841414"
},
"zip_code": "33710",
"measure": "Catheter-Associated Urinary Tract Infections (CAUTI)",
"location": {
"needs_recoding": false,
"longitude": "-82.72675136122638",
"latitude": "27.80632921259223",
"human_address": "{\"address\":\"6500 38TH AVE N\",\"city\":\"SAINT PETERSBURG\",\"state\":\"FL\",\"zip\":\"33710\"}"
},
"provider_id": "100180",
"state": "FL",
"score": "4.61",
"address_1": "6500 38TH AVE N",
"city": "SAINT PETERSBURG",
"county_name": "PINELLAS"
},
{
"hospital_name": "AURORA MEMORIAL HSPTL BURLINGTON",
"phone_number": {
"phone_number": "2627676000"
},
"zip_code": "53105",
"measure": "SSI: Colon Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-88.28261896671711",
"latitude": "42.67342637386372",
"human_address": "{\"address\":\"252 MCHENRY ST\",\"city\":\"BURLINGTON\",\"state\":\"WI\",\"zip\":\"53105\"}"
},
"provider_id": "520059",
"state": "WI",
"score": "1",
"address_1": "252 MCHENRY ST",
"city": "BURLINGTON",
"footnote": "No data are available from the hospital for this measure",
"county_name": "RACINE"
},
{
"hospital_name": "WHEATON FRANCISCAN HEALTHCARE- ST FRANCIS",
"phone_number": {
"phone_number": "4146475000"
},
"zip_code": "53215",
"measure": "SSI: Abdominal Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-87.93383490409366",
"latitude": "42.985626016335175",
"human_address": "{\"address\":\"3237 S 16TH ST\",\"city\":\"MILWAUKEE\",\"state\":\"WI\",\"zip\":\"53215\"}"
},
"provider_id": "520078",
"state": "WI",
"score": "0",
"address_1": "3237 S 16TH ST",
"city": "MILWAUKEE",
"footnote": "No data are available from the hospital for this measure",
"county_name": "MILWAUKEE"
},
{
"hospital_name": "LUTHERAN HOSPITAL OF INDIANA",
"phone_number": {
"phone_number": "2604357001"
},
"zip_code": "46804",
"measure": "Catheter-Associated Urinary Tract Infections (CAUTI)",
"location": {
"needs_recoding": false,
"longitude": "-85.24786577206453",
"latitude": "41.040563338144864",
"human_address": "{\"address\":\"7950 W JEFFERSON BLVD\",\"city\":\"FORT WAYNE\",\"state\":\"IN\",\"zip\":\"46804\"}"
},
"provider_id": "150017",
"state": "IN",
"score": "1.41",
"address_1": "7950 W JEFFERSON BLVD",
"city": "FORT WAYNE",
"county_name": "ALLEN"
},
{
"hospital_name": "NASHOBA VALLEY MEDICAL CENTER",
"phone_number": {
"phone_number": "9787849000"
},
"zip_code": "01432",
"measure": "CAUTI Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-71.57319767588251",
"latitude": "42.57615570317461",
"human_address": "{\"address\":\"200 GROTON ROAD\",\"city\":\"AYER\",\"state\":\"MA\",\"zip\":\"01432\"}"
},
"provider_id": "220098",
"state": "MA",
"score": "0",
"address_1": "200 GROTON ROAD",
"city": "AYER",
"footnote": "No data are available from the hospital for this measure",
"county_name": "MIDDLESEX"
},
{
"hospital_name": "FRANCISCAN ST MARGARET HEALTH - HAMMOND",
"phone_number": {
"phone_number": "2199322300"
},
"zip_code": "46320",
"measure": "CLABSI Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-87.5220874340574",
"latitude": "41.61448364170393",
"human_address": "{\"address\":\"5454 HOHMAN AVE\",\"city\":\"HAMMOND\",\"state\":\"IN\",\"zip\":\"46320\"}"
},
"provider_id": "150004",
"state": "IN",
"score": "4.023",
"address_1": "5454 HOHMAN AVE",
"city": "HAMMOND",
"county_name": "LAKE"
},
{
"hospital_name": "KANSAS MEDICAL CENTER LLC",
"phone_number": {
"phone_number": "3163004000"
},
"zip_code": "67002",
"measure": "SSI: Abdominal Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-97.14649937510018",
"latitude": "37.72329998233435",
"human_address": "{\"address\":\"1124 WEST 21ST STREET\",\"city\":\"ANDOVER\",\"state\":\"KS\",\"zip\":\"67002\"}"
},
"provider_id": "170197",
"state": "KS",
"score": "0.000",
"address_1": "1124 WEST 21ST STREET",
"city": "ANDOVER",
"footnote": "No data are available from the hospital for this measure",
"county_name": "BUTLER"
},
{
"hospital_name": "MORRISTOWN HAMBLEN HOSPITAL ASSOCIATION",
"phone_number": {
"phone_number": "4235864231"
},
"zip_code": "37814",
"measure": "Catheter-Associated Urinary Tract Infections (CAUTI)",
"location": {
"needs_recoding": false,
"longitude": "-83.30461972437337",
"latitude": "36.211752627241765",
"human_address": "{\"address\":\"908 W 4TH NORTH ST\",\"city\":\"MORRISTOWN\",\"state\":\"TN\",\"zip\":\"37814\"}"
},
"provider_id": "440030",
"state": "TN",
"score": "0.00",
"address_1": "908 W 4TH NORTH ST",
"city": "MORRISTOWN",
"footnote": "The lower limit of the confidence interval cannot be calculated if the number of observed infections equals zero",
"county_name": "HAMBLEN"
},
{
"hospital_name": "MADISON MEMORIAL HOSPITAL",
"phone_number": {
"phone_number": "2083596488"
},
"zip_code": "83440",
"measure": "SSI: Abdominal Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-111.773000304236",
"latitude": "43.82601547305518",
"human_address": "{\"address\":\"450 EAST MAIN STREET\",\"city\":\"REXBURG\",\"state\":\"ID\",\"zip\":\"83440\"}"
},
"provider_id": "130025",
"state": "ID",
"score": "0.170",
"address_1": "450 EAST MAIN STREET",
"city": "REXBURG",
"footnote": "No data are available from the hospital for this measure",
"county_name": "MADISON"
},
{
"hospital_name": "WATERBURY HOSPITAL",
"phone_number": {
"phone_number": "2035736000"
},
"zip_code": "06721",
"measure": "Surgical Site Infection from colon surgery (SSI: Colon)",
"location": {
"needs_recoding": false,
"longitude": "-73.05993651207453",
"latitude": "41.55815083280986",
"human_address": "{\"address\":\"64 ROBBINS ST\",\"city\":\"WATERBURY\",\"state\":\"CT\",\"zip\":\"06721\"}"
},
"provider_id": "070005",
"state": "CT",
"score": "1.72",
"address_1": "64 ROBBINS ST",
"city": "WATERBURY",
"county_name": "NEW HAVEN"
},
{
"hospital_name": "MEDICAL CENTER OF MCKINNEY",
"phone_number": {
"phone_number": "9725478000"
},
"zip_code": "75069",
"measure": "SSI: Colon Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-96.63553096807578",
"latitude": "33.16163901232875",
"human_address": "{\"address\":\"4500 MEDICAL CENTER DRIVE\",\"city\":\"MCKINNEY\",\"state\":\"TX\",\"zip\":\"75069\"}"
},
"provider_id": "450403",
"state": "TX",
"score": "1.295",
"address_1": "4500 MEDICAL CENTER DRIVE",
"city": "MCKINNEY",
"county_name": "COLLIN"
},
{
"hospital_name": "MARIAN REGIONAL MEDICAL CENTER, ARROYO GRANDE",
"phone_number": {
"phone_number": "8057393000"
},
"zip_code": "93454",
"measure": "CLABSI Upper Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-120.41321871429517",
"latitude": "34.952036287920066",
"human_address": "{\"address\":\"1400 E CHURCH ST\",\"city\":\"SANTA MARIA\",\"state\":\"CA\",\"zip\":\"93454\"}"
},
"provider_id": "050107",
"state": "CA",
"score": "1.475",
"address_1": "1400 E CHURCH ST",
"city": "SANTA MARIA",
"footnote": "The lower limit of the confidence interval cannot be calculated if the number of observed infections equals zero",
"county_name": "SANTA BARBARA"
},
{
"hospital_name": "ST JOSEPH MEDICAL CENTER",
"phone_number": {
"phone_number": "6103782300"
},
"zip_code": "19605",
"measure": "Catheter-Associated Urinary Tract Infections (CAUTI)",
"location": {
"needs_recoding": false,
"longitude": "-75.97733093455444",
"latitude": "40.376583791849164",
"human_address": "{\"address\":\"2500 BERNVILLE ROAD\",\"city\":\"READING\",\"state\":\"PA\",\"zip\":\"19605\"}"
},
"provider_id": "390096",
"state": "PA",
"score": "0.66",
"address_1": "2500 BERNVILLE ROAD",
"city": "READING",
"county_name": "BERKS"
},
{
"hospital_name": "SENTARA WILLIAMSBURG REGIONAL MEDICAL CENTER",
"phone_number": {
"phone_number": "7579848141"
},
"zip_code": "23188",
"measure": "SSI: Colon Upper Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-76.73909226980783",
"latitude": "37.33779374012829",
"human_address": "{\"address\":\"100 SENTARA CIRCLE\",\"city\":\"WILLIAMSBURG\",\"state\":\"VA\",\"zip\":\"23188\"}"
},
"provider_id": "490066",
"state": "VA",
"score": "6.277",
"address_1": "100 SENTARA CIRCLE",
"city": "WILLIAMSBURG",
"county_name": "JAMES CITY"
},
{
"hospital_name": "SENTARA VIRGINIA BEACH GENERAL HOSPITAL",
"phone_number": {
"phone_number": "7573958000"
},
"zip_code": "23454",
"measure": "SSI: Colon Upper Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-76.02833109039119",
"latitude": "36.864012908652455",
"human_address": "{\"address\":\"1060 FIRST COLONIAL ROAD\",\"city\":\"VIRGINIA BEACH\",\"state\":\"VA\",\"zip\":\"23454\"}"
},
"provider_id": "490057",
"state": "VA",
"score": "1.537",
"address_1": "1060 FIRST COLONIAL ROAD",
"city": "VIRGINIA BEACH",
"footnote": "The lower limit of the confidence interval cannot be calculated if the number of observed infections equals zero",
"county_name": "VIRGINIA BEACH CITY"
},
{
"hospital_name": "ST FRANCIS MEDICAL CENTER",
"phone_number": {
"phone_number": "5733313000"
},
"zip_code": "63703",
"measure": "SSI: Colon Upper Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-89.57213590980645",
"latitude": "37.3020732557419",
"human_address": "{\"address\":\"211 ST FRANCIS DR\",\"city\":\"CAPE GIRARDEAU\",\"state\":\"MO\",\"zip\":\"63703\"}"
},
"provider_id": "260183",
"state": "MO",
"score": "2.944",
"address_1": "211 ST FRANCIS DR",
"city": "CAPE GIRARDEAU",
"county_name": "CAPE GIRARDEAU"
},
{
"hospital_name": "SCRIPPS MEMORIAL HOSPITAL - ENCINITAS",
"phone_number": {
"phone_number": "7607536501"
},
"zip_code": "92024",
"measure": "SSI: Colon Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-117.2843710651911",
"latitude": "33.03626600421767",
"human_address": "{\"address\":\"354 SANTA FE DRIVE\",\"city\":\"ENCINITAS\",\"state\":\"CA\",\"zip\":\"92024\"}"
},
"provider_id": "050503",
"state": "CA",
"score": "1",
"address_1": "354 SANTA FE DRIVE",
"city": "ENCINITAS",
"county_name": "SAN DIEGO"
},
{
"hospital_name": "ALEGENT CREIGHTON HEALTH CREIGHTON UNIVERSITY MEDI",
"phone_number": {
"phone_number": "4024494040"
},
"zip_code": "68131",
"measure": "SSI: Colon Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-95.9564978698528",
"latitude": "41.26578055394248",
"human_address": "{\"address\":\"601 NORTH 30TH ST\",\"city\":\"OMAHA\",\"state\":\"NE\",\"zip\":\"68131\"}"
},
"provider_id": "280030",
"state": "NE",
"score": "1.336",
"address_1": "601 NORTH 30TH ST",
"city": "OMAHA",
"county_name": "DOUGLAS"
},
{
"hospital_name": "PRESBYTERIAN ESPANOLA HOSPITAL",
"phone_number": {
"phone_number": "5057537111"
},
"zip_code": "87532",
"measure": "SSI: Colon Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-106.08637985204297",
"latitude": "35.99696532224293",
"human_address": "{\"address\":\"1010 SPRUCE STREET\",\"city\":\"ESPANOLA\",\"state\":\"NM\",\"zip\":\"87532\"}"
},
"provider_id": "320011",
"state": "NM",
"score": "0",
"address_1": "1010 SPRUCE STREET",
"city": "ESPANOLA",
"footnote": "No data are available from the hospital for this measure",
"county_name": "RIO ARRIBA"
},
{
"hospital_name": "AURORA SHEBOYGAN MEM MED CTR",
"phone_number": {
"phone_number": "9204515000"
},
"zip_code": "53083",
"measure": "SSI: Abdominal Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-87.71120773574046",
"latitude": "43.77336016823966",
"human_address": "{\"address\":\"2629 N 7TH ST\",\"city\":\"SHEBOYGAN\",\"state\":\"WI\",\"zip\":\"53083\"}"
},
"provider_id": "520035",
"state": "WI",
"score": "0.040",
"address_1": "2629 N 7TH ST",
"city": "SHEBOYGAN",
"footnote": "No data are available from the hospital for this measure",
"county_name": "SHEBOYGAN"
},
{
"hospital_name": "LUTHERAN MEDICAL CENTER",
"phone_number": {
"phone_number": "7186308000"
},
"zip_code": "11220",
"measure": "CLABSI Upper Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-74.02045020125868",
"latitude": "40.64656359098771",
"human_address": "{\"address\":\"150 55TH STREET\",\"city\":\"BROOKLYN\",\"state\":\"NY\",\"zip\":\"11220\"}"
},
"provider_id": "330306",
"state": "NY",
"score": "1.389",
"address_1": "150 55TH STREET",
"city": "BROOKLYN",
"county_name": "KINGS"
},
{
"hospital_name": "LENOIR MEMORIAL HOSPITAL",
"phone_number": {
"phone_number": "2525227000"
},
"zip_code": "28501",
"measure": "CAUTI Urinary Catheter Days",
"location": {
"needs_recoding": false,
"longitude": "-77.58040802821802",
"latitude": "35.29005546585273",
"human_address": "{\"address\":\"100 AIRPORT RD\",\"city\":\"KINSTON\",\"state\":\"NC\",\"zip\":\"28501\"}"
},
"provider_id": "340027",
"state": "NC",
"score": "1216",
"address_1": "100 AIRPORT RD",
"city": "KINSTON",
"footnote": "The lower limit of the confidence interval cannot be calculated if the number of observed infections equals zero",
"county_name": "LENOIR"
},
{
"hospital_name": "DOCTORS HOSPITAL",
"phone_number": {
"phone_number": "7066516008"
},
"zip_code": "30909",
"measure": "Surgical Site Infection from colon surgery (SSI: Colon)",
"location": {
"needs_recoding": false,
"longitude": "-82.09114652379833",
"latitude": "33.482526105603256",
"human_address": "{\"address\":\"3651 WHEELER ROAD\",\"city\":\"AUGUSTA\",\"state\":\"GA\",\"zip\":\"30909\"}"
},
"provider_id": "110177",
"state": "GA",
"score": "0.51",
"address_1": "3651 WHEELER ROAD",
"city": "AUGUSTA",
"county_name": "RICHMOND"
},
{
"hospital_name": "SPECTRUM HEALTH UNITED MEMORIAL - UNITED CAMPUS",
"phone_number": {
"phone_number": "6167544691"
},
"zip_code": "48838",
"measure": "SSI: Colon Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-85.26873004314427",
"latitude": "43.175014242485474",
"human_address": "{\"address\":\"615 S BOWER STREET\",\"city\":\"GREENVILLE\",\"state\":\"MI\",\"zip\":\"48838\"}"
},
"provider_id": "230035",
"state": "MI",
"score": "0",
"address_1": "615 S BOWER STREET",
"city": "GREENVILLE",
"footnote": "No data are available from the hospital for this measure",
"county_name": "MONTCALM"
},
{
"hospital_name": "LEWISGALE MEDICAL CENTER",
"phone_number": {
"phone_number": "5407764000"
},
"zip_code": "24153",
"measure": "SSI: Colon Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-80.03317396482936",
"latitude": "37.26438208287652",
"human_address": "{\"address\":\"1900 ELECTRIC ROAD\",\"city\":\"SALEM\",\"state\":\"VA\",\"zip\":\"24153\"}"
},
"provider_id": "490048",
"state": "VA",
"score": "2",
"address_1": "1900 ELECTRIC ROAD",
"city": "SALEM",
"county_name": "SALEM"
},
{
"hospital_name": "HENRY FORD WYANDOTTE HOSPITAL",
"phone_number": {
"phone_number": "7342466000"
},
"zip_code": "48192",
"measure": "CAUTI Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-83.14887638042991",
"latitude": "42.210431752750964",
"human_address": "{\"address\":\"2333 BIDDLE AVE\",\"city\":\"WYANDOTTE\",\"state\":\"MI\",\"zip\":\"48192\"}"
},
"provider_id": "230146",
"state": "MI",
"score": "1",
"address_1": "2333 BIDDLE AVE",
"city": "WYANDOTTE",
"county_name": "WAYNE"
},
{
"hospital_name": "VALLEY HOSPITAL",
"phone_number": {
"phone_number": "5099246650"
},
"zip_code": "99216",
"measure": "CLABSI Lower Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-117.23444808987051",
"latitude": "47.671642375426075",
"human_address": "{\"address\":\"12606 EAST MISSION AVENUE\",\"city\":\"SPOKANE\",\"state\":\"WA\",\"zip\":\"99216\"}"
},
"provider_id": "500119",
"state": "WA",
"score": "0.017",
"address_1": "12606 EAST MISSION AVENUE",
"city": "SPOKANE",
"county_name": "SPOKANE"
},
{
"hospital_name": "METHODIST HOSPITAL",
"phone_number": {
"phone_number": "2708277700"
},
"zip_code": "42420",
"measure": "CLABSI Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-87.60471901425103",
"latitude": "37.824255012217236",
"human_address": "{\"address\":\"1305 N ELM ST\",\"city\":\"HENDERSON\",\"state\":\"KY\",\"zip\":\"42420\"}"
},
"provider_id": "180056",
"state": "KY",
"score": "3",
"address_1": "1305 N ELM ST",
"city": "HENDERSON",
"county_name": "HENDERSON"
},
{
"hospital_name": "SUTTER DELTA MEDICAL CENTER",
"phone_number": {
"phone_number": "9257797200"
},
"zip_code": "94509",
"measure": "SSI: Abdominal Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-121.80552210039656",
"latitude": "37.982391797849345",
"human_address": "{\"address\":\"3901 LONE TREE WAY\",\"city\":\"ANTIOCH\",\"state\":\"CA\",\"zip\":\"94509\"}"
},
"provider_id": "050523",
"state": "CA",
"score": "0",
"address_1": "3901 LONE TREE WAY",
"city": "ANTIOCH",
"footnote": "No data are available from the hospital for this measure",
"county_name": "CONTRA COSTA"
},
{
"hospital_name": "METHODIST HOSPITAL",
"phone_number": {
"phone_number": "2708277700"
},
"zip_code": "42420",
"measure": "SSI: Colon, Number of Procedures",
"location": {
"needs_recoding": false,
"longitude": "-87.60471901425103",
"latitude": "37.824255012217236",
"human_address": "{\"address\":\"1305 N ELM ST\",\"city\":\"HENDERSON\",\"state\":\"KY\",\"zip\":\"42420\"}"
},
"provider_id": "180056",
"state": "KY",
"score": "26",
"address_1": "1305 N ELM ST",
"city": "HENDERSON",
"footnote": "No data are available from the hospital for this measure",
"county_name": "HENDERSON"
},
{
"hospital_name": "PARKRIDGE MEDICAL CENTER",
"phone_number": {
"phone_number": "4238944220"
},
"zip_code": "37404",
"measure": "CAUTI Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-85.26816279124384",
"latitude": "35.033537019188586",
"human_address": "{\"address\":\"2333 MCCALLIE AVE\",\"city\":\"CHATTANOOGA\",\"state\":\"TN\",\"zip\":\"37404\"}"
},
"provider_id": "440156",
"state": "TN",
"score": "7.650",
"address_1": "2333 MCCALLIE AVE",
"city": "CHATTANOOGA",
"county_name": "HAMILTON"
},
{
"hospital_name": "HALLMARK HEALTH SYSTEM",
"phone_number": {
"phone_number": "7819793000"
},
"zip_code": "02176",
"measure": "CAUTI Lower Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-71.06191981632514",
"latitude": "42.460203800223404",
"human_address": "{\"address\":\"585 LEBANON STREET\",\"city\":\"MELROSE\",\"state\":\"MA\",\"zip\":\"02176\"}"
},
"provider_id": "220070",
"state": "MA",
"score": "0.385",
"address_1": "585 LEBANON STREET",
"city": "MELROSE",
"county_name": "MIDDLESEX"
},
{
"hospital_name": "OTTUMWA REGIONAL HEALTH CENTER",
"phone_number": {
"phone_number": "6416827511"
},
"zip_code": "52501",
"measure": "CAUTI Urinary Catheter Days",
"location": {
"needs_recoding": false,
"longitude": "-92.38981230522329",
"latitude": "41.02754676122309",
"human_address": "{\"address\":\"1001 E PENNSYLVANIA\",\"city\":\"OTTUMWA\",\"state\":\"IA\",\"zip\":\"52501\"}"
},
"provider_id": "160089",
"state": "IA",
"score": "376",
"address_1": "1001 E PENNSYLVANIA",
"city": "OTTUMWA",
"footnote": "No data are available from the hospital for this measure",
"county_name": "WAPELLO"
},
{
"hospital_name": "JENNIE EDMUNDSON HOSPITAL",
"phone_number": {
"phone_number": "7123966000"
},
"zip_code": "51503",
"measure": "SSI: Colon Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-95.83479261962765",
"latitude": "41.26957569290613",
"human_address": "{\"address\":\"933 EAST PIERCE STREET\",\"city\":\"COUNCIL BLUFFS\",\"state\":\"IA\",\"zip\":\"51503\"}"
},
"provider_id": "160047",
"state": "IA",
"score": "0.649",
"address_1": "933 EAST PIERCE STREET",
"city": "COUNCIL BLUFFS",
"footnote": "No data are available from the hospital for this measure",
"county_name": "POTTAWATTAMIE"
},
{
"hospital_name": "MCPHERSON HOSPITAL INC",
"phone_number": {
"phone_number": "6202412250"
},
"zip_code": "67460",
"measure": "SSI: Abdominal Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-97.67245826107899",
"latitude": "38.37889388734743",
"human_address": "{\"address\":\"1000 HOSPITAL DRIVE\",\"city\":\"MCPHERSON\",\"state\":\"KS\",\"zip\":\"67460\"}"
},
"provider_id": "170105",
"state": "KS",
"score": "0",
"address_1": "1000 HOSPITAL DRIVE",
"city": "MCPHERSON",
"footnote": "No data are available from the hospital for this measure",
"county_name": "MCPHERSON"
},
{
"hospital_name": "BROOKSVILLE REGIONAL HOSPITAL",
"phone_number": {
"phone_number": "3527965111"
},
"zip_code": "34601",
"measure": "CAUTI Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-82.44339466426685",
"latitude": "28.541073919006216",
"human_address": "{\"address\":\"17240 CORTEZ BLVD\",\"city\":\"BROOKSVILLE\",\"state\":\"FL\",\"zip\":\"34601\"}"
},
"provider_id": "100071",
"state": "FL",
"score": "2",
"address_1": "17240 CORTEZ BLVD",
"city": "BROOKSVILLE",
"county_name": "HERNANDO"
},
{
"hospital_name": "CHRISTUS ST MICHAEL HEALTH SYSTEM",
"phone_number": {
"phone_number": "9036141000"
},
"zip_code": "75504",
"measure": "SSI: Colon Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-94.07549812334317",
"latitude": "33.462258539564864",
"human_address": "{\"address\":\"2600 ST MICHAEL DR\",\"city\":\"TEXARKANA\",\"state\":\"TX\",\"zip\":\"75504\"}"
},
"provider_id": "450801",
"state": "TX",
"score": "2.800",
"address_1": "2600 ST MICHAEL DR",
"city": "TEXARKANA",
"footnote": "The lower limit of the confidence interval cannot be calculated if the number of observed infections equals zero",
"county_name": "BOWIE"
},
{
"hospital_name": "MEDICAL CENTER OF TRINITY",
"phone_number": {
"phone_number": "7278481733"
},
"zip_code": "34655",
"measure": "CLABSI Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-82.6623239310473",
"latitude": "28.205969935972576",
"human_address": "{\"address\":\"9330 SR 54\",\"city\":\"TRINITY\",\"state\":\"FL\",\"zip\":\"34655\"}"
},
"provider_id": "100191",
"state": "FL",
"score": "6.814",
"address_1": "9330 SR 54",
"city": "TRINITY",
"county_name": "PASCO"
},
{
"hospital_name": "EVERGREEN HOSPITAL MEDICAL CENTER",
"phone_number": {
"phone_number": "4258991000"
},
"zip_code": "98034",
"measure": "Catheter-Associated Urinary Tract Infections (CAUTI)",
"location": {
"needs_recoding": false,
"longitude": "-122.18071925102049",
"latitude": "47.71491775147598",
"human_address": "{\"address\":\"12040 NE 128TH STREET\",\"city\":\"KIRKLAND\",\"state\":\"WA\",\"zip\":\"98034\"}"
},
"provider_id": "500124",
"state": "WA",
"score": "1.71",
"address_1": "12040 NE 128TH STREET",
"city": "KIRKLAND",
"county_name": "KING"
},
{
"hospital_name": "EMORY-ADVENTIST HOSPITAL",
"phone_number": {
"phone_number": "7704340710"
},
"zip_code": "30080",
"measure": "SSI: Abdominal, Number of Procedures",
"location": {
"needs_recoding": false,
"longitude": "-84.51377809476834",
"latitude": "33.85607075628544",
"human_address": "{\"address\":\"3949 SOUTH COBB DRIVE\",\"city\":\"SMYRNA\",\"state\":\"GA\",\"zip\":\"30080\"}"
},
"provider_id": "110183",
"state": "GA",
"score": "0",
"address_1": "3949 SOUTH COBB DRIVE",
"city": "SMYRNA",
"footnote": "No data are available from the hospital for this measure",
"county_name": "COBB"
},
{
"hospital_name": "AURORA WEST ALLIS MEDICAL CENTER",
"phone_number": {
"phone_number": "4143286000"
},
"zip_code": "53227",
"measure": "SSI: Abdominal Lower Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-88.02349731041488",
"latitude": "43.00266816879042",
"human_address": "{\"address\":\"8901 W LINCOLN AVE\",\"city\":\"WEST ALLIS\",\"state\":\"WI\",\"zip\":\"53227\"}"
},
"provider_id": "520139",
"state": "WI",
"score": "2.630",
"address_1": "8901 W LINCOLN AVE",
"city": "WEST ALLIS",
"county_name": "MILWAUKEE"
},
{
"hospital_name": "KAISER FOUNDATION HOSPITAL - WEST LA",
"phone_number": {
"phone_number": "2138572201"
},
"zip_code": "90034",
"measure": "CLABSI Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-118.3742937959068",
"latitude": "34.03749772988431",
"human_address": "{\"address\":\"6041 CADILLAC AVE\",\"city\":\"LOS ANGELES\",\"state\":\"CA\",\"zip\":\"90034\"}"
},
"provider_id": "050561",
"state": "CA",
"score": "4.174",
"address_1": "6041 CADILLAC AVE",
"city": "LOS ANGELES",
"footnote": "The lower limit of the confidence interval cannot be calculated if the number of observed infections equals zero",
"county_name": "LOS ANGELES"
},
{
"hospital_name": "HILL REGIONAL HOSPITAL",
"phone_number": {
"phone_number": "2545808500"
},
"zip_code": "76645",
"measure": "SSI: Colon, Number of Procedures",
"location": {
"needs_recoding": false,
"longitude": "-97.09928435892488",
"latitude": "32.012233513120975",
"human_address": "{\"address\":\"101 CIRCLE DRIVE\",\"city\":\"HILLSBORO\",\"state\":\"TX\",\"zip\":\"76645\"}"
},
"provider_id": "450192",
"state": "TX",
"score": "2",
"address_1": "101 CIRCLE DRIVE",
"city": "HILLSBORO",
"footnote": "No data are available from the hospital for this measure",
"county_name": "HILL"
},
{
"hospital_name": "GRAND VIEW HOSPITAL",
"phone_number": {
"phone_number": "2154534615"
},
"zip_code": "18960",
"measure": "CLABSI Upper Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-75.32422797295843",
"latitude": "40.362553115787065",
"human_address": "{\"address\":\"700 LAWN AVENUE\",\"city\":\"SELLERSVILLE\",\"state\":\"PA\",\"zip\":\"18960\"}"
},
"provider_id": "390057",
"state": "PA",
"score": "1.034",
"address_1": "700 LAWN AVENUE",
"city": "SELLERSVILLE",
"footnote": "The lower limit of the confidence interval cannot be calculated if the number of observed infections equals zero",
"county_name": "BUCKS"
},
{
"hospital_name": "JENNIE EDMUNDSON HOSPITAL",
"phone_number": {
"phone_number": "7123966000"
},
"zip_code": "51503",
"measure": "SSI: Abdominal Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-95.83479261962765",
"latitude": "41.26957569290613",
"human_address": "{\"address\":\"933 EAST PIERCE STREET\",\"city\":\"COUNCIL BLUFFS\",\"state\":\"IA\",\"zip\":\"51503\"}"
},
"provider_id": "160047",
"state": "IA",
"score": "0",
"address_1": "933 EAST PIERCE STREET",
"city": "COUNCIL BLUFFS",
"footnote": "No data are available from the hospital for this measure",
"county_name": "POTTAWATTAMIE"
},
{
"hospital_name": "MOUNTAINVIEW HOSPITAL",
"phone_number": {
"phone_number": "7022555065"
},
"zip_code": "89128",
"measure": "CAUTI Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-115.25123327460241",
"latitude": "36.21686670286039",
"human_address": "{\"address\":\"3100 N TENAYA WAY\",\"city\":\"LAS VEGAS\",\"state\":\"NV\",\"zip\":\"89128\"}"
},
"provider_id": "290039",
"state": "NV",
"score": "4.337",
"address_1": "3100 N TENAYA WAY",
"city": "LAS VEGAS",
"county_name": "CLARK"
},
{
"hospital_name": "IRVING COPPELL SURGICAL HOSPITAL LLP",
"phone_number": {
"phone_number": "9728684000"
},
"zip_code": "75063",
"measure": "SSI: Abdominal Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-96.95188646423959",
"latitude": "32.91306745959125",
"human_address": "{\"address\":\"400 WEST INTERSTATE 635 SUITE 101\",\"city\":\"IRVING\",\"state\":\"TX\",\"zip\":\"75063\"}"
},
"provider_id": "450874",
"state": "TX",
"score": "0.042",
"address_1": "400 WEST INTERSTATE 635 SUITE 101",
"city": "IRVING",
"footnote": "No data are available from the hospital for this measure",
"county_name": "DALLAS"
},
{
"hospital_name": "ST ELIZABETH HSPTL",
"phone_number": {
"phone_number": "9207382000"
},
"zip_code": "54915",
"measure": "CLABSI Lower Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-88.40409039321463",
"latitude": "44.2483820641159",
"human_address": "{\"address\":\"1506 S ONEIDA ST\",\"city\":\"APPLETON\",\"state\":\"WI\",\"zip\":\"54915\"}"
},
"provider_id": "520009",
"state": "WI",
"score": "0.553",
"address_1": "1506 S ONEIDA ST",
"city": "APPLETON",
"county_name": "OUTAGAMIE"
},
{
"hospital_name": "ST LUKE'S ROOSEVELT HOSPITAL",
"phone_number": {
"phone_number": "2125234000"
},
"zip_code": "10025",
"measure": "Central-Line-Associated Blood Stream Infections (CLABSI)",
"location": {
"needs_recoding": false,
"longitude": "-73.96168699730298",
"latitude": "40.805831648715554",
"human_address": "{\"address\":\"1111 AMSTERDAM AVENUE\",\"city\":\"NEW YORK\",\"state\":\"NY\",\"zip\":\"10025\"}"
},
"provider_id": "330046",
"state": "NY",
"score": "0.60",
"address_1": "1111 AMSTERDAM AVENUE",
"city": "NEW YORK",
"county_name": "NEW YORK"
},
{
"hospital_name": "MCLAREN - NORTHERN MICHIGAN",
"phone_number": {
"phone_number": "2314874000"
},
"zip_code": "49770",
"measure": "Central-Line-Associated Blood Stream Infections (CLABSI)",
"location": {
"needs_recoding": false,
"longitude": "-84.96920794368039",
"latitude": "45.37327986890659",
"human_address": "{\"address\":\"416 CONNABLE AVE\",\"city\":\"PETOSKEY\",\"state\":\"MI\",\"zip\":\"49770\"}"
},
"provider_id": "230105",
"state": "MI",
"score": "0.57",
"address_1": "416 CONNABLE AVE",
"city": "PETOSKEY",
"county_name": "EMMET"
},
{
"hospital_name": "FLAGSTAFF MEDICAL CENTER",
"phone_number": {
"phone_number": "9287732009"
},
"zip_code": "86001",
"measure": "Catheter-Associated Urinary Tract Infections (CAUTI)",
"location": {
"needs_recoding": false,
"longitude": "-111.64517067099132",
"latitude": "35.20864883576053",
"human_address": "{\"address\":\"1200 NORTH BEAVER STREET\",\"city\":\"FLAGSTAFF\",\"state\":\"AZ\",\"zip\":\"86001\"}"
},
"provider_id": "030023",
"state": "AZ",
"score": "1.83",
"address_1": "1200 NORTH BEAVER STREET",
"city": "FLAGSTAFF",
"county_name": "COCONINO"
},
{
"hospital_name": "SHARON REGIONAL HEALTH SYSTEM",
"phone_number": {
"phone_number": "7249833912"
},
"zip_code": "16146",
"measure": "SSI: Colon Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-80.49593235501133",
"latitude": "41.23295443641422",
"human_address": "{\"address\":\"740 EAST STATE STREET\",\"city\":\"SHARON\",\"state\":\"PA\",\"zip\":\"16146\"}"
},
"provider_id": "390211",
"state": "PA",
"score": "0.870",
"address_1": "740 EAST STATE STREET",
"city": "SHARON",
"footnote": "No data are available from the hospital for this measure",
"county_name": "MERCER"
},
{
"hospital_name": "GOLDEN VALLEY MEMORIAL HOSPITAL",
"phone_number": {
"phone_number": "6608855511"
},
"zip_code": "64735",
"measure": "SSI: Colon, Number of Procedures",
"location": {
"needs_recoding": false,
"longitude": "-93.77095648102767",
"latitude": "38.3894339415308",
"human_address": "{\"address\":\"1600 N 2ND ST\",\"city\":\"CLINTON\",\"state\":\"MO\",\"zip\":\"64735\"}"
},
"provider_id": "260175",
"state": "MO",
"score": "12",
"address_1": "1600 N 2ND ST",
"city": "CLINTON",
"footnote": "No data are available from the hospital for this measure",
"county_name": "HENRY"
},
{
"hospital_name": "GOOD SAMARITAN HOSPITAL MEDICAL CENTER",
"phone_number": {
"phone_number": "6313763000"
},
"zip_code": "11795",
"measure": "SSI: Abdominal Lower Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-73.29508459928172",
"latitude": "40.69578125855185",
"human_address": "{\"address\":\"1000 MONTAUK HIGHWAY\",\"city\":\"WEST ISLIP\",\"state\":\"NY\",\"zip\":\"11795\"}"
},
"provider_id": "330286",
"state": "NY",
"score": "0.016",
"address_1": "1000 MONTAUK HIGHWAY",
"city": "WEST ISLIP",
"county_name": "SUFFOLK"
},
{
"hospital_name": "ALTOONA REGIONAL HEALTH SYSTEM",
"phone_number": {
"phone_number": "8148892011"
},
"zip_code": "16601",
"measure": "CLABSI Lower Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-78.39828317825584",
"latitude": "40.521168176097795",
"human_address": "{\"address\":\"620 HOWARD AVENUE\",\"city\":\"ALTOONA\",\"state\":\"PA\",\"zip\":\"16601\"}"
},
"provider_id": "390073",
"state": "PA",
"score": "0.003",
"address_1": "620 HOWARD AVENUE",
"city": "ALTOONA",
"county_name": "BLAIR"
},
{
"hospital_name": "ST EDWARD MERCY MEDICAL CENTER",
"phone_number": {
"phone_number": "4793146000"
},
"zip_code": "72917",
"measure": "CLABSI Upper Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-94.35281245682333",
"latitude": "35.35363522126198",
"human_address": "{\"address\":\"7301 ROGERS AVE\",\"city\":\"FORT SMITH\",\"state\":\"AR\",\"zip\":\"72917\"}"
},
"provider_id": "040062",
"state": "AR",
"score": "1.062",
"address_1": "7301 ROGERS AVE",
"city": "FORT SMITH",
"county_name": "SEBASTIAN"
},
{
"hospital_name": "BON SECOURS - DEPAUL MEDICAL CENTER",
"phone_number": {
"phone_number": "7578895000"
},
"zip_code": "23505",
"measure": "CAUTI Urinary Catheter Days",
"location": {
"needs_recoding": false,
"longitude": "-76.28224484876708",
"latitude": "36.898705688436635",
"human_address": "{\"address\":\"150 KINGSLEY LANE\",\"city\":\"NORFOLK\",\"state\":\"VA\",\"zip\":\"23505\"}"
},
"provider_id": "490011",
"state": "VA",
"score": "1408",
"address_1": "150 KINGSLEY LANE",
"city": "NORFOLK",
"county_name": "NORFOLK CITY"
},
{
"hospital_name": "VIDANT CHOWAN HOSPITAL",
"phone_number": {
"phone_number": "2524828451"
},
"zip_code": "27932",
"measure": "SSI: Colon Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-76.60927513487837",
"latitude": "36.0709907432157",
"human_address": "{\"address\":\"211 VIRGINIA RD\",\"city\":\"EDENTON\",\"state\":\"NC\",\"zip\":\"27932\"}"
},
"provider_id": "341318",
"state": "NC",
"score": "0.111",
"address_1": "211 VIRGINIA RD",
"city": "EDENTON",
"footnote": "No data are available from the hospital for this measure",
"county_name": "CHOWAN"
},
{
"hospital_name": "VIA CHRISTI HOSPITALS WICHITA INC",
"phone_number": {
"phone_number": "3162685000"
},
"zip_code": "67214",
"measure": "SSI: Colon Upper Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-97.33172313061777",
"latitude": "37.70044534844351",
"human_address": "{\"address\":\"929 NORTH ST FRANCIS STREET\",\"city\":\"WICHITA\",\"state\":\"KS\",\"zip\":\"67214\"}"
},
"provider_id": "170122",
"state": "KS",
"score": "2.363",
"address_1": "929 NORTH ST FRANCIS STREET",
"city": "WICHITA",
"county_name": "SEDGWICK"
},
{
"hospital_name": "SAINT BARNABAS MEDICAL CENTER",
"phone_number": {
"phone_number": "9733225000"
},
"zip_code": "07039",
"measure": "CLABSI Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-74.30322674892511",
"latitude": "40.76220709749622",
"human_address": "{\"address\":\"94 OLD SHORT HILLS ROAD\",\"city\":\"LIVINGSTON\",\"state\":\"NJ\",\"zip\":\"07039\"}"
},
"provider_id": "310076",
"state": "NJ",
"score": "28.511",
"address_1": "94 OLD SHORT HILLS ROAD",
"city": "LIVINGSTON",
"county_name": "ESSEX"
},
{
"hospital_name": "RESEARCH MEDICAL CENTER",
"phone_number": {
"phone_number": "8162764000"
},
"zip_code": "64132",
"measure": "Surgical Site Infection from colon surgery (SSI: Colon)",
"location": {
"needs_recoding": false,
"longitude": "-94.55968282390285",
"latitude": "39.00718810013609",
"human_address": "{\"address\":\"2316 E MEYER BLVD\",\"city\":\"KANSAS CITY\",\"state\":\"MO\",\"zip\":\"64132\"}"
},
"provider_id": "260027",
"state": "MO",
"score": "0.00",
"address_1": "2316 E MEYER BLVD",
"city": "KANSAS CITY",
"footnote": "The lower limit of the confidence interval cannot be calculated if the number of observed infections equals zero",
"county_name": "JACKSON"
},
{
"hospital_name": "ALVARADO HOSPITAL MEDICAL CENTER",
"phone_number": {
"phone_number": "6192293172"
},
"zip_code": "92120",
"measure": "CAUTI Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-117.05637333484884",
"latitude": "32.777043946498566",
"human_address": "{\"address\":\"6655 ALVARADO ROAD\",\"city\":\"SAN DIEGO\",\"state\":\"CA\",\"zip\":\"92120\"}"
},
"provider_id": "050757",
"state": "CA",
"score": "3.954",
"address_1": "6655 ALVARADO ROAD",
"city": "SAN DIEGO",
"footnote": "The lower limit of the confidence interval cannot be calculated if the number of observed infections equals zero",
"county_name": "SAN DIEGO"
},
{
"hospital_name": "FRANKLIN REGIONAL HOSPITAL",
"phone_number": {
"phone_number": "6039342060"
},
"zip_code": "03235",
"measure": "CAUTI Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-71.64230566095593",
"latitude": "43.44747658770533",
"human_address": "{\"address\":\"15 AIKEN AVENUE\",\"city\":\"FRANKLIN\",\"state\":\"NH\",\"zip\":\"03235\"}"
},
"provider_id": "301306",
"state": "NH",
"score": "0.318",
"address_1": "15 AIKEN AVENUE",
"city": "FRANKLIN",
"footnote": "No data are available from the hospital for this measure",
"county_name": "MERRIMACK"
},
{
"hospital_name": "DAMERON HOSPITAL",
"phone_number": {
"phone_number": "2099445550"
},
"zip_code": "95203",
"measure": "SSI: Abdominal Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-121.30064275399663",
"latitude": "37.96127562624033",
"human_address": "{\"address\":\"525 WEST ACACIA STREET\",\"city\":\"STOCKTON\",\"state\":\"CA\",\"zip\":\"95203\"}"
},
"provider_id": "050122",
"state": "CA",
"score": "0",
"address_1": "525 WEST ACACIA STREET",
"city": "STOCKTON",
"footnote": "No data are available from the hospital for this measure",
"county_name": "SAN JOAQUIN"
},
{
"hospital_name": "NORTHWEST HILLS SURGICAL HOSPITAL",
"phone_number": {
"phone_number": "5123461994"
},
"zip_code": "78731",
"measure": "SSI: Abdominal, Number of Procedures",
"location": {
"needs_recoding": false,
"longitude": "-97.75121189118477",
"latitude": "30.35077203687041",
"human_address": "{\"address\":\"6818 AUSTIN CTR BLVD SUITE 100\",\"city\":\"AUSTIN\",\"state\":\"TX\",\"zip\":\"78731\"}"
},
"provider_id": "450808",
"state": "TX",
"score": "0",
"address_1": "6818 AUSTIN CTR BLVD SUITE 100",
"city": "AUSTIN",
"footnote": "No data are available from the hospital for this measure",
"county_name": "TRAVIS"
},
{
"hospital_name": "PARKVIEW COMMUNITY HOSPITAL MEDICAL CENTER",
"phone_number": {
"phone_number": "9516882211"
},
"zip_code": "92503",
"measure": "CAUTI Lower Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-117.44010505153085",
"latitude": "33.92581092706553",
"human_address": "{\"address\":\"3865 JACKSON STREET\",\"city\":\"RIVERSIDE\",\"state\":\"CA\",\"zip\":\"92503\"}"
},
"provider_id": "050102",
"state": "CA",
"score": "0.712",
"address_1": "3865 JACKSON STREET",
"city": "RIVERSIDE",
"county_name": "RIVERSIDE"
},
{
"hospital_name": "FLOYD MEMORIAL HOSPITAL AND HEALTH SERVICES",
"phone_number": {
"phone_number": "8129495500"
},
"zip_code": "47150",
"measure": "SSI: Colon Upper Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-85.83498815889305",
"latitude": "38.30044602673155",
"human_address": "{\"address\":\"1850 STATE ST\",\"city\":\"NEW ALBANY\",\"state\":\"IN\",\"zip\":\"47150\"}"
},
"provider_id": "150044",
"state": "IN",
"score": "2.651",
"address_1": "1850 STATE ST",
"city": "NEW ALBANY",
"county_name": "FLOYD"
},
{
"hospital_name": "MAINE MEDICAL CENTER",
"phone_number": {
"phone_number": "2076620111"
},
"zip_code": "04102",
"measure": "Central-Line-Associated Blood Stream Infections (CLABSI)",
"location": {
"needs_recoding": false,
"longitude": "-70.27512142427591",
"latitude": "43.652291378452546",
"human_address": "{\"address\":\"22 BRAMHALL ST\",\"city\":\"PORTLAND\",\"state\":\"ME\",\"zip\":\"04102\"}"
},
"provider_id": "200009",
"state": "ME",
"score": "1.54",
"address_1": "22 BRAMHALL ST",
"city": "PORTLAND",
"county_name": "CUMBERLAND"
},
{
"hospital_name": "ST LUKE'S SUGAR LAND HOSPITAL",
"phone_number": {
"phone_number": "2816377000"
},
"zip_code": "77478",
"measure": "CAUTI Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-95.62127558343121",
"latitude": "29.6048923322096",
"human_address": "{\"address\":\"1317 LAKE POINTE PARKWAY\",\"city\":\"SUGAR LAND\",\"state\":\"TX\",\"zip\":\"77478\"}"
},
"provider_id": "670053",
"state": "TX",
"score": "0",
"address_1": "1317 LAKE POINTE PARKWAY",
"city": "SUGAR LAND",
"footnote": "No data are available from the hospital for this measure",
"county_name": "FORT BEND"
},
{
"hospital_name": "MEMORIAL MEDICAL CENTER OF EAST TEXAS",
"phone_number": {
"phone_number": "9366348111"
},
"zip_code": "75901",
"measure": "CAUTI Urinary Catheter Days",
"location": {
"needs_recoding": false,
"longitude": "-94.68609999971505",
"latitude": "31.32437000017552",
"human_address": "{\"address\":\"1201 WEST FRANK STREET\",\"city\":\"LUFKIN\",\"state\":\"TX\",\"zip\":\"75901\"}"
},
"provider_id": "450211",
"state": "TX",
"score": "1733",
"address_1": "1201 WEST FRANK STREET",
"city": "LUFKIN",
"footnote": "The lower limit of the confidence interval cannot be calculated if the number of observed infections equals zero",
"county_name": "ANGELINA"
},
{
"hospital_name": "INDIANA UNIVERSITY HEALTH WHITE MEMORIAL HOSPITAL",
"phone_number": {
"phone_number": "5745837111"
},
"zip_code": "47960",
"measure": "CAUTI Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-86.77567041375555",
"latitude": "40.73568300787323",
"human_address": "{\"address\":\"720 SOUTH SIXTH ST\",\"city\":\"MONTICELLO\",\"state\":\"IN\",\"zip\":\"47960\"}"
},
"provider_id": "151312",
"state": "IN",
"score": "0",
"address_1": "720 SOUTH SIXTH ST",
"city": "MONTICELLO",
"footnote": "No data are available from the hospital for this measure",
"county_name": "WHITE"
},
{
"hospital_name": "KAISER FOUNDATION HOSPITAL MANTECA",
"phone_number": {
"phone_number": "2098253700"
},
"zip_code": "95337",
"measure": "CAUTI Upper Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-121.24614379817194",
"latitude": "37.79735629032086",
"human_address": "{\"address\":\"1777 WEST YOSEMITE AVE\",\"city\":\"MANTECA\",\"state\":\"CA\",\"zip\":\"95337\"}"
},
"provider_id": "050748",
"state": "CA",
"score": "2.476",
"address_1": "1777 WEST YOSEMITE AVE",
"city": "MANTECA",
"county_name": "SAN JOAQUIN"
},
{
"hospital_name": "SKY RIDGE MEDICAL CENTER",
"phone_number": {
"phone_number": "7202251000"
},
"zip_code": "80124",
"measure": "SSI: Colon Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-104.87312758675661",
"latitude": "39.528289944250794",
"human_address": "{\"address\":\"10101 RIDGE GATE PARKWAY\",\"city\":\"LONE TREE\",\"state\":\"CO\",\"zip\":\"80124\"}"
},
"provider_id": "060112",
"state": "CO",
"score": "1",
"address_1": "10101 RIDGE GATE PARKWAY",
"city": "LONE TREE",
"county_name": "ARAPAHOE"
},
{
"hospital_name": "KAISER FOUNDATION HOSPITAL - SOUTH SAN FRANCISCO",
"phone_number": {
"phone_number": "6507423200"
},
"zip_code": "94080",
"measure": "CLABSI Upper Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-122.43799729716267",
"latitude": "37.65776352493293",
"human_address": "{\"address\":\"1200 EL CAMINO REAL\",\"city\":\"SOUTH SAN FRANCISCO\",\"state\":\"CA\",\"zip\":\"94080\"}"
},
"provider_id": "050070",
"state": "CA",
"score": "4.124",
"address_1": "1200 EL CAMINO REAL",
"city": "SOUTH SAN FRANCISCO",
"county_name": "SAN MATEO"
},
{
"hospital_name": "KAISER FOUNDATION HOSPITAL - SAN DIEGO",
"phone_number": {
"phone_number": "6195285000"
},
"zip_code": "92120",
"measure": "SSI: Colon Upper Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-117.09457653465347",
"latitude": "32.79293496675632",
"human_address": "{\"address\":\"4647 ZION AVE\",\"city\":\"SAN DIEGO\",\"state\":\"CA\",\"zip\":\"92120\"}"
},
"provider_id": "050515",
"state": "CA",
"score": "1.170",
"address_1": "4647 ZION AVE",
"city": "SAN DIEGO",
"footnote": "The lower limit of the confidence interval cannot be calculated if the number of observed infections equals zero",
"county_name": "SAN DIEGO"
},
{
"hospital_name": "PROWERS MEDICAL CENTER",
"phone_number": {
"phone_number": "7193364343"
},
"zip_code": "81052",
"measure": "SSI: Abdominal Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-102.6092685544807",
"latitude": "38.06955408892907",
"human_address": "{\"address\":\"401 KENDALL DRIVE\",\"city\":\"LAMAR\",\"state\":\"CO\",\"zip\":\"81052\"}"
},
"provider_id": "061323",
"state": "CO",
"score": "0",
"address_1": "401 KENDALL DRIVE",
"city": "LAMAR",
"footnote": "No data are available from the hospital for this measure",
"county_name": "PROWERS"
},
{
"hospital_name": "GARDEN PARK MEDICAL CENTER",
"phone_number": {
"phone_number": "2285757000"
},
"zip_code": "39501",
"measure": "CAUTI Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-89.09372649816305",
"latitude": "30.44205322284438",
"human_address": "{\"address\":\"15200 COMMUNITY ROAD\",\"city\":\"GULFPORT\",\"state\":\"MS\",\"zip\":\"39501\"}"
},
"provider_id": "250123",
"state": "MS",
"score": "2",
"address_1": "15200 COMMUNITY ROAD",
"city": "GULFPORT",
"county_name": "HARRISON"
},
{
"hospital_name": "UHHS BEDFORD MEDICAL CENTER",
"phone_number": {
"phone_number": "4407353628"
},
"zip_code": "44146",
"measure": "CLABSI Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-81.53408847240928",
"latitude": "41.39543581090663",
"human_address": "{\"address\":\"44 BLAINE AVENUE\",\"city\":\"BEDFORD\",\"state\":\"OH\",\"zip\":\"44146\"}"
},
"provider_id": "360115",
"state": "OH",
"score": "0",
"address_1": "44 BLAINE AVENUE",
"city": "BEDFORD",
"footnote": "No data are available from the hospital for this measure",
"county_name": "CUYAHOGA"
},
{
"hospital_name": "NEWMAN REGIONAL HEALTH",
"phone_number": {
"phone_number": "6203436800"
},
"zip_code": "66801",
"measure": "CLABSI Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-96.196275199237",
"latitude": "38.412257871175655",
"human_address": "{\"address\":\"1201 WEST 12TH AVENUE\",\"city\":\"EMPORIA\",\"state\":\"KS\",\"zip\":\"66801\"}"
},
"provider_id": "170001",
"state": "KS",
"score": "0",
"address_1": "1201 WEST 12TH AVENUE",
"city": "EMPORIA",
"footnote": "No data are available from the hospital for this measure",
"county_name": "LYON"
},
{
"hospital_name": "MEASE HOSPITAL DUNEDIN",
"phone_number": {
"phone_number": "7277331111"
},
"zip_code": "34698",
"measure": "SSI: Abdominal Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-82.78373271123488",
"latitude": "28.014016181618754",
"human_address": "{\"address\":\"601 MAIN STREET\",\"city\":\"DUNEDIN\",\"state\":\"FL\",\"zip\":\"34698\"}"
},
"provider_id": "100043",
"state": "FL",
"score": "0",
"address_1": "601 MAIN STREET",
"city": "DUNEDIN",
"footnote": "No data are available from the hospital for this measure",
"county_name": "PINELLAS"
},
{
"hospital_name": "WHITESBURG ARH HOSPITAL",
"phone_number": {
"phone_number": "6066333500"
},
"zip_code": "41858",
"measure": "CLABSI Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-82.8118545358517",
"latitude": "37.113808070329874",
"human_address": "{\"address\":\"240 HOSPITAL ROAD\",\"city\":\"WHITESBURG\",\"state\":\"KY\",\"zip\":\"41858\"}"
},
"provider_id": "180002",
"state": "KY",
"score": "0.404",
"address_1": "240 HOSPITAL ROAD",
"city": "WHITESBURG",
"footnote": "No data are available from the hospital for this measure",
"county_name": "LETCHER"
},
{
"hospital_name": "MERCY HOSPITAL WASHINGTON",
"phone_number": {
"phone_number": "6362398000"
},
"zip_code": "63090",
"measure": "CAUTI Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-91.00194120465372",
"latitude": "38.552213287573935",
"human_address": "{\"address\":\"901 EAST 5TH STREET\",\"city\":\"WASHINGTON\",\"state\":\"MO\",\"zip\":\"63090\"}"
},
"provider_id": "260052",
"state": "MO",
"score": "1.246",
"address_1": "901 EAST 5TH STREET",
"city": "WASHINGTON",
"county_name": "FRANKLIN"
},
{
"hospital_name": "KAISER FOUNDATION HOSPITAL-SANTA CLARA",
"phone_number": {
"phone_number": "4082366400"
},
"zip_code": "95051",
"measure": "CLABSI Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-121.99582597390653",
"latitude": "37.335369339108524",
"human_address": "{\"address\":\"700 LAWRENCE EXPRESSWAY\",\"city\":\"SANTA CLARA\",\"state\":\"CA\",\"zip\":\"95051\"}"
},
"provider_id": "050071",
"state": "CA",
"score": "16.348",
"address_1": "700 LAWRENCE EXPRESSWAY",
"city": "SANTA CLARA",
"county_name": "SANTA CLARA"
},
{
"hospital_name": "SENTARA PRINCESS ANNE HOSPITAL",
"phone_number": {
"phone_number": "7575071520"
},
"zip_code": "23456",
"measure": "CAUTI Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-76.09772631194076",
"latitude": "36.77607987597494",
"human_address": "{\"address\":\"2025 GLENN MITCHELL DRIVE\",\"city\":\"VIRGINIA BEACH\",\"state\":\"VA\",\"zip\":\"23456\"}"
},
"provider_id": "490119",
"state": "VA",
"score": "1.768",
"address_1": "2025 GLENN MITCHELL DRIVE",
"city": "VIRGINIA BEACH",
"county_name": "VIRGINIA BEACH CITY"
},
{
"hospital_name": "REHOBOTH MCKINLEY CHRISTIAN HEALTH CARE SERVICES",
"phone_number": {
"phone_number": "5058637000"
},
"zip_code": "87301",
"measure": "CAUTI Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-108.72718132606079",
"latitude": "35.50745572330717",
"human_address": "{\"address\":\"1901 RED ROCK DRIVE\",\"city\":\"GALLUP\",\"state\":\"NM\",\"zip\":\"87301\"}"
},
"provider_id": "320038",
"state": "NM",
"score": "0.334",
"address_1": "1901 RED ROCK DRIVE",
"city": "GALLUP",
"footnote": "No data are available from the hospital for this measure",
"county_name": "MCKINLEY"
},
{
"hospital_name": "SHADY GROVE ADVENTIST HOSPITAL",
"phone_number": {
"phone_number": "2408266517"
},
"zip_code": "20850",
"measure": "Central-Line-Associated Blood Stream Infections (CLABSI)",
"location": {
"needs_recoding": false,
"longitude": "-77.19762959288704",
"latitude": "39.09648991418675",
"human_address": "{\"address\":\"9901 MEDICAL CTR DR\",\"city\":\"ROCKVILLE\",\"state\":\"MD\",\"zip\":\"20850\"}"
},
"provider_id": "210057",
"state": "MD",
"score": "0.11",
"address_1": "9901 MEDICAL CTR DR",
"city": "ROCKVILLE",
"county_name": "MONTGOMERY"
},
{
"hospital_name": "CENTRA HEALTH, INC",
"phone_number": {
"phone_number": "4342004789"
},
"zip_code": "24501",
"measure": "CAUTI Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-79.16975287093902",
"latitude": "37.413777458383834",
"human_address": "{\"address\":\"1920 ATHERHOLT ROAD\",\"city\":\"LYNCHBURG\",\"state\":\"VA\",\"zip\":\"24501\"}"
},
"provider_id": "490021",
"state": "VA",
"score": "7.497",
"address_1": "1920 ATHERHOLT ROAD",
"city": "LYNCHBURG",
"county_name": "LYNCHBURG CITY"
},
{
"hospital_name": "PROVIDENCE HOSPITAL AND MEDICAL CENTERS",
"phone_number": {
"phone_number": "2488493011"
},
"zip_code": "48075",
"measure": "SSI: Colon Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-83.22567000027016",
"latitude": "42.463290000233485",
"human_address": "{\"address\":\"16001 W NINE MILE RD\",\"city\":\"SOUTHFIELD\",\"state\":\"MI\",\"zip\":\"48075\"}"
},
"provider_id": "230019",
"state": "MI",
"score": "0",
"address_1": "16001 W NINE MILE RD",
"city": "SOUTHFIELD",
"footnote": "The lower limit of the confidence interval cannot be calculated if the number of observed infections equals zero",
"county_name": "OAKLAND"
},
{
"hospital_name": "DECATUR GENERAL HOSPITAL",
"phone_number": {
"phone_number": "2563412000"
},
"zip_code": "35609",
"measure": "CAUTI Urinary Catheter Days",
"location": {
"needs_recoding": false,
"longitude": "-86.97272890707097",
"latitude": "34.59112878055176",
"human_address": "{\"address\":\"1201 7TH STREET SE\",\"city\":\"DECATUR\",\"state\":\"AL\",\"zip\":\"35609\"}"
},
"provider_id": "010085",
"state": "AL",
"score": "1583",
"address_1": "1201 7TH STREET SE",
"city": "DECATUR",
"footnote": "The lower limit of the confidence interval cannot be calculated if the number of observed infections equals zero",
"county_name": "MORGAN"
},
{
"hospital_name": "CGH MEDICAL CENTER",
"phone_number": {
"phone_number": "8156250400"
},
"zip_code": "61081",
"measure": "SSI: Abdominal Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-89.69715076069987",
"latitude": "41.80160672652032",
"human_address": "{\"address\":\"100 EAST LEFEVRE ROAD\",\"city\":\"STERLING\",\"state\":\"IL\",\"zip\":\"61081\"}"
},
"provider_id": "140043",
"state": "IL",
"score": "0.246",
"address_1": "100 EAST LEFEVRE ROAD",
"city": "STERLING",
"footnote": "No data are available from the hospital for this measure",
"county_name": "WHITESIDE"
},
{
"hospital_name": "SAINT JOSEPH REGIONAL MEDICAL CENTER",
"phone_number": {
"phone_number": "5743355000"
},
"zip_code": "46545",
"measure": "CAUTI Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-86.17859337871265",
"latitude": "41.70379334809016",
"human_address": "{\"address\":\"5215 HOLY CROSS PKWY\",\"city\":\"MISHAWAKA\",\"state\":\"IN\",\"zip\":\"46545\"}"
},
"provider_id": "150012",
"state": "IN",
"score": "3",
"address_1": "5215 HOLY CROSS PKWY",
"city": "MISHAWAKA",
"county_name": "ST JOSEPH"
},
{
"hospital_name": "TROY REGIONAL MEDICAL CENTER",
"phone_number": {
"phone_number": "3346705000"
},
"zip_code": "36081",
"measure": "CAUTI Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-85.94580755910599",
"latitude": "31.780408369480423",
"human_address": "{\"address\":\"1330 HIGHWAY 231 SOUTH\",\"city\":\"TROY\",\"state\":\"AL\",\"zip\":\"36081\"}"
},
"provider_id": "010126",
"state": "AL",
"score": "0",
"address_1": "1330 HIGHWAY 231 SOUTH",
"city": "TROY",
"footnote": "No data are available from the hospital for this measure",
"county_name": "PIKE"
},
{
"hospital_name": "LOUISIANA HEART HOSPITAL",
"phone_number": {
"phone_number": "9856907500"
},
"zip_code": "70445",
"measure": "CAUTI Urinary Catheter Days",
"location": {
"needs_recoding": false,
"longitude": "-89.9165561083299",
"latitude": "30.358122858733882",
"human_address": "{\"address\":\"64030 HIGHWAY 434\",\"city\":\"LACOMBE\",\"state\":\"LA\",\"zip\":\"70445\"}"
},
"provider_id": "190250",
"state": "LA",
"score": "919",
"address_1": "64030 HIGHWAY 434",
"city": "LACOMBE",
"footnote": "The lower limit of the confidence interval cannot be calculated if the number of observed infections equals zero",
"county_name": "SAINT TAMMANY"
},
{
"hospital_name": "VERDUGO HILLS HOSPITAL",
"phone_number": {
"phone_number": "8187907100"
},
"zip_code": "91209",
"measure": "SSI: Abdominal, Number of Procedures",
"location": {
"needs_recoding": false,
"longitude": "-118.21524869502508",
"latitude": "34.2056349764822",
"human_address": "{\"address\":\"1812 VERDUGO BLVD\",\"city\":\"GLENDALE\",\"state\":\"CA\",\"zip\":\"91209\"}"
},
"provider_id": "050124",
"state": "CA",
"score": "23",
"address_1": "1812 VERDUGO BLVD",
"city": "GLENDALE",
"footnote": "No data are available from the hospital for this measure",
"county_name": "LOS ANGELES"
},
{
"hospital_name": "HEREFORD REGIONAL MEDICAL CENTER",
"phone_number": {
"phone_number": "8063642141"
},
"zip_code": "79045",
"measure": "SSI: Abdominal, Number of Procedures",
"location": {
"needs_recoding": false,
"longitude": "-102.39191656354727",
"latitude": "34.82040976886757",
"human_address": "{\"address\":\"801 EAST THIRD\",\"city\":\"HEREFORD\",\"state\":\"TX\",\"zip\":\"79045\"}"
},
"provider_id": "450155",
"state": "TX",
"score": "6",
"address_1": "801 EAST THIRD",
"city": "HEREFORD",
"footnote": "No data are available from the hospital for this measure",
"county_name": "DEAF SMITH"
},
{
"hospital_name": "MARION GENERAL HOSPITAL",
"phone_number": {
"phone_number": "7403838400"
},
"zip_code": "43302",
"measure": "SSI: Abdominal, Number of Procedures",
"location": {
"needs_recoding": false,
"longitude": "-83.12878428120462",
"latitude": "40.57215145918394",
"human_address": "{\"address\":\"1000 MCKINLEY PARK DRIVE\",\"city\":\"MARION\",\"state\":\"OH\",\"zip\":\"43302\"}"
},
"provider_id": "360011",
"state": "OH",
"score": "110",
"address_1": "1000 MCKINLEY PARK DRIVE",
"city": "MARION",
"footnote": "The lower limit of the confidence interval cannot be calculated if the number of observed infections equals zero",
"county_name": "MARION"
},
{
"hospital_name": "LOS ANGELES COMMUNITY HOSPITAL",
"phone_number": {
"phone_number": "3232670477"
},
"zip_code": "90023",
"measure": "SSI: Abdominal Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-118.18683911211951",
"latitude": "34.018917736758965",
"human_address": "{\"address\":\"4081 E OLYMPIC BLVD\",\"city\":\"LOS ANGELES\",\"state\":\"CA\",\"zip\":\"90023\"}"
},
"provider_id": "050663",
"state": "CA",
"score": "0",
"address_1": "4081 E OLYMPIC BLVD",
"city": "LOS ANGELES",
"footnote": "No data are available from the hospital for this measure",
"county_name": "LOS ANGELES"
},
{
"hospital_name": "CARONDELET ST JOSEPH'S HOSPITAL",
"phone_number": {
"phone_number": "5208733000"
},
"zip_code": "85711",
"measure": "SSI: Colon Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-110.8577943940602",
"latitude": "32.226012082794895",
"human_address": "{\"address\":\"350 NORTH WILMOT ROAD\",\"city\":\"TUCSON\",\"state\":\"AZ\",\"zip\":\"85711\"}"
},
"provider_id": "030011",
"state": "AZ",
"score": "3",
"address_1": "350 NORTH WILMOT ROAD",
"city": "TUCSON",
"county_name": "PIMA"
},
{
"hospital_name": "NORTH AUSTIN MEDICAL CENTER",
"phone_number": {
"phone_number": "5129011000"
},
"zip_code": "78758",
"measure": "SSI: Abdominal, Number of Procedures",
"location": {
"needs_recoding": false,
"longitude": "-97.7067522961482",
"latitude": "30.413492055653656",
"human_address": "{\"address\":\"12221 MOPAC EXPRESSWAY NORTH\",\"city\":\"AUSTIN\",\"state\":\"TX\",\"zip\":\"78758\"}"
},
"provider_id": "450809",
"state": "TX",
"score": "232",
"address_1": "12221 MOPAC EXPRESSWAY NORTH",
"city": "AUSTIN",
"county_name": "TRAVIS"
},
{
"hospital_name": "TECHE REGIONAL MEDICAL CENTER",
"phone_number": {
"phone_number": "9853842200"
},
"zip_code": "70380",
"measure": "SSI: Abdominal Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-91.20231854046145",
"latitude": "29.705565104252365",
"human_address": "{\"address\":\"1125 MARGUERITE STREET\",\"city\":\"MORGAN CITY\",\"state\":\"LA\",\"zip\":\"70380\"}"
},
"provider_id": "190014",
"state": "LA",
"score": "0",
"address_1": "1125 MARGUERITE STREET",
"city": "MORGAN CITY",
"footnote": "No data are available from the hospital for this measure",
"county_name": "SAINT MARY"
},
{
"hospital_name": "MONONGALIA COUNTY GENERAL HOSPITAL",
"phone_number": {
"phone_number": "3045981200"
},
"zip_code": "26505",
"measure": "SSI: Colon, Number of Procedures",
"location": {
"needs_recoding": false,
"longitude": "-79.94632707688574",
"latitude": "39.662601573360305",
"human_address": "{\"address\":\"1200 JD ANDERSON DR\",\"city\":\"MORGANTOWN\",\"state\":\"WV\",\"zip\":\"26505\"}"
},
"provider_id": "510024",
"state": "WV",
"score": "67",
"address_1": "1200 JD ANDERSON DR",
"city": "MORGANTOWN",
"county_name": "MONONGALIA"
},
{
"hospital_name": "CUSHING MEMORIAL HOSPITAL",
"phone_number": {
"phone_number": "9136841102"
},
"zip_code": "66048",
"measure": "SSI: Abdominal, Number of Procedures",
"location": {
"needs_recoding": false,
"longitude": "-94.91935923617274",
"latitude": "39.30772180896997",
"human_address": "{\"address\":\"711 MARSHALL STREET\",\"city\":\"LEAVENWORTH\",\"state\":\"KS\",\"zip\":\"66048\"}"
},
"provider_id": "170133",
"state": "KS",
"score": "1",
"address_1": "711 MARSHALL STREET",
"city": "LEAVENWORTH",
"footnote": "No data are available from the hospital for this measure",
"county_name": "LEAVENWORTH"
},
{
"hospital_name": "OSWEGO HOSPITAL",
"phone_number": {
"phone_number": "3153495511"
},
"zip_code": "13126",
"measure": "SSI: Colon Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-76.51635718281113",
"latitude": "43.454730373258656",
"human_address": "{\"address\":\"110 WEST SIXTH STREET\",\"city\":\"OSWEGO\",\"state\":\"NY\",\"zip\":\"13126\"}"
},
"provider_id": "330218",
"state": "NY",
"score": "0",
"address_1": "110 WEST SIXTH STREET",
"city": "OSWEGO",
"footnote": "No data are available from the hospital for this measure",
"county_name": "OSWEGO"
},
{
"hospital_name": "MERCY MEDICAL CENTER",
"phone_number": {
"phone_number": "5167052525"
},
"zip_code": "11570",
"measure": "SSI: Colon Lower Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-73.63317488998615",
"latitude": "40.688164301129056",
"human_address": "{\"address\":\"1000 NORTH VILLAGE AVENUE\",\"city\":\"ROCKVILLE CENTRE\",\"state\":\"NY\",\"zip\":\"11570\"}"
},
"provider_id": "330259",
"state": "NY",
"score": "0.018",
"address_1": "1000 NORTH VILLAGE AVENUE",
"city": "ROCKVILLE CENTRE",
"county_name": "NASSAU"
},
{
"hospital_name": "WACCAMAW COMMUNITY HOSPITAL",
"phone_number": {
"phone_number": "8436521000"
},
"zip_code": "29576",
"measure": "CLABSI Lower Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-79.04097418864617",
"latitude": "33.560123969846444",
"human_address": "{\"address\":\"4070 HIGHWAY 17 BYPASS\",\"city\":\"MURRELLS INLET\",\"state\":\"SC\",\"zip\":\"29576\"}"
},
"provider_id": "420098",
"state": "SC",
"score": "0.020",
"address_1": "4070 HIGHWAY 17 BYPASS",
"city": "MURRELLS INLET",
"county_name": "GEORGETOWN"
},
{
"hospital_name": "GIBSON COMMUNITY HOSPITAL",
"phone_number": {
"phone_number": "2177844251"
},
"zip_code": "60936",
"measure": "SSI: Abdominal, Number of Procedures",
"location": {
"needs_recoding": false,
"longitude": "-88.37063548653005",
"latitude": "40.477741210683114",
"human_address": "{\"address\":\"1120 N MELVIN STREET\",\"city\":\"GIBSON CITY\",\"state\":\"IL\",\"zip\":\"60936\"}"
},
"provider_id": "141317",
"state": "IL",
"score": "1",
"address_1": "1120 N MELVIN STREET",
"city": "GIBSON CITY",
"footnote": "No data are available from the hospital for this measure",
"county_name": "FORD"
},
{
"hospital_name": "WHEATON FRANCISCAN HEALTHCARE- ST FRANCIS",
"phone_number": {
"phone_number": "4146475000"
},
"zip_code": "53215",
"measure": "CAUTI Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-87.93383490409366",
"latitude": "42.985626016335175",
"human_address": "{\"address\":\"3237 S 16TH ST\",\"city\":\"MILWAUKEE\",\"state\":\"WI\",\"zip\":\"53215\"}"
},
"provider_id": "520078",
"state": "WI",
"score": "2.166",
"address_1": "3237 S 16TH ST",
"city": "MILWAUKEE",
"county_name": "MILWAUKEE"
},
{
"hospital_name": "WOODLAND MEMORIAL HOSPITAL",
"phone_number": {
"phone_number": "5306623961"
},
"zip_code": "95695",
"measure": "Central-Line-Associated Blood Stream Infections (CLABSI)",
"location": {
"needs_recoding": false,
"longitude": "-121.79334528011981",
"latitude": "38.664050916397855",
"human_address": "{\"address\":\"1325 COTTONWOOD STREET\",\"city\":\"WOODLAND\",\"state\":\"CA\",\"zip\":\"95695\"}"
},
"provider_id": "050127",
"state": "CA",
"score": "0.00",
"address_1": "1325 COTTONWOOD STREET",
"city": "WOODLAND",
"footnote": "The lower limit of the confidence interval cannot be calculated if the number of observed infections equals zero",
"county_name": "YOLO"
},
{
"hospital_name": "ST JOSEPH'S HOSPITAL",
"phone_number": {
"phone_number": "6512323000"
},
"zip_code": "55102",
"measure": "SSI: Abdominal Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-93.0999347374934",
"latitude": "44.94922016212539",
"human_address": "{\"address\":\"45 WEST 10TH STREET\",\"city\":\"SAINT PAUL\",\"state\":\"MN\",\"zip\":\"55102\"}"
},
"provider_id": "240063",
"state": "MN",
"score": "0",
"address_1": "45 WEST 10TH STREET",
"city": "SAINT PAUL",
"footnote": "No data are available from the hospital for this measure",
"county_name": "RAMSEY"
},
{
"hospital_name": "MCNAIRY REGIONAL HOSPITAL",
"phone_number": {
"phone_number": "7316453221"
},
"zip_code": "38375",
"measure": "SSI: Colon, Number of Procedures",
"location": {
"needs_recoding": false,
"longitude": "-88.57457487030905",
"latitude": "35.16298126311267",
"human_address": "{\"address\":\"705 E POPLAR AVE\",\"city\":\"SELMER\",\"state\":\"TN\",\"zip\":\"38375\"}"
},
"provider_id": "440051",
"state": "TN",
"score": "1",
"address_1": "705 E POPLAR AVE",
"city": "SELMER",
"footnote": "No data are available from the hospital for this measure",
"county_name": "MCNAIRY"
},
{
"hospital_name": "CAPE CORAL HOSPITAL",
"phone_number": {
"phone_number": "2395742323"
},
"zip_code": "33990",
"measure": "CAUTI Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-81.94091477880374",
"latitude": "26.639288008389883",
"human_address": "{\"address\":\"636 DEL PRADO BLVD\",\"city\":\"CAPE CORAL\",\"state\":\"FL\",\"zip\":\"33990\"}"
},
"provider_id": "100244",
"state": "FL",
"score": "2.781",
"address_1": "636 DEL PRADO BLVD",
"city": "CAPE CORAL",
"county_name": "LEE"
},
{
"hospital_name": "PARADISE VALLEY HOSPITAL",
"phone_number": {
"phone_number": "6194704321"
},
"zip_code": "91950",
"measure": "CAUTI Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-117.08303823301759",
"latitude": "32.68632933340308",
"human_address": "{\"address\":\"2400 EAST FOURTH STREET\",\"city\":\"NATIONAL CITY\",\"state\":\"CA\",\"zip\":\"91950\"}"
},
"provider_id": "050024",
"state": "CA",
"score": "0.731",
"address_1": "2400 EAST FOURTH STREET",
"city": "NATIONAL CITY",
"footnote": "No data are available from the hospital for this measure",
"county_name": "SAN DIEGO"
},
{
"hospital_name": "ST LUKES REGIONAL MEDICAL CENTER",
"phone_number": {
"phone_number": "2083812222"
},
"zip_code": "83712",
"measure": "CAUTI Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-116.1925655324859",
"latitude": "43.61241749787615",
"human_address": "{\"address\":\"190 EAST BANNOCK STREET\",\"city\":\"BOISE\",\"state\":\"ID\",\"zip\":\"83712\"}"
},
"provider_id": "130006",
"state": "ID",
"score": "7.745",
"address_1": "190 EAST BANNOCK STREET",
"city": "BOISE",
"county_name": "ADA"
},
{
"hospital_name": "PARK NICOLLET METHODIST HOSPITAL",
"phone_number": {
"phone_number": "9529935000"
},
"zip_code": "55426",
"measure": "CAUTI Upper Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-93.36163005939176",
"latitude": "44.92707341996777",
"human_address": "{\"address\":\"6500 EXCELSIOR BLVD\",\"city\":\"SAINT LOUIS PARK\",\"state\":\"MN\",\"zip\":\"55426\"}"
},
"provider_id": "240053",
"state": "MN",
"score": "3.910",
"address_1": "6500 EXCELSIOR BLVD",
"city": "SAINT LOUIS PARK",
"county_name": "HENNEPIN"
},
{
"hospital_name": "HOLY REDEEMER HOSPITAL AND MEDICAL CENTER",
"phone_number": {
"phone_number": "2159473000"
},
"zip_code": "19046",
"measure": "SSI: Abdominal Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-75.09350074424275",
"latitude": "40.08449860874659",
"human_address": "{\"address\":\"1648 HUNTINGDON PIKE\",\"city\":\"MEADOWBROOK\",\"state\":\"PA\",\"zip\":\"19046\"}"
},
"provider_id": "390097",
"state": "PA",
"score": "0.472",
"address_1": "1648 HUNTINGDON PIKE",
"city": "MEADOWBROOK",
"footnote": "No data are available from the hospital for this measure",
"county_name": "MONTGOMERY"
},
{
"hospital_name": "COMMUNITY HOWARD REGIONAL HEALTH INC",
"phone_number": {
"phone_number": "7654538371"
},
"zip_code": "46904",
"measure": "CLABSI Upper Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-86.12706996756907",
"latitude": "40.44687590050245",
"human_address": "{\"address\":\"3500 S LAFOUNTAIN ST\",\"city\":\"KOKOMO\",\"state\":\"IN\",\"zip\":\"46904\"}"
},
"provider_id": "150007",
"state": "IN",
"score": "1.801",
"address_1": "3500 S LAFOUNTAIN ST",
"city": "KOKOMO",
"footnote": "The lower limit of the confidence interval cannot be calculated if the number of observed infections equals zero",
"county_name": "HOWARD"
},
{
"hospital_name": "SAN ANTONIO COMMUNITY HOSPITAL",
"phone_number": {
"phone_number": "7149852811"
},
"zip_code": "91786",
"measure": "SSI: Colon Lower Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-117.63686804825696",
"latitude": "34.10111627953191",
"human_address": "{\"address\":\"999 SAN BERNARDINO RD\",\"city\":\"UPLAND\",\"state\":\"CA\",\"zip\":\"91786\"}"
},
"provider_id": "050099",
"state": "CA",
"score": "0.014",
"address_1": "999 SAN BERNARDINO RD",
"city": "UPLAND",
"county_name": "SAN BERNARDINO"
},
{
"hospital_name": "SAINT JOSEPH REGIONAL MEDICAL CENTER",
"phone_number": {
"phone_number": "5743355000"
},
"zip_code": "46545",
"measure": "Surgical Site Infection from colon surgery (SSI: Colon)",
"location": {
"needs_recoding": false,
"longitude": "-86.17859337871265",
"latitude": "41.70379334809016",
"human_address": "{\"address\":\"5215 HOLY CROSS PKWY\",\"city\":\"MISHAWAKA\",\"state\":\"IN\",\"zip\":\"46545\"}"
},
"provider_id": "150012",
"state": "IN",
"score": "3.51",
"address_1": "5215 HOLY CROSS PKWY",
"city": "MISHAWAKA",
"county_name": "ST JOSEPH"
},
{
"hospital_name": "FIRSTHEALTH MOORE REGIONAL HOSPITAL",
"phone_number": {
"phone_number": "9107151000"
},
"zip_code": "28374",
"measure": "Central-Line-Associated Blood Stream Infections (CLABSI)",
"location": {
"needs_recoding": false,
"longitude": "-79.45804079986817",
"latitude": "35.20653508746246",
"human_address": "{\"address\":\"155 MEMORIAL DRIVE\",\"city\":\"PINEHURST\",\"state\":\"NC\",\"zip\":\"28374\"}"
},
"provider_id": "340115",
"state": "NC",
"score": "0.14",
"address_1": "155 MEMORIAL DRIVE",
"city": "PINEHURST",
"county_name": "MOORE"
},
{
"hospital_name": "FRANKLIN HOSPITAL",
"phone_number": {
"phone_number": "5162566000"
},
"zip_code": "11580",
"measure": "CAUTI Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-73.6857231091488",
"latitude": "40.681670895912134",
"human_address": "{\"address\":\"900 FRANKLIN AVENUE\",\"city\":\"VALLEY STREAM\",\"state\":\"NY\",\"zip\":\"11580\"}"
},
"provider_id": "330372",
"state": "NY",
"score": "3.779",
"address_1": "900 FRANKLIN AVENUE",
"city": "VALLEY STREAM",
"county_name": "NASSAU"
},
{
"hospital_name": "CMC-BLUE RIDGE",
"phone_number": {
"phone_number": "8285805000"
},
"zip_code": "28655",
"measure": "SSI: Abdominal Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-81.65769129211628",
"latitude": "35.72343875177245",
"human_address": "{\"address\":\"2201 S STERLING ST\",\"city\":\"MORGANTON\",\"state\":\"NC\",\"zip\":\"28655\"}"
},
"provider_id": "340075",
"state": "NC",
"score": "0.058",
"address_1": "2201 S STERLING ST",
"city": "MORGANTON",
"footnote": "No data are available from the hospital for this measure",
"county_name": "BURKE"
},
{
"hospital_name": "COVENANT MEDICAL CENTER",
"phone_number": {
"phone_number": "3192728000"
},
"zip_code": "50702",
"measure": "SSI: Colon Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-92.3456263706675",
"latitude": "42.46388977891575",
"human_address": "{\"address\":\"3421 WEST NINTH STREET\",\"city\":\"WATERLOO\",\"state\":\"IA\",\"zip\":\"50702\"}"
},
"provider_id": "160067",
"state": "IA",
"score": "0.815",
"address_1": "3421 WEST NINTH STREET",
"city": "WATERLOO",
"footnote": "No data are available from the hospital for this measure",
"county_name": "BLACK HAWK"
},
{
"hospital_name": "FAIRFIELD MEMORIAL HOSPITAL",
"phone_number": {
"phone_number": "6188422611"
},
"zip_code": "62837",
"measure": "SSI: Colon Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-88.37450023458693",
"latitude": "38.38066758431518",
"human_address": "{\"address\":\"303 N W 11TH STREET\",\"city\":\"FAIRFIELD\",\"state\":\"IL\",\"zip\":\"62837\"}"
},
"provider_id": "141311",
"state": "IL",
"score": "0",
"address_1": "303 N W 11TH STREET",
"city": "FAIRFIELD",
"footnote": "No data are available from the hospital for this measure",
"county_name": "WAYNE"
},
{
"hospital_name": "AURORA ST LUKES MEDICAL CENTER",
"phone_number": {
"phone_number": "4146496000"
},
"zip_code": "53215",
"measure": "SSI: Colon Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-87.94942914808172",
"latitude": "42.98859377903187",
"human_address": "{\"address\":\"2900 W OKLAHOMA AVE\",\"city\":\"MILWAUKEE\",\"state\":\"WI\",\"zip\":\"53215\"}"
},
"provider_id": "520138",
"state": "WI",
"score": "8",
"address_1": "2900 W OKLAHOMA AVE",
"city": "MILWAUKEE",
"county_name": "MILWAUKEE"
},
{
"hospital_name": "ST CHARLES MEDICAL CENTER - BEND",
"phone_number": {
"phone_number": "5413824321"
},
"zip_code": "97701",
"measure": "SSI: Colon, Number of Procedures",
"location": {
"needs_recoding": false,
"longitude": "-121.26652243535591",
"latitude": "44.06580170572744",
"human_address": "{\"address\":\"2500 NE NEFF ROAD\",\"city\":\"BEND\",\"state\":\"OR\",\"zip\":\"97701\"}"
},
"provider_id": "380047",
"state": "OR",
"score": "47",
"address_1": "2500 NE NEFF ROAD",
"city": "BEND",
"county_name": "DESCHUTES"
},
{
"hospital_name": "PRESBYTERIAN HOSPITAL",
"phone_number": {
"phone_number": "5057248386"
},
"zip_code": "87106",
"measure": "Surgical Site Infection from colon surgery (SSI: Colon)",
"location": {
"needs_recoding": false,
"longitude": "-106.63459798474634",
"latitude": "35.08227610420329",
"human_address": "{\"address\":\"1100 CENTRAL AVENUE SE\",\"city\":\"ALBUQUERQUE\",\"state\":\"NM\",\"zip\":\"87106\"}"
},
"provider_id": "320021",
"state": "NM",
"score": "0.00",
"address_1": "1100 CENTRAL AVENUE SE",
"city": "ALBUQUERQUE",
"footnote": "The lower limit of the confidence interval cannot be calculated if the number of observed infections equals zero",
"county_name": "BERNALILLO"
},
{
"hospital_name": "TACOMA GENERAL ALLENMORE HOSPITAL",
"phone_number": {
"phone_number": "2534031000"
},
"zip_code": "98415",
"measure": "CLABSI Upper Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-122.45347058132049",
"latitude": "47.260118097333816",
"human_address": "{\"address\":\"315 S MLK JR WAY\",\"city\":\"TACOMA\",\"state\":\"WA\",\"zip\":\"98415\"}"
},
"provider_id": "500129",
"state": "WA",
"score": "0.808",
"address_1": "315 S MLK JR WAY",
"city": "TACOMA",
"county_name": "PIERCE"
},
{
"hospital_name": "MULTICARE AUBURN MEDICAL CENTER",
"phone_number": {
"phone_number": "2538337711"
},
"zip_code": "98001",
"measure": "SSI: Colon, Number of Procedures",
"location": {
"needs_recoding": false,
"longitude": "-122.22973301311445",
"latitude": "47.30914500879944",
"human_address": "{\"address\":\"202 NORTH DIVISION STREET PLAZA ONE\",\"city\":\"AUBURN\",\"state\":\"WA\",\"zip\":\"98001\"}"
},
"provider_id": "500015",
"state": "WA",
"score": "27",
"address_1": "202 NORTH DIVISION STREET PLAZA ONE",
"city": "AUBURN",
"footnote": "No data are available from the hospital for this measure",
"county_name": "KING"
},
{
"hospital_name": "UNIVERSITY OF ILLINOIS HOSPITAL",
"phone_number": {
"phone_number": "3129963900"
},
"zip_code": "60612",
"measure": "SSI: Colon Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-87.67038266594221",
"latitude": "41.869237002506175",
"human_address": "{\"address\":\"1740 WEST TAYLOR ST SUITE 1400\",\"city\":\"CHICAGO\",\"state\":\"IL\",\"zip\":\"60612\"}"
},
"provider_id": "140150",
"state": "IL",
"score": "1.006",
"address_1": "1740 WEST TAYLOR ST SUITE 1400",
"city": "CHICAGO",
"county_name": "COOK"
},
{
"hospital_name": "MIDWESTERN REGION MED CENTER",
"phone_number": {
"phone_number": "8478724561"
},
"zip_code": "60099",
"measure": "SSI: Colon, Number of Procedures",
"location": {
"needs_recoding": false,
"longitude": "-87.82690551480988",
"latitude": "42.449342303823016",
"human_address": "{\"address\":\"2520 ELISHA AVENUE\",\"city\":\"ZION\",\"state\":\"IL\",\"zip\":\"60099\"}"
},
"provider_id": "140100",
"state": "IL",
"score": "35",
"address_1": "2520 ELISHA AVENUE",
"city": "ZION",
"county_name": "LAKE"
},
{
"hospital_name": "GULF BREEZE HOSPITAL",
"phone_number": {
"phone_number": "8509342000"
},
"zip_code": "32561",
"measure": "CLABSI Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-87.15682067077847",
"latitude": "30.35867707750799",
"human_address": "{\"address\":\"1110 GULF BREEZE PKWY\",\"city\":\"GULF BREEZE\",\"state\":\"FL\",\"zip\":\"32561\"}"
},
"provider_id": "100266",
"state": "FL",
"score": "0.967",
"address_1": "1110 GULF BREEZE PKWY",
"city": "GULF BREEZE",
"footnote": "No data are available from the hospital for this measure",
"county_name": "SANTA ROSA"
},
{
"hospital_name": "BANNER GOOD SAMARITAN MEDICAL CENTER",
"phone_number": {
"phone_number": "6022392000"
},
"zip_code": "85006",
"measure": "CLABSI Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-112.05830566145961",
"latitude": "33.46565396087482",
"human_address": "{\"address\":\"1111 EAST MCDOWELL ROAD\",\"city\":\"PHOENIX\",\"state\":\"AZ\",\"zip\":\"85006\"}"
},
"provider_id": "030002",
"state": "AZ",
"score": "28.676",
"address_1": "1111 EAST MCDOWELL ROAD",
"city": "PHOENIX",
"county_name": "MARICOPA"
},
{
"hospital_name": "CITRUS MEMORIAL HOSPITAL",
"phone_number": {
"phone_number": "3527261551"
},
"zip_code": "34452",
"measure": "CLABSI Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-82.3356182242432",
"latitude": "28.83227578361766",
"human_address": "{\"address\":\"502 W HIGHLAND BLVD\",\"city\":\"INVERNESS\",\"state\":\"FL\",\"zip\":\"34452\"}"
},
"provider_id": "100023",
"state": "FL",
"score": "0",
"address_1": "502 W HIGHLAND BLVD",
"city": "INVERNESS",
"footnote": "The lower limit of the confidence interval cannot be calculated if the number of observed infections equals zero",
"county_name": "CITRUS"
},
{
"hospital_name": "MORTON PLANT NORTH BAY HOSPITAL",
"phone_number": {
"phone_number": "7278428468"
},
"zip_code": "34652",
"measure": "SSI: Colon Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-82.71542889687748",
"latitude": "28.25385883403277",
"human_address": "{\"address\":\"6600 MADISON STREET\",\"city\":\"NEW PORT RICHEY\",\"state\":\"FL\",\"zip\":\"34652\"}"
},
"provider_id": "100063",
"state": "FL",
"score": "1.758",
"address_1": "6600 MADISON STREET",
"city": "NEW PORT RICHEY",
"county_name": "PASCO"
},
{
"hospital_name": "ST JOSEPH MEDICAL CENTER",
"phone_number": {
"phone_number": "6103782300"
},
"zip_code": "19605",
"measure": "Central-Line-Associated Blood Stream Infections (CLABSI)",
"location": {
"needs_recoding": false,
"longitude": "-75.97733093455444",
"latitude": "40.376583791849164",
"human_address": "{\"address\":\"2500 BERNVILLE ROAD\",\"city\":\"READING\",\"state\":\"PA\",\"zip\":\"19605\"}"
},
"provider_id": "390096",
"state": "PA",
"score": "0.53",
"address_1": "2500 BERNVILLE ROAD",
"city": "READING",
"county_name": "BERKS"
},
{
"hospital_name": "ALTA VISTA REGIONAL HOSPITAL",
"phone_number": {
"phone_number": "5054263930"
},
"zip_code": "87701",
"measure": "CLABSI Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-105.21081388912377",
"latitude": "35.6218269759702",
"human_address": "{\"address\":\"104 LEGION AVE\",\"city\":\"LAS VEGAS\",\"state\":\"NM\",\"zip\":\"87701\"}"
},
"provider_id": "320003",
"state": "NM",
"score": "0",
"address_1": "104 LEGION AVE",
"city": "LAS VEGAS",
"footnote": "No data are available from the hospital for this measure",
"county_name": "SAN MIGUEL"
},
{
"hospital_name": "TEXAS HEALTH HARRIS METHODIST HURST-EULESS-BEDFORD",
"phone_number": {
"phone_number": "8176854000"
},
"zip_code": "76022",
"measure": "CAUTI Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-97.12515556002025",
"latitude": "32.83284364085734",
"human_address": "{\"address\":\"1600 HOSPITAL PARKWAY\",\"city\":\"BEDFORD\",\"state\":\"TX\",\"zip\":\"76022\"}"
},
"provider_id": "450639",
"state": "TX",
"score": "2.057",
"address_1": "1600 HOSPITAL PARKWAY",
"city": "BEDFORD",
"county_name": "TARRANT"
},
{
"hospital_name": "PROCTOR HOSPITAL",
"phone_number": {
"phone_number": "3096911000"
},
"zip_code": "61614",
"measure": "CAUTI Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-89.59333435562961",
"latitude": "40.75225520031966",
"human_address": "{\"address\":\"5409 N KNOXVILLE AVE\",\"city\":\"PEORIA\",\"state\":\"IL\",\"zip\":\"61614\"}"
},
"provider_id": "140013",
"state": "IL",
"score": "1.265",
"address_1": "5409 N KNOXVILLE AVE",
"city": "PEORIA",
"county_name": "PEORIA"
},
{
"hospital_name": "ST LUKES EPISCOPAL HOSPITAL",
"phone_number": {
"phone_number": "8323551000"
},
"zip_code": "77030",
"measure": "SSI: Abdominal Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-95.39920121831267",
"latitude": "29.70844437728906",
"human_address": "{\"address\":\"6720 BERTNER\",\"city\":\"HOUSTON\",\"state\":\"TX\",\"zip\":\"77030\"}"
},
"provider_id": "450193",
"state": "TX",
"score": "6",
"address_1": "6720 BERTNER",
"city": "HOUSTON",
"footnote": "No data are available from the hospital for this measure",
"county_name": "HARRIS"
},
{
"hospital_name": "SOUTHEASTERN OHIO REGIONAL MEDICAL CENTER",
"phone_number": {
"phone_number": "7404398111"
},
"zip_code": "43725",
"measure": "CAUTI Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-81.57684548686906",
"latitude": "40.04007589039584",
"human_address": "{\"address\":\"1341 NORTH CLARK STREET\",\"city\":\"CAMBRIDGE\",\"state\":\"OH\",\"zip\":\"43725\"}"
},
"provider_id": "360203",
"state": "OH",
"score": "0.930",
"address_1": "1341 NORTH CLARK STREET",
"city": "CAMBRIDGE",
"footnote": "No data are available from the hospital for this measure",
"county_name": "GUERNSEY"
},
{
"hospital_name": "WASHINGTON REGIONAL MED CTR AT NORTH HILLS",
"phone_number": {
"phone_number": "4794635113"
},
"zip_code": "72703",
"measure": "SSI: Colon Upper Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-94.15791676379484",
"latitude": "36.110848695554296",
"human_address": "{\"address\":\"3215 N NORTH HILLS BLVD\",\"city\":\"FAYETTEVILLE\",\"state\":\"AR\",\"zip\":\"72703\"}"
},
"provider_id": "040004",
"state": "AR",
"score": "3.155",
"address_1": "3215 N NORTH HILLS BLVD",
"city": "FAYETTEVILLE",
"county_name": "WASHINGTON"
},
{
"hospital_name": "CLARENDON MEMORIAL HOSPITAL",
"phone_number": {
"phone_number": "8034358463"
},
"zip_code": "29102",
"measure": "SSI: Abdominal, Number of Procedures",
"location": {
"needs_recoding": false,
"longitude": "-80.2118758199515",
"latitude": "33.68785443228046",
"human_address": "{\"address\":\"10 HOSPITAL ST BOX 550\",\"city\":\"MANNING\",\"state\":\"SC\",\"zip\":\"29102\"}"
},
"provider_id": "420069",
"state": "SC",
"score": "24",
"address_1": "10 HOSPITAL ST BOX 550",
"city": "MANNING",
"footnote": "No data are available from the hospital for this measure",
"county_name": "CLARENDON"
},
{
"hospital_name": "HERITAGE VALLEY BEAVER",
"phone_number": {
"phone_number": "4127287000"
},
"zip_code": "15009",
"measure": "CLABSI Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-80.32434745825583",
"latitude": "40.71035926864681",
"human_address": "{\"address\":\"1000 DUTCH RIDGE ROAD\",\"city\":\"BEAVER\",\"state\":\"PA\",\"zip\":\"15009\"}"
},
"provider_id": "390036",
"state": "PA",
"score": "4.809",
"address_1": "1000 DUTCH RIDGE ROAD",
"city": "BEAVER",
"county_name": "BEAVER"
},
{
"hospital_name": "CENTURA HEALTH-ST THOMAS MORE HOSPITAL",
"phone_number": {
"phone_number": "7192852000"
},
"zip_code": "81212",
"measure": "SSI: Abdominal Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-105.22957818515067",
"latitude": "38.45572296831051",
"human_address": "{\"address\":\"1338 PHAY AVE\",\"city\":\"CANON CITY\",\"state\":\"CO\",\"zip\":\"81212\"}"
},
"provider_id": "060016",
"state": "CO",
"score": "0.071",
"address_1": "1338 PHAY AVE",
"city": "CANON CITY",
"footnote": "No data are available from the hospital for this measure",
"county_name": "FREMONT"
},
{
"hospital_name": "ST CATHERINE HOSPITAL",
"phone_number": {
"phone_number": "6202722561"
},
"zip_code": "67846",
"measure": "SSI: Abdominal Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-100.86910823512747",
"latitude": "37.969034054075216",
"human_address": "{\"address\":\"401 EAST SPRUCE\",\"city\":\"GARDEN CITY\",\"state\":\"KS\",\"zip\":\"67846\"}"
},
"provider_id": "170023",
"state": "KS",
"score": "0.091",
"address_1": "401 EAST SPRUCE",
"city": "GARDEN CITY",
"footnote": "No data are available from the hospital for this measure",
"county_name": "FINNEY"
},
{
"hospital_name": "CATHOLIC MEDICAL CENTER",
"phone_number": {
"phone_number": "6036683545"
},
"zip_code": "03102",
"measure": "CLABSI Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-71.47356479713436",
"latitude": "42.99170491075434",
"human_address": "{\"address\":\"100 MCGREGOR STREET\",\"city\":\"MANCHESTER\",\"state\":\"NH\",\"zip\":\"03102\"}"
},
"provider_id": "300034",
"state": "NH",
"score": "4.539",
"address_1": "100 MCGREGOR STREET",
"city": "MANCHESTER",
"county_name": "HILLSBOROUGH"
},
{
"hospital_name": "MILES MEMORIAL HOSPITAL INC (LINCOLN COUNTY HC)",
"phone_number": {
"phone_number": "2075631234"
},
"zip_code": "04543",
"measure": "CAUTI Urinary Catheter Days",
"location": {
"needs_recoding": false,
"longitude": "-69.52992943114991",
"latitude": "44.02637510125087",
"human_address": "{\"address\":\"35 MILES STREET\",\"city\":\"DAMARISCOTTA\",\"state\":\"ME\",\"zip\":\"04543\"}"
},
"provider_id": "200002",
"state": "ME",
"score": "279",
"address_1": "35 MILES STREET",
"city": "DAMARISCOTTA",
"footnote": "No data are available from the hospital for this measure",
"county_name": "LINCOLN"
},
{
"hospital_name": "FALLBROOK HOSPITAL",
"phone_number": {
"phone_number": "7607281191"
},
"zip_code": "92028",
"measure": "SSI: Abdominal, Number of Procedures",
"location": {
"needs_recoding": false,
"longitude": "-117.24495217117271",
"latitude": "33.38021023832982",
"human_address": "{\"address\":\"624 E ELDER ST\",\"city\":\"FALLBROOK\",\"state\":\"CA\",\"zip\":\"92028\"}"
},
"provider_id": "050435",
"state": "CA",
"score": "15",
"address_1": "624 E ELDER ST",
"city": "FALLBROOK",
"footnote": "No data are available from the hospital for this measure",
"county_name": "SAN DIEGO"
},
{
"hospital_name": "PEKIN MEMORIAL HOSPITAL",
"phone_number": {
"phone_number": "3093471151"
},
"zip_code": "61554",
"measure": "SSI: Abdominal Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-89.6330403287324",
"latitude": "40.56265914407084",
"human_address": "{\"address\":\"600 SOUTH 13TH STREET\",\"city\":\"PEKIN\",\"state\":\"IL\",\"zip\":\"61554\"}"
},
"provider_id": "140120",
"state": "IL",
"score": "0.045",
"address_1": "600 SOUTH 13TH STREET",
"city": "PEKIN",
"footnote": "No data are available from the hospital for this measure",
"county_name": "TAZEWELL"
},
{
"hospital_name": "MARTIN MEDICAL CENTER",
"phone_number": {
"phone_number": "7722875200"
},
"zip_code": "34995",
"measure": "SSI: Colon, Number of Procedures",
"location": {
"needs_recoding": false,
"longitude": "-80.24304743285889",
"latitude": "27.199373087797348",
"human_address": "{\"address\":\"200 SE HOSPITAL AVE\",\"city\":\"STUART\",\"state\":\"FL\",\"zip\":\"34995\"}"
},
"provider_id": "100044",
"state": "FL",
"score": "160",
"address_1": "200 SE HOSPITAL AVE",
"city": "STUART",
"county_name": "MARTIN"
},
{
"hospital_name": "KUAKINI MEDICAL CENTER",
"phone_number": {
"phone_number": "8085362236"
},
"zip_code": "96817",
"measure": "CAUTI Upper Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-157.85632644277553",
"latitude": "21.32226806427875",
"human_address": "{\"address\":\"347 NORTH KUAKINI STREET\",\"city\":\"HONOLULU\",\"state\":\"HI\",\"zip\":\"96817\"}"
},
"provider_id": "120007",
"state": "HI",
"score": "3.111",
"address_1": "347 NORTH KUAKINI STREET",
"city": "HONOLULU",
"county_name": "HONOLULU"
},
{
"hospital_name": "NACOGDOCHES MEDICAL CENTER",
"phone_number": {
"phone_number": "9365699481"
},
"zip_code": "75961",
"measure": "SSI: Colon Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-94.62225735891866",
"latitude": "31.583722772404172",
"human_address": "{\"address\":\"4920 NE STALLINGS DRIVE\",\"city\":\"NACOGDOCHES\",\"state\":\"TX\",\"zip\":\"75961\"}"
},
"provider_id": "450656",
"state": "TX",
"score": "1",
"address_1": "4920 NE STALLINGS DRIVE",
"city": "NACOGDOCHES",
"footnote": "No data are available from the hospital for this measure",
"county_name": "NACOGDOCHES"
},
{
"hospital_name": "VAN WERT COUNTY HOSPITAL",
"phone_number": {
"phone_number": "4192388627"
},
"zip_code": "45891",
"measure": "SSI: Colon Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-84.58132425682851",
"latitude": "40.850320756066765",
"human_address": "{\"address\":\"1250 S WASHINGTON STREET\",\"city\":\"VAN WERT\",\"state\":\"OH\",\"zip\":\"45891\"}"
},
"provider_id": "360071",
"state": "OH",
"score": "0.284",
"address_1": "1250 S WASHINGTON STREET",
"city": "VAN WERT",
"footnote": "No data are available from the hospital for this measure",
"county_name": "VAN WERT"
},
{
"hospital_name": "SPEARE MEMORIAL HOSPITAL",
"phone_number": {
"phone_number": "6035361120"
},
"zip_code": "03264",
"measure": "SSI: Colon Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-71.69492091254824",
"latitude": "43.757882836115414",
"human_address": "{\"address\":\"16 HOSPITAL ROAD\",\"city\":\"PLYMOUTH\",\"state\":\"NH\",\"zip\":\"03264\"}"
},
"provider_id": "301311",
"state": "NH",
"score": "0.051",
"address_1": "16 HOSPITAL ROAD",
"city": "PLYMOUTH",
"footnote": "No data are available from the hospital for this measure",
"county_name": "GRAFTON"
},
{
"hospital_name": "ST PETER'S HOSPITAL",
"phone_number": {
"phone_number": "4064422480"
},
"zip_code": "59601",
"measure": "CAUTI Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-111.99738847208654",
"latitude": "46.584254986817655",
"human_address": "{\"address\":\"2475 BROADWAY\",\"city\":\"HELENA\",\"state\":\"MT\",\"zip\":\"59601\"}"
},
"provider_id": "270003",
"state": "MT",
"score": "0.615",
"address_1": "2475 BROADWAY",
"city": "HELENA",
"footnote": "No data are available from the hospital for this measure",
"county_name": "LEWIS AND CLARK"
},
{
"hospital_name": "UNIVERSITY OF MINNESOTA MEDICAL CENTER, FAIRVIEW",
"phone_number": {
"phone_number": "6122733000"
},
"zip_code": "55454",
"measure": "SSI: Abdominal Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-93.23703780267293",
"latitude": "44.96594048890716",
"human_address": "{\"address\":\"2450 RIVERSIDE AVENUE\",\"city\":\"MINNEAPOLIS\",\"state\":\"MN\",\"zip\":\"55454\"}"
},
"provider_id": "240080",
"state": "MN",
"score": "2.011",
"address_1": "2450 RIVERSIDE AVENUE",
"city": "MINNEAPOLIS",
"county_name": "HENNEPIN"
},
{
"hospital_name": "BAYFRONT MEDICAL CENTER INC",
"phone_number": {
"phone_number": "7278231234"
},
"zip_code": "33701",
"measure": "SSI: Abdominal Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-82.64169348369518",
"latitude": "27.763035850101744",
"human_address": "{\"address\":\"701 6TH ST S\",\"city\":\"SAINT PETERSBURG\",\"state\":\"FL\",\"zip\":\"33701\"}"
},
"provider_id": "100032",
"state": "FL",
"score": "0",
"address_1": "701 6TH ST S",
"city": "SAINT PETERSBURG",
"footnote": "No data are available from the hospital for this measure",
"county_name": "PINELLAS"
},
{
"hospital_name": "SAINT LUKE'S EAST LEE'S SUMMIT HOSPITAL",
"phone_number": {
"phone_number": "8163475000"
},
"zip_code": "64086",
"measure": "Central-Line-Associated Blood Stream Infections (CLABSI)",
"location": {
"needs_recoding": false,
"longitude": "-94.38159613892236",
"latitude": "38.941545721758644",
"human_address": "{\"address\":\"100 N E SAINT LUKE'S BOULEVARD\",\"city\":\"LEES SUMMIT\",\"state\":\"MO\",\"zip\":\"64086\"}"
},
"provider_id": "260216",
"state": "MO",
"score": "0.67",
"address_1": "100 N E SAINT LUKE'S BOULEVARD",
"city": "LEES SUMMIT",
"county_name": "JACKSON"
},
{
"hospital_name": "ST JOSEPHS MED CENTER OF STOCKTON",
"phone_number": {
"phone_number": "2099432000"
},
"zip_code": "95204",
"measure": "CLABSI Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-121.28925729625661",
"latitude": "37.970808530111924",
"human_address": "{\"address\":\"1800 N CALIFORNIA ST\",\"city\":\"STOCKTON\",\"state\":\"CA\",\"zip\":\"95204\"}"
},
"provider_id": "050084",
"state": "CA",
"score": "13.535",
"address_1": "1800 N CALIFORNIA ST",
"city": "STOCKTON",
"footnote": "The lower limit of the confidence interval cannot be calculated if the number of observed infections equals zero",
"county_name": "SAN JOAQUIN"
},
{
"hospital_name": "IRWIN COUNTY HOSPITAL",
"phone_number": {
"phone_number": "2294683845"
},
"zip_code": "31774",
"measure": "SSI: Abdominal Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-83.2503655613194",
"latitude": "31.603322083042563",
"human_address": "{\"address\":\"710 N IRWIN AVENUE\",\"city\":\"OCILLA\",\"state\":\"GA\",\"zip\":\"31774\"}"
},
"provider_id": "110130",
"state": "GA",
"score": "0.332",
"address_1": "710 N IRWIN AVENUE",
"city": "OCILLA",
"footnote": "No data are available from the hospital for this measure",
"county_name": "IRWIN"
},
{
"hospital_name": "MELISSA MEMORIAL HOSPITAL",
"phone_number": {
"phone_number": "9708542241"
},
"zip_code": "80734",
"measure": "SSI: Abdominal Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-102.29037852652863",
"latitude": "40.57848381703063",
"human_address": "{\"address\":\"1001 E JOHNSON STREET\",\"city\":\"HOLYOKE\",\"state\":\"CO\",\"zip\":\"80734\"}"
},
"provider_id": "061305",
"state": "CO",
"score": "0.000",
"address_1": "1001 E JOHNSON STREET",
"city": "HOLYOKE",
"footnote": "No data are available from the hospital for this measure",
"county_name": "PHILLIPS"
},
{
"hospital_name": "HILLCREST BAPTIST MEDICAL CENTER",
"phone_number": {
"phone_number": "2542022000"
},
"zip_code": "76712",
"measure": "SSI: Abdominal Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-97.15699519115852",
"latitude": "31.48922997905185",
"human_address": "{\"address\":\"100 HILLCREST MEDICAL BLVD\",\"city\":\"WACO\",\"state\":\"TX\",\"zip\":\"76712\"}"
},
"provider_id": "450101",
"state": "TX",
"score": "0.785",
"address_1": "100 HILLCREST MEDICAL BLVD",
"city": "WACO",
"footnote": "No data are available from the hospital for this measure",
"county_name": "MCLENNAN"
},
{
"hospital_name": "BRIDGEPORT HOSPITAL",
"phone_number": {
"phone_number": "2033843000"
},
"zip_code": "06610",
"measure": "CLABSI Upper Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-73.1655062620107",
"latitude": "41.18883079448168",
"human_address": "{\"address\":\"267 GRANT STREET\",\"city\":\"BRIDGEPORT\",\"state\":\"CT\",\"zip\":\"06610\"}"
},
"provider_id": "070010",
"state": "CT",
"score": "1.115",
"address_1": "267 GRANT STREET",
"city": "BRIDGEPORT",
"county_name": "FAIRFIELD"
},
{
"hospital_name": "TEMPLE COMMUNITY HOSPITAL",
"phone_number": {
"phone_number": "2133827252"
},
"zip_code": "90004",
"measure": "CAUTI Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-118.28370508789538",
"latitude": "34.07531422121639",
"human_address": "{\"address\":\"235 N HOOVER ST\",\"city\":\"LOS ANGELES\",\"state\":\"CA\",\"zip\":\"90004\"}"
},
"provider_id": "050111",
"state": "CA",
"score": "0.286",
"address_1": "235 N HOOVER ST",
"city": "LOS ANGELES",
"footnote": "No data are available from the hospital for this measure",
"county_name": "LOS ANGELES"
},
{
"hospital_name": "WHEELING HOSPITAL",
"phone_number": {
"phone_number": "3042433000"
},
"zip_code": "26003",
"measure": "CLABSI Upper Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-80.69576055746816",
"latitude": "40.06654471845867",
"human_address": "{\"address\":\"1 MEDICAL PARK\",\"city\":\"WHEELING\",\"state\":\"WV\",\"zip\":\"26003\"}"
},
"provider_id": "510050",
"state": "WV",
"score": "0.548",
"address_1": "1 MEDICAL PARK",
"city": "WHEELING",
"footnote": "The lower limit of the confidence interval cannot be calculated if the number of observed infections equals zero",
"county_name": "OHIO"
},
{
"hospital_name": "ST ELIZABETH'S MEDICAL CENTER",
"phone_number": {
"phone_number": "6177893000"
},
"zip_code": "02135",
"measure": "SSI: Colon Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-71.14822103232248",
"latitude": "42.349656455743144",
"human_address": "{\"address\":\"736 CAMBRIDGE STREET\",\"city\":\"BRIGHTON\",\"state\":\"MA\",\"zip\":\"02135\"}"
},
"provider_id": "220036",
"state": "MA",
"score": "1.319",
"address_1": "736 CAMBRIDGE STREET",
"city": "BRIGHTON",
"footnote": "The lower limit of the confidence interval cannot be calculated if the number of observed infections equals zero",
"county_name": "SUFFOLK"
},
{
"hospital_name": "PARMA COMMUNITY GENERAL HOSPITAL",
"phone_number": {
"phone_number": "4407433000"
},
"zip_code": "44129",
"measure": "SSI: Colon Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-81.7325598510555",
"latitude": "41.38283630927617",
"human_address": "{\"address\":\"7007 POWERS BOULEVARD\",\"city\":\"PARMA\",\"state\":\"OH\",\"zip\":\"44129\"}"
},
"provider_id": "360041",
"state": "OH",
"score": "1.557",
"address_1": "7007 POWERS BOULEVARD",
"city": "PARMA",
"county_name": "CUYAHOGA"
},
{
"hospital_name": "ELLIS HOSPITAL",
"phone_number": {
"phone_number": "5182434196"
},
"zip_code": "12308",
"measure": "SSI: Colon Upper Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-73.91833275202725",
"latitude": "42.81971009514962",
"human_address": "{\"address\":\"1101 NOTT STREET\",\"city\":\"SCHENECTADY\",\"state\":\"NY\",\"zip\":\"12308\"}"
},
"provider_id": "330153",
"state": "NY",
"score": "3.016",
"address_1": "1101 NOTT STREET",
"city": "SCHENECTADY",
"county_name": "SCHENECTADY"
},
{
"hospital_name": "YAMPA VALLEY MEDICAL CENTER",
"phone_number": {
"phone_number": "9708791322"
},
"zip_code": "80487",
"measure": "CAUTI Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-106.81497500416305",
"latitude": "40.46218236144114",
"human_address": "{\"address\":\"1024 CENTRAL PARK DR\",\"city\":\"STEAMBOAT SPRINGS\",\"state\":\"CO\",\"zip\":\"80487\"}"
},
"provider_id": "060049",
"state": "CO",
"score": "0",
"address_1": "1024 CENTRAL PARK DR",
"city": "STEAMBOAT SPRINGS",
"footnote": "No data are available from the hospital for this measure",
"county_name": "ROUTT"
},
{
"hospital_name": "ST JOHNS MEDICAL CENTER",
"phone_number": {
"phone_number": "3077333636"
},
"zip_code": "83001",
"measure": "SSI: Abdominal Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-110.74936868961814",
"latitude": "43.47977370031",
"human_address": "{\"address\":\"625 EAST BROADWAY\",\"city\":\"JACKSON\",\"state\":\"WY\",\"zip\":\"83001\"}"
},
"provider_id": "530015",
"state": "WY",
"score": "0",
"address_1": "625 EAST BROADWAY",
"city": "JACKSON",
"footnote": "No data are available from the hospital for this measure",
"county_name": "TETON"
},
{
"hospital_name": "COMMUNITY HOSPITALS AND WELLNESS CENTERS",
"phone_number": {
"phone_number": "4196361131"
},
"zip_code": "43506",
"measure": "SSI: Colon Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-84.55647598915897",
"latitude": "41.47457614948502",
"human_address": "{\"address\":\"433 WEST HIGH STREET\",\"city\":\"BRYAN\",\"state\":\"OH\",\"zip\":\"43506\"}"
},
"provider_id": "360121",
"state": "OH",
"score": "0.333",
"address_1": "433 WEST HIGH STREET",
"city": "BRYAN",
"footnote": "No data are available from the hospital for this measure",
"county_name": "WILLIAMS"
},
{
"hospital_name": "ELIZA COFFEE MEMORIAL HOSPITAL",
"phone_number": {
"phone_number": "2567688400"
},
"zip_code": "35631",
"measure": "CLABSI Upper Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-87.68506512401461",
"latitude": "34.795084785846846",
"human_address": "{\"address\":\"205 MARENGO STREET\",\"city\":\"FLORENCE\",\"state\":\"AL\",\"zip\":\"35631\"}"
},
"provider_id": "010006",
"state": "AL",
"score": "1.024",
"address_1": "205 MARENGO STREET",
"city": "FLORENCE",
"county_name": "LAUDERDALE"
},
{
"hospital_name": "MERCY MEDICAL CENTER-DUBUQUE",
"phone_number": {
"phone_number": "5635898000"
},
"zip_code": "52001",
"measure": "SSI: Colon Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-90.6728305243655",
"latitude": "42.4918898718969",
"human_address": "{\"address\":\"250 MERCY DRIVE\",\"city\":\"DUBUQUE\",\"state\":\"IA\",\"zip\":\"52001\"}"
},
"provider_id": "160069",
"state": "IA",
"score": "1.000",
"address_1": "250 MERCY DRIVE",
"city": "DUBUQUE",
"county_name": "DUBUQUE"
},
{
"hospital_name": "MEDICAL CENTER OF LEWISVILLE",
"phone_number": {
"phone_number": "9724201000"
},
"zip_code": "75057",
"measure": "CAUTI Urinary Catheter Days",
"location": {
"needs_recoding": false,
"longitude": "-97.00427098652938",
"latitude": "33.046255995969545",
"human_address": "{\"address\":\"500 WEST MAIN STREET\",\"city\":\"LEWISVILLE\",\"state\":\"TX\",\"zip\":\"75057\"}"
},
"provider_id": "450669",
"state": "TX",
"score": "433",
"address_1": "500 WEST MAIN STREET",
"city": "LEWISVILLE",
"footnote": "No data are available from the hospital for this measure",
"county_name": "DENTON"
},
{
"hospital_name": "JORDAN HOSPITAL INC",
"phone_number": {
"phone_number": "5087462000"
},
"zip_code": "02360",
"measure": "CLABSI Lower Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-70.64544807723632",
"latitude": "41.944696740301595",
"human_address": "{\"address\":\"275 SANDWICH STREET\",\"city\":\"PLYMOUTH\",\"state\":\"MA\",\"zip\":\"02360\"}"
},
"provider_id": "220060",
"state": "MA",
"score": "0.372",
"address_1": "275 SANDWICH STREET",
"city": "PLYMOUTH",
"county_name": "PLYMOUTH"
},
{
"hospital_name": "DEKALB MEDICAL CENTER",
"phone_number": {
"phone_number": "4045011000"
},
"zip_code": "30033",
"measure": "SSI: Colon Lower Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-84.28362168546937",
"latitude": "33.79197382266511",
"human_address": "{\"address\":\"2701 N DECATUR ROAD\",\"city\":\"DECATUR\",\"state\":\"GA\",\"zip\":\"30033\"}"
},
"provider_id": "110076",
"state": "GA",
"score": "0.025",
"address_1": "2701 N DECATUR ROAD",
"city": "DECATUR",
"county_name": "DEKALB"
},
{
"hospital_name": "MEMORIAL HOSPITAL",
"phone_number": {
"phone_number": "6182337750"
},
"zip_code": "62226",
"measure": "SSI: Colon Upper Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-90.02053495630554",
"latitude": "38.548792941663976",
"human_address": "{\"address\":\"4500 MEMORIAL DRIVE\",\"city\":\"BELLEVILLE\",\"state\":\"IL\",\"zip\":\"62226\"}"
},
"provider_id": "140185",
"state": "IL",
"score": "2.223",
"address_1": "4500 MEMORIAL DRIVE",
"city": "BELLEVILLE",
"county_name": "SAINT CLAIR"
},
{
"hospital_name": "ARNOT OGDEN MEDICAL CENTER",
"phone_number": {
"phone_number": "6077374100"
},
"zip_code": "14905",
"measure": "SSI: Colon Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-76.8267761676646",
"latitude": "42.099263217477414",
"human_address": "{\"address\":\"600 ROE AVENUE\",\"city\":\"ELMIRA\",\"state\":\"NY\",\"zip\":\"14905\"}"
},
"provider_id": "330090",
"state": "NY",
"score": "1.042",
"address_1": "600 ROE AVENUE",
"city": "ELMIRA",
"footnote": "The lower limit of the confidence interval cannot be calculated if the number of observed infections equals zero",
"county_name": "CHEMUNG"
},
{
"hospital_name": "WOODHULL MEDICAL AND MENTAL HEALTH CENTER",
"phone_number": {
"phone_number": "7189638100"
},
"zip_code": "11206",
"measure": "CAUTI Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-73.94129244343526",
"latitude": "40.70033182802007",
"human_address": "{\"address\":\"760 BROADWAY\",\"city\":\"BROOKLYN\",\"state\":\"NY\",\"zip\":\"11206\"}"
},
"provider_id": "330396",
"state": "NY",
"score": "2.974",
"address_1": "760 BROADWAY",
"city": "BROOKLYN",
"county_name": "KINGS"
},
{
"hospital_name": "PROVIDENCE HOSPITAL",
"phone_number": {
"phone_number": "2516331000"
},
"zip_code": "36608",
"measure": "CAUTI Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-88.19925776394254",
"latitude": "30.682061972407073",
"human_address": "{\"address\":\"6801 AIRPORT BOULEVARD\",\"city\":\"MOBILE\",\"state\":\"AL\",\"zip\":\"36608\"}"
},
"provider_id": "010090",
"state": "AL",
"score": "13.598",
"address_1": "6801 AIRPORT BOULEVARD",
"city": "MOBILE",
"county_name": "MOBILE"
},
{
"hospital_name": "PUTNAM COMMUNITY MEDICAL CENTER",
"phone_number": {
"phone_number": "3863268500"
},
"zip_code": "32177",
"measure": "CAUTI Upper Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-81.69350229532301",
"latitude": "29.6430235862519",
"human_address": "{\"address\":\"611 ZEAGLER DR\",\"city\":\"PALATKA\",\"state\":\"FL\",\"zip\":\"32177\"}"
},
"provider_id": "100232",
"state": "FL",
"score": "2.982",
"address_1": "611 ZEAGLER DR",
"city": "PALATKA",
"footnote": "The lower limit of the confidence interval cannot be calculated if the number of observed infections equals zero",
"county_name": "PUTNAM"
},
{
"hospital_name": "ST VINCENT HEART CENTER OF INDIANA LLC",
"phone_number": {
"phone_number": "3175835000"
},
"zip_code": "46290",
"measure": "CAUTI Urinary Catheter Days",
"location": {
"needs_recoding": false,
"longitude": "-86.15795268605524",
"latitude": "39.939262574284385",
"human_address": "{\"address\":\"10580 N MERIDIAN ST\",\"city\":\"INDIANAPOLIS\",\"state\":\"IN\",\"zip\":\"46290\"}"
},
"provider_id": "150153",
"state": "IN",
"score": "3772",
"address_1": "10580 N MERIDIAN ST",
"city": "INDIANAPOLIS",
"county_name": "HAMILTON"
},
{
"hospital_name": "MEMORIAL HOSPITAL, THE",
"phone_number": {
"phone_number": "9708249411"
},
"zip_code": "81625",
"measure": "CLABSI Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-107.56383999961616",
"latitude": "40.52787999976232",
"human_address": "{\"address\":\"750 HOSPITAL LOOP\",\"city\":\"CRAIG\",\"state\":\"CO\",\"zip\":\"81625\"}"
},
"provider_id": "061314",
"state": "CO",
"score": "0",
"address_1": "750 HOSPITAL LOOP",
"city": "CRAIG",
"footnote": "No data are available from the hospital for this measure",
"county_name": "MOFFAT"
},
{
"hospital_name": "ADVOCATE CONDELL MEDICAL CENTER",
"phone_number": {
"phone_number": "8479905200"
},
"zip_code": "60048",
"measure": "CLABSI Upper Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-87.95510387008659",
"latitude": "42.29146632157938",
"human_address": "{\"address\":\"801 S MILWAUKEE AVE\",\"city\":\"LIBERTYVILLE\",\"state\":\"IL\",\"zip\":\"60048\"}"
},
"provider_id": "140202",
"state": "IL",
"score": "1.382",
"address_1": "801 S MILWAUKEE AVE",
"city": "LIBERTYVILLE",
"county_name": "LAKE"
},
{
"hospital_name": "RENOWN SOUTH MEADOWS MEDICAL CENTER",
"phone_number": {
"phone_number": "7759827056"
},
"zip_code": "89521",
"measure": "SSI: Colon Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-119.75842234476181",
"latitude": "39.43581310906194",
"human_address": "{\"address\":\"10101 DOUBLE R BLVD\",\"city\":\"RENO\",\"state\":\"NV\",\"zip\":\"89521\"}"
},
"provider_id": "290049",
"state": "NV",
"score": "0.237",
"address_1": "10101 DOUBLE R BLVD",
"city": "RENO",
"footnote": "No data are available from the hospital for this measure",
"county_name": "CARSON CITY"
},
{
"hospital_name": "EASTERN NEW MEXICO MEDICAL CENTER",
"phone_number": {
"phone_number": "5756248722"
},
"zip_code": "88201",
"measure": "SSI: Colon Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-104.52846673110838",
"latitude": "33.42332373641443",
"human_address": "{\"address\":\"405 W COUNTRY CLUB ROAD\",\"city\":\"ROSWELL\",\"state\":\"NM\",\"zip\":\"88201\"}"
},
"provider_id": "320006",
"state": "NM",
"score": "0",
"address_1": "405 W COUNTRY CLUB ROAD",
"city": "ROSWELL",
"footnote": "No data are available from the hospital for this measure",
"county_name": "CHAVES"
},
{
"hospital_name": "JOHN C LINCOLN NORTH MOUNTAIN HOSPITAL",
"phone_number": {
"phone_number": "6028706060"
},
"zip_code": "85020",
"measure": "CAUTI Urinary Catheter Days",
"location": {
"needs_recoding": false,
"longitude": "-112.07019925525879",
"latitude": "33.567754854320015",
"human_address": "{\"address\":\"250 EAST DUNLAP AVENUE\",\"city\":\"PHOENIX\",\"state\":\"AZ\",\"zip\":\"85020\"}"
},
"provider_id": "030014",
"state": "AZ",
"score": "4557",
"address_1": "250 EAST DUNLAP AVENUE",
"city": "PHOENIX",
"county_name": "MARICOPA"
},
{
"hospital_name": "JACKSON PURCHASE MEDICAL CENTER",
"phone_number": {
"phone_number": "2702514500"
},
"zip_code": "42066",
"measure": "CAUTI Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-88.65215938177676",
"latitude": "36.75786592953415",
"human_address": "{\"address\":\"1099 MEDICAL CENTER CIRCLE\",\"city\":\"MAYFIELD\",\"state\":\"KY\",\"zip\":\"42066\"}"
},
"provider_id": "180116",
"state": "KY",
"score": "1",
"address_1": "1099 MEDICAL CENTER CIRCLE",
"city": "MAYFIELD",
"footnote": "No data are available from the hospital for this measure",
"county_name": "GRAVES"
},
{
"hospital_name": "SOUTHEAST MISSOURI HOSPITAL",
"phone_number": {
"phone_number": "5733344822"
},
"zip_code": "63701",
"measure": "SSI: Colon Lower Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-89.54216443485319",
"latitude": "37.3114346114495",
"human_address": "{\"address\":\"1701 LACEY ST\",\"city\":\"CAPE GIRARDEAU\",\"state\":\"MO\",\"zip\":\"63701\"}"
},
"provider_id": "260110",
"state": "MO",
"score": "0.177",
"address_1": "1701 LACEY ST",
"city": "CAPE GIRARDEAU",
"county_name": "CAPE GIRARDEAU"
},
{
"hospital_name": "WASHINGTON REGIONAL MED CTR AT NORTH HILLS",
"phone_number": {
"phone_number": "4794635113"
},
"zip_code": "72703",
"measure": "SSI: Colon, Number of Procedures",
"location": {
"needs_recoding": false,
"longitude": "-94.15791676379484",
"latitude": "36.110848695554296",
"human_address": "{\"address\":\"3215 N NORTH HILLS BLVD\",\"city\":\"FAYETTEVILLE\",\"state\":\"AR\",\"zip\":\"72703\"}"
},
"provider_id": "040004",
"state": "AR",
"score": "88",
"address_1": "3215 N NORTH HILLS BLVD",
"city": "FAYETTEVILLE",
"county_name": "WASHINGTON"
},
{
"hospital_name": "COOPER GREEN MERCY HOSPITAL",
"phone_number": {
"phone_number": "2059303200"
},
"zip_code": "35233",
"measure": "SSI: Abdominal Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-86.80752399459834",
"latitude": "33.50369614617301",
"human_address": "{\"address\":\"1515 6TH AVENUE SOUTH\",\"city\":\"BIRMINGHAM\",\"state\":\"AL\",\"zip\":\"35233\"}"
},
"provider_id": "010137",
"state": "AL",
"score": "0",
"address_1": "1515 6TH AVENUE SOUTH",
"city": "BIRMINGHAM",
"footnote": "No data are available from the hospital for this measure",
"county_name": "JEFFERSON"
},
{
"hospital_name": "BRANDYWINE HOSPITAL",
"phone_number": {
"phone_number": "6103838000"
},
"zip_code": "19320",
"measure": "Central-Line-Associated Blood Stream Infections (CLABSI)",
"location": {
"needs_recoding": false,
"longitude": "-75.79026614889264",
"latitude": "40.010158341447685",
"human_address": "{\"address\":\"201 REECEVILLE ROAD\",\"city\":\"COATESVILLE\",\"state\":\"PA\",\"zip\":\"19320\"}"
},
"provider_id": "390076",
"state": "PA",
"score": "0.00",
"address_1": "201 REECEVILLE ROAD",
"city": "COATESVILLE",
"footnote": "The lower limit of the confidence interval cannot be calculated if the number of observed infections equals zero",
"county_name": "CHESTER"
},
{
"hospital_name": "BROWARD HEALTH MEDICAL CENTER",
"phone_number": {
"phone_number": "9543554400"
},
"zip_code": "33316",
"measure": "SSI: Abdominal Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-80.142063876137",
"latitude": "26.100845923007398",
"human_address": "{\"address\":\"1600 S ANDREWS AVE\",\"city\":\"FORT LAUDERDALE\",\"state\":\"FL\",\"zip\":\"33316\"}"
},
"provider_id": "100039",
"state": "FL",
"score": "0.230",
"address_1": "1600 S ANDREWS AVE",
"city": "FORT LAUDERDALE",
"footnote": "No data are available from the hospital for this measure",
"county_name": "BROWARD"
},
{
"hospital_name": "BRANDON REGIONAL HOSPITAL",
"phone_number": {
"phone_number": "8136815551"
},
"zip_code": "33511",
"measure": "SSI: Colon Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-82.28825992618027",
"latitude": "27.93398797465136",
"human_address": "{\"address\":\"119 OAKFIELD DR\",\"city\":\"BRANDON\",\"state\":\"FL\",\"zip\":\"33511\"}"
},
"provider_id": "100243",
"state": "FL",
"score": "3.765",
"address_1": "119 OAKFIELD DR",
"city": "BRANDON",
"footnote": "The lower limit of the confidence interval cannot be calculated if the number of observed infections equals zero",
"county_name": "HILLSBOROUGH"
},
{
"hospital_name": "SOUTHWEST MEDICAL CENTER",
"phone_number": {
"phone_number": "6206296291"
},
"zip_code": "67901",
"measure": "CAUTI Urinary Catheter Days",
"location": {
"needs_recoding": false,
"longitude": "-100.92590223163175",
"latitude": "37.05426534740968",
"human_address": "{\"address\":\"315 WEST 15TH STREET\",\"city\":\"LIBERAL\",\"state\":\"KS\",\"zip\":\"67901\"}"
},
"provider_id": "170068",
"state": "KS",
"score": "166",
"address_1": "315 WEST 15TH STREET",
"city": "LIBERAL",
"footnote": "No data are available from the hospital for this measure",
"county_name": "SEWARD"
},
{
"hospital_name": "CENTRO CARDIOVASCULAR",
"phone_number": {
"phone_number": "7877548500"
},
"zip_code": "00936",
"measure": "CLABSI Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-66.06063000017423",
"latitude": "18.416839999766353",
"human_address": "{\"address\":\"AVENIDA AMERICO MIRANDA, ENTRADA PRINCIPAL CM\",\"city\":\"RIO PIEDRAS\",\"state\":\"PR\",\"zip\":\"00936\"}"
},
"provider_id": "400124",
"state": "PR",
"score": "12.774",
"address_1": "AVENIDA AMERICO MIRANDA, ENTRADA PRINCIPAL CM",
"city": "RIO PIEDRAS",
"county_name": "SAN JUAN"
},
{
"hospital_name": "HORIZON MEDICAL CENTER",
"phone_number": {
"phone_number": "6154460446"
},
"zip_code": "37055",
"measure": "SSI: Abdominal Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-87.37489703237154",
"latitude": "36.07216078087565",
"human_address": "{\"address\":\"111 HIGHWAY 70 EAST\",\"city\":\"DICKSON\",\"state\":\"TN\",\"zip\":\"37055\"}"
},
"provider_id": "440046",
"state": "TN",
"score": "0",
"address_1": "111 HIGHWAY 70 EAST",
"city": "DICKSON",
"footnote": "No data are available from the hospital for this measure",
"county_name": "DICKSON"
},
{
"hospital_name": "ATLANTA MEDICAL CENTER-SOUTH CAMPUS",
"phone_number": {
"phone_number": "4044661100"
},
"zip_code": "30344",
"measure": "SSI: Colon Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-84.42689267795714",
"latitude": "33.68140217916266",
"human_address": "{\"address\":\"1170 CLEVELAND AVENUE\",\"city\":\"EAST POINT\",\"state\":\"GA\",\"zip\":\"30344\"}"
},
"provider_id": "110219",
"state": "GA",
"score": "0",
"address_1": "1170 CLEVELAND AVENUE",
"city": "EAST POINT",
"footnote": "No data are available from the hospital for this measure",
"county_name": "FULTON"
},
{
"hospital_name": "MEDICAL CENTER OF THE ROCKIES",
"phone_number": {
"phone_number": "9706242500"
},
"zip_code": "80538",
"measure": "SSI: Abdominal Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-105.00108148899244",
"latitude": "40.41555373457141",
"human_address": "{\"address\":\"2500 ROCKY MOUNTAIN AVENUE\",\"city\":\"LOVELAND\",\"state\":\"CO\",\"zip\":\"80538\"}"
},
"provider_id": "060119",
"state": "CO",
"score": "0.213",
"address_1": "2500 ROCKY MOUNTAIN AVENUE",
"city": "LOVELAND",
"footnote": "No data are available from the hospital for this measure",
"county_name": "LARIMER"
},
{
"hospital_name": "MISSOURI BAPTIST MEDICAL CENTER",
"phone_number": {
"phone_number": "3149965000"
},
"zip_code": "63131",
"measure": "SSI: Abdominal Upper Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-90.44365688887491",
"latitude": "38.635067168827796",
"human_address": "{\"address\":\"3015 N BALLAS RD\",\"city\":\"TOWN AND COUNTRY\",\"state\":\"MO\",\"zip\":\"63131\"}"
},
"provider_id": "260108",
"state": "MO",
"score": "1.946",
"address_1": "3015 N BALLAS RD",
"city": "TOWN AND COUNTRY",
"footnote": "The lower limit of the confidence interval cannot be calculated if the number of observed infections equals zero",
"county_name": "SAINT LOUIS"
},
{
"hospital_name": "JOHN F KENNEDY MEMORIAL HOSPITAL, INC",
"phone_number": {
"phone_number": "7603476191"
},
"zip_code": "92201",
"measure": "CAUTI Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-116.23394601495357",
"latitude": "33.706704275182915",
"human_address": "{\"address\":\"47-111 MONROE STREET\",\"city\":\"INDIO\",\"state\":\"CA\",\"zip\":\"92201\"}"
},
"provider_id": "050534",
"state": "CA",
"score": "0",
"address_1": "47-111 MONROE STREET",
"city": "INDIO",
"footnote": "The lower limit of the confidence interval cannot be calculated if the number of observed infections equals zero",
"county_name": "RIVERSIDE"
},
{
"hospital_name": "ALBERT EINSTEIN MEDICAL CENTER",
"phone_number": {
"phone_number": "2154566090"
},
"zip_code": "19141",
"measure": "CAUTI Urinary Catheter Days",
"location": {
"needs_recoding": false,
"longitude": "-75.14456815544996",
"latitude": "40.038258562254676",
"human_address": "{\"address\":\"5501 OLD YORK ROAD\",\"city\":\"PHILADELPHIA\",\"state\":\"PA\",\"zip\":\"19141\"}"
},
"provider_id": "390142",
"state": "PA",
"score": "5314",
"address_1": "5501 OLD YORK ROAD",
"city": "PHILADELPHIA",
"county_name": "PHILADELPHIA"
},
{
"hospital_name": "CHARLOTTE HUNGERFORD HOSPITAL",
"phone_number": {
"phone_number": "8604966666"
},
"zip_code": "06790",
"measure": "Catheter-Associated Urinary Tract Infections (CAUTI)",
"location": {
"needs_recoding": false,
"longitude": "-73.13296621965593",
"latitude": "41.790865563901676",
"human_address": "{\"address\":\"540 LITCHFIELD ST\",\"city\":\"TORRINGTON\",\"state\":\"CT\",\"zip\":\"06790\"}"
},
"provider_id": "070011",
"state": "CT",
"score": "4.23",
"address_1": "540 LITCHFIELD ST",
"city": "TORRINGTON",
"county_name": "LITCHFIELD"
},
{
"hospital_name": "CHENANGO MEMORIAL HOSPITAL, INC",
"phone_number": {
"phone_number": "6073354111"
},
"zip_code": "13815",
"measure": "CAUTI Urinary Catheter Days",
"location": {
"needs_recoding": false,
"longitude": "-75.52464780144112",
"latitude": "42.54115408979425",
"human_address": "{\"address\":\"179 NORTH BROAD STREET\",\"city\":\"NORWICH\",\"state\":\"NY\",\"zip\":\"13815\"}"
},
"provider_id": "330033",
"state": "NY",
"score": "337",
"address_1": "179 NORTH BROAD STREET",
"city": "NORWICH",
"footnote": "No data are available from the hospital for this measure",
"county_name": "CHENANGO"
},
{
"hospital_name": "MANATI MEDICAL CENTER DR OTERO LOPEZ",
"phone_number": {
"phone_number": "7876213700"
},
"zip_code": "00674",
"measure": "CAUTI Lower Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-66.47770906650199",
"latitude": "18.437480013795817",
"human_address": "{\"address\":\"CALLE HERNANDEZ CARRION URB ATENAS\",\"city\":\"MANATI\",\"state\":\"PR\",\"zip\":\"00674\"}"
},
"provider_id": "400114",
"state": "PR",
"score": "0.009",
"address_1": "CALLE HERNANDEZ CARRION URB ATENAS",
"city": "MANATI",
"county_name": "MANATI"
},
{
"hospital_name": "ADMIN DE SERVICIOS MEDICOS PUERTO RIC",
"phone_number": {
"phone_number": "7877773535"
},
"zip_code": "00935",
"measure": "CAUTI Lower Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-66.06063000017423",
"latitude": "18.416839999766353",
"human_address": "{\"address\":\"BO MONACILLO CARR NUM 22\",\"city\":\"SAN JUAN\",\"state\":\"PR\",\"zip\":\"00935\"}"
},
"provider_id": "400127",
"state": "PR",
"score": "0.410",
"address_1": "BO MONACILLO CARR NUM 22",
"city": "SAN JUAN",
"county_name": "SAN JUAN"
},
{
"hospital_name": "CHRISTUS ST JOHN HOSPITAL",
"phone_number": {
"phone_number": "2813335503"
},
"zip_code": "77058",
"measure": "CAUTI Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-95.08482999295376",
"latitude": "29.54885557656388",
"human_address": "{\"address\":\"18300 ST JOHN DRIVE\",\"city\":\"NASSAU BAY\",\"state\":\"TX\",\"zip\":\"77058\"}"
},
"provider_id": "450709",
"state": "TX",
"score": "1.265",
"address_1": "18300 ST JOHN DRIVE",
"city": "NASSAU BAY",
"footnote": "The lower limit of the confidence interval cannot be calculated if the number of observed infections equals zero",
"county_name": "HARRIS"
},
{
"hospital_name": "LAWRENCE GENERAL HOSPITAL",
"phone_number": {
"phone_number": "9786834000"
},
"zip_code": "01842",
"measure": "Catheter-Associated Urinary Tract Infections (CAUTI)",
"location": {
"needs_recoding": false,
"longitude": "-71.14851991289957",
"latitude": "42.709147108734996",
"human_address": "{\"address\":\"ONE GENERAL STREET\",\"city\":\"LAWRENCE\",\"state\":\"MA\",\"zip\":\"01842\"}"
},
"provider_id": "220010",
"state": "MA",
"score": "2.41",
"address_1": "ONE GENERAL STREET",
"city": "LAWRENCE",
"county_name": "ESSEX"
},
{
"hospital_name": "UNIVERSITY HEALTH SYSTEM",
"phone_number": {
"phone_number": "2103584000"
},
"zip_code": "78229",
"measure": "CLABSI Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-98.57946050050919",
"latitude": "29.510076810660507",
"human_address": "{\"address\":\"4502 MEDICAL DR\",\"city\":\"SAN ANTONIO\",\"state\":\"TX\",\"zip\":\"78229\"}"
},
"provider_id": "450213",
"state": "TX",
"score": "43.750",
"address_1": "4502 MEDICAL DR",
"city": "SAN ANTONIO",
"county_name": "BEXAR"
},
{
"hospital_name": "CENTURA HEALTH-LITTLETON ADVENTIST HOSPITAL",
"phone_number": {
"phone_number": "3037305888"
},
"zip_code": "80122",
"measure": "CAUTI Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-104.98842498299388",
"latitude": "39.57700666766203",
"human_address": "{\"address\":\"7700 S BROADWAY\",\"city\":\"LITTLETON\",\"state\":\"CO\",\"zip\":\"80122\"}"
},
"provider_id": "060113",
"state": "CO",
"score": "0",
"address_1": "7700 S BROADWAY",
"city": "LITTLETON",
"footnote": "The lower limit of the confidence interval cannot be calculated if the number of observed infections equals zero",
"county_name": "ARAPAHOE"
},
{
"hospital_name": "COMMUNITY MEMORIAL HOSPITAL SAN BUENAVENTURA",
"phone_number": {
"phone_number": "8056525011"
},
"zip_code": "93003",
"measure": "SSI: Colon Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-119.25748198800113",
"latitude": "34.27521552188915",
"human_address": "{\"address\":\"147 N BRENT ST\",\"city\":\"VENTURA\",\"state\":\"CA\",\"zip\":\"93003\"}"
},
"provider_id": "050394",
"state": "CA",
"score": "1.794",
"address_1": "147 N BRENT ST",
"city": "VENTURA",
"county_name": "VENTURA"
},
{
"hospital_name": "KAISER FOUNDATION HOSPITAL - LOS ANGELES",
"phone_number": {
"phone_number": "3237834011"
},
"zip_code": "90027",
"measure": "CLABSI Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-118.29595385393446",
"latitude": "34.09817498720116",
"human_address": "{\"address\":\"4867 SUNSET BLVD\",\"city\":\"LOS ANGELES\",\"state\":\"CA\",\"zip\":\"90027\"}"
},
"provider_id": "050138",
"state": "CA",
"score": "29.416",
"address_1": "4867 SUNSET BLVD",
"city": "LOS ANGELES",
"county_name": "LOS ANGELES"
},
{
"hospital_name": "PERRY COUNTY MEMORIAL HOSPITAL",
"phone_number": {
"phone_number": "8125477011"
},
"zip_code": "47586",
"measure": "CAUTI Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-86.75811944829388",
"latitude": "37.928142657504786",
"human_address": "{\"address\":\"ONE HOSPITAL RD\",\"city\":\"TELL CITY\",\"state\":\"IN\",\"zip\":\"47586\"}"
},
"provider_id": "151322",
"state": "IN",
"score": "0.049",
"address_1": "ONE HOSPITAL RD",
"city": "TELL CITY",
"footnote": "No data are available from the hospital for this measure",
"county_name": "PERRY"
},
{
"hospital_name": "ESSENTIA HEALTH-FARGO",
"phone_number": {
"phone_number": "7013648000"
},
"zip_code": "58104",
"measure": "SSI: Colon, Number of Procedures",
"location": {
"needs_recoding": false,
"longitude": "-96.86195624315533",
"latitude": "46.83269183395299",
"human_address": "{\"address\":\"3000 32ND AVE SOUTH\",\"city\":\"FARGO\",\"state\":\"ND\",\"zip\":\"58104\"}"
},
"provider_id": "350070",
"state": "ND",
"score": "34",
"address_1": "3000 32ND AVE SOUTH",
"city": "FARGO",
"county_name": "CASS"
},
{
"hospital_name": "PETERSON REGIONAL MEDICAL CENTER",
"phone_number": {
"phone_number": "8308964200"
},
"zip_code": "78028",
"measure": "Catheter-Associated Urinary Tract Infections (CAUTI)",
"location": {
"needs_recoding": false,
"longitude": "-99.15184295587083",
"latitude": "30.044909745549962",
"human_address": "{\"address\":\"551 HILL COUNTRY DRIVE\",\"city\":\"KERRVILLE\",\"state\":\"TX\",\"zip\":\"78028\"}"
},
"provider_id": "450007",
"state": "TX",
"score": "0.93",
"address_1": "551 HILL COUNTRY DRIVE",
"city": "KERRVILLE",
"county_name": "KERR"
},
{
"hospital_name": "LABETTE HEALTH",
"phone_number": {
"phone_number": "6204214880"
},
"zip_code": "67357",
"measure": "CLABSI Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-95.26661378339392",
"latitude": "37.32193540394718",
"human_address": "{\"address\":\"1902 SOUTH US HWY 59\",\"city\":\"PARSONS\",\"state\":\"KS\",\"zip\":\"67357\"}"
},
"provider_id": "170120",
"state": "KS",
"score": "0.161",
"address_1": "1902 SOUTH US HWY 59",
"city": "PARSONS",
"footnote": "No data are available from the hospital for this measure",
"county_name": "LABETTE"
},
{
"hospital_name": "LAKEVIEW MED CENTER",
"phone_number": {
"phone_number": "7152341515"
},
"zip_code": "54868",
"measure": "SSI: Colon Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-91.76036020656221",
"latitude": "45.507864579709974",
"human_address": "{\"address\":\"1700 WEST STOUT STREET\",\"city\":\"RICE LAKE\",\"state\":\"WI\",\"zip\":\"54868\"}"
},
"provider_id": "520011",
"state": "WI",
"score": "2",
"address_1": "1700 WEST STOUT STREET",
"city": "RICE LAKE",
"footnote": "No data are available from the hospital for this measure",
"county_name": "BARRON"
},
{
"hospital_name": "PALOS COMMUNITY HOSPITAL",
"phone_number": {
"phone_number": "7089234000"
},
"zip_code": "60463",
"measure": "SSI: Abdominal Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-87.8158381764325",
"latitude": "41.66830272151739",
"human_address": "{\"address\":\"12251 SOUTH 80TH AVENUE\",\"city\":\"PALOS HEIGHTS\",\"state\":\"IL\",\"zip\":\"60463\"}"
},
"provider_id": "140062",
"state": "IL",
"score": "0.597",
"address_1": "12251 SOUTH 80TH AVENUE",
"city": "PALOS HEIGHTS",
"footnote": "No data are available from the hospital for this measure",
"county_name": "COOK"
},
{
"hospital_name": "SSM ST JOSEPH HOSPITAL WEST",
"phone_number": {
"phone_number": "6366255200"
},
"zip_code": "63367",
"measure": "Surgical Site Infection from colon surgery (SSI: Colon)",
"location": {
"needs_recoding": false,
"longitude": "-90.77482961520604",
"latitude": "38.80306266527888",
"human_address": "{\"address\":\"100 MEDICAL PLAZA\",\"city\":\"LAKE SAINT LOUIS\",\"state\":\"MO\",\"zip\":\"63367\"}"
},
"provider_id": "260200",
"state": "MO",
"score": "0.00",
"address_1": "100 MEDICAL PLAZA",
"city": "LAKE SAINT LOUIS",
"footnote": "The lower limit of the confidence interval cannot be calculated if the number of observed infections equals zero",
"county_name": "SAINT CHARLES"
},
{
"hospital_name": "FLOWER HOSPITAL",
"phone_number": {
"phone_number": "4198241444"
},
"zip_code": "43560",
"measure": "SSI: Abdominal Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-83.69433998313727",
"latitude": "41.70948704820845",
"human_address": "{\"address\":\"5200 HARROUN ROAD\",\"city\":\"SYLVANIA\",\"state\":\"OH\",\"zip\":\"43560\"}"
},
"provider_id": "360074",
"state": "OH",
"score": "0.919",
"address_1": "5200 HARROUN ROAD",
"city": "SYLVANIA",
"footnote": "No data are available from the hospital for this measure",
"county_name": "LUCAS"
},
{
"hospital_name": "ASHTABULA COUNTY MEDICAL CENTER",
"phone_number": {
"phone_number": "4409972262"
},
"zip_code": "44004",
"measure": "CLABSI Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-80.79603286940335",
"latitude": "41.88040420842697",
"human_address": "{\"address\":\"2420 LAKE AVENUE\",\"city\":\"ASHTABULA\",\"state\":\"OH\",\"zip\":\"44004\"}"
},
"provider_id": "360125",
"state": "OH",
"score": "0",
"address_1": "2420 LAKE AVENUE",
"city": "ASHTABULA",
"footnote": "No data are available from the hospital for this measure",
"county_name": "ASHTABULA"
},
{
"hospital_name": "DETROIT RECEIVING HOSPITAL & UNIV HEALTH CENTER",
"phone_number": {
"phone_number": "3137453104"
},
"zip_code": "48201",
"measure": "CAUTI Upper Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-83.05358439491721",
"latitude": "42.35410971252637",
"human_address": "{\"address\":\"4201 ST ANTOINE ST - 3M\",\"city\":\"DETROIT\",\"state\":\"MI\",\"zip\":\"48201\"}"
},
"provider_id": "230273",
"state": "MI",
"score": "1.080",
"address_1": "4201 ST ANTOINE ST - 3M",
"city": "DETROIT",
"county_name": "WAYNE"
},
{
"hospital_name": "CULLMAN REGIONAL MEDICAL CENTER",
"phone_number": {
"phone_number": "2567372000"
},
"zip_code": "35058",
"measure": "SSI: Abdominal Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-86.80397776394244",
"latitude": "34.19861962511598",
"human_address": "{\"address\":\"1912 ALABAMA HIGHWAY 157\",\"city\":\"CULLMAN\",\"state\":\"AL\",\"zip\":\"35058\"}"
},
"provider_id": "010035",
"state": "AL",
"score": "1",
"address_1": "1912 ALABAMA HIGHWAY 157",
"city": "CULLMAN",
"footnote": "No data are available from the hospital for this measure",
"county_name": "CULLMAN"
},
{
"hospital_name": "MEDINA MEMORIAL HOSPITAL",
"phone_number": {
"phone_number": "5857988111"
},
"zip_code": "14103",
"measure": "SSI: Abdominal Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-78.3970913562456",
"latitude": "43.22364957783003",
"human_address": "{\"address\":\"200 OHIO STREET\",\"city\":\"MEDINA\",\"state\":\"NY\",\"zip\":\"14103\"}"
},
"provider_id": "330053",
"state": "NY",
"score": "0",
"address_1": "200 OHIO STREET",
"city": "MEDINA",
"footnote": "No data are available from the hospital for this measure",
"county_name": "ORLEANS"
},
{
"hospital_name": "BRANDON REGIONAL HOSPITAL",
"phone_number": {
"phone_number": "8136815551"
},
"zip_code": "33511",
"measure": "CLABSI Upper Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-82.28825992618027",
"latitude": "27.93398797465136",
"human_address": "{\"address\":\"119 OAKFIELD DR\",\"city\":\"BRANDON\",\"state\":\"FL\",\"zip\":\"33511\"}"
},
"provider_id": "100243",
"state": "FL",
"score": "1.570",
"address_1": "119 OAKFIELD DR",
"city": "BRANDON",
"county_name": "HILLSBOROUGH"
},
{
"hospital_name": "FORSYTH MEMORIAL HOSPITAL",
"phone_number": {
"phone_number": "3367185000"
},
"zip_code": "27103",
"measure": "Central-Line-Associated Blood Stream Infections (CLABSI)",
"location": {
"needs_recoding": false,
"longitude": "-80.29671129229541",
"latitude": "36.07265448896993",
"human_address": "{\"address\":\"3333 SILAS CREEK PARKWAY\",\"city\":\"WINSTON-SALEM\",\"state\":\"NC\",\"zip\":\"27103\"}"
},
"provider_id": "340014",
"state": "NC",
"score": "0.74",
"address_1": "3333 SILAS CREEK PARKWAY",
"city": "WINSTON-SALEM",
"county_name": "FORSYTH"
},
{
"hospital_name": "BAPTIST EASLEY HOSPITAL",
"phone_number": {
"phone_number": "8644427200"
},
"zip_code": "29640",
"measure": "SSI: Colon Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-82.6079334175463",
"latitude": "34.83905045884081",
"human_address": "{\"address\":\"200 FLEETWOOD DRIVE\",\"city\":\"EASLEY\",\"state\":\"SC\",\"zip\":\"29640\"}"
},
"provider_id": "420015",
"state": "SC",
"score": "0.551",
"address_1": "200 FLEETWOOD DRIVE",
"city": "EASLEY",
"footnote": "No data are available from the hospital for this measure",
"county_name": "PICKENS"
},
{
"hospital_name": "MERCY MEDICAL CENTER-DUBUQUE",
"phone_number": {
"phone_number": "5635898000"
},
"zip_code": "52001",
"measure": "CAUTI Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-90.6728305243655",
"latitude": "42.4918898718969",
"human_address": "{\"address\":\"250 MERCY DRIVE\",\"city\":\"DUBUQUE\",\"state\":\"IA\",\"zip\":\"52001\"}"
},
"provider_id": "160069",
"state": "IA",
"score": "0",
"address_1": "250 MERCY DRIVE",
"city": "DUBUQUE",
"footnote": "No data are available from the hospital for this measure",
"county_name": "DUBUQUE"
},
{
"hospital_name": "FRENCH HOSPITAL MEDICAL CENTER",
"phone_number": {
"phone_number": "8055435353"
},
"zip_code": "93401",
"measure": "CAUTI Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-120.6497682788767",
"latitude": "35.27806045508795",
"human_address": "{\"address\":\"1911 JOHNSON AVE\",\"city\":\"SAN LUIS OBISPO\",\"state\":\"CA\",\"zip\":\"93401\"}"
},
"provider_id": "050232",
"state": "CA",
"score": "0.733",
"address_1": "1911 JOHNSON AVE",
"city": "SAN LUIS OBISPO",
"footnote": "No data are available from the hospital for this measure",
"county_name": "SAN LUIS OBISPO"
},
{
"hospital_name": "CALDWELL MEMORIAL HOSPITAL",
"phone_number": {
"phone_number": "8287575100"
},
"zip_code": "28645",
"measure": "CAUTI Urinary Catheter Days",
"location": {
"needs_recoding": false,
"longitude": "-81.53619288595786",
"latitude": "35.9106596118321",
"human_address": "{\"address\":\"321 MULBERRY ST SW\",\"city\":\"LENOIR\",\"state\":\"NC\",\"zip\":\"28645\"}"
},
"provider_id": "340041",
"state": "NC",
"score": "1107",
"address_1": "321 MULBERRY ST SW",
"city": "LENOIR",
"county_name": "CALDWELL"
},
{
"hospital_name": "VICTOR VALLEY COMMUNITY HOSPITAL",
"phone_number": {
"phone_number": "7602458691"
},
"zip_code": "92392",
"measure": "CLABSI Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-117.29256227940385",
"latitude": "34.528176822290675",
"human_address": "{\"address\":\"15248 11TH ST\",\"city\":\"VICTORVILLE\",\"state\":\"CA\",\"zip\":\"92392\"}"
},
"provider_id": "050517",
"state": "CA",
"score": "0.516",
"address_1": "15248 11TH ST",
"city": "VICTORVILLE",
"footnote": "No data are available from the hospital for this measure",
"county_name": "SAN BERNARDINO"
},
{
"hospital_name": "OCALA REGIONAL MEDICAL CENTER",
"phone_number": {
"phone_number": "3524011000"
},
"zip_code": "34478",
"measure": "CLABSI Upper Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-82.13784831677987",
"latitude": "29.175439083557933",
"human_address": "{\"address\":\"1431 SW 1ST AVE\",\"city\":\"OCALA\",\"state\":\"FL\",\"zip\":\"34478\"}"
},
"provider_id": "100212",
"state": "FL",
"score": "0.649",
"address_1": "1431 SW 1ST AVE",
"city": "OCALA",
"footnote": "The lower limit of the confidence interval cannot be calculated if the number of observed infections equals zero",
"county_name": "MARION"
},
{
"hospital_name": "ALEGENT CREIGHTON HEALTH CREIGHTON UNIVERSITY MEDI",
"phone_number": {
"phone_number": "4024494040"
},
"zip_code": "68131",
"measure": "CLABSI Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-95.9564978698528",
"latitude": "41.26578055394248",
"human_address": "{\"address\":\"601 NORTH 30TH ST\",\"city\":\"OMAHA\",\"state\":\"NE\",\"zip\":\"68131\"}"
},
"provider_id": "280030",
"state": "NE",
"score": "2",
"address_1": "601 NORTH 30TH ST",
"city": "OMAHA",
"county_name": "DOUGLAS"
},
{
"hospital_name": "NEW YORK HOSPITAL MEDICAL CENTER OF QUEENS",
"phone_number": {
"phone_number": "7186701231"
},
"zip_code": "11355",
"measure": "CAUTI Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-73.82613425758342",
"latitude": "40.747222478627805",
"human_address": "{\"address\":\"56-45 MAIN STREET\",\"city\":\"FLUSHING\",\"state\":\"NY\",\"zip\":\"11355\"}"
},
"provider_id": "330055",
"state": "NY",
"score": "7",
"address_1": "56-45 MAIN STREET",
"city": "FLUSHING",
"county_name": "QUEENS"
},
{
"hospital_name": "BAYLOR REGIONAL MEDICAL CENTER AT PLANO",
"phone_number": {
"phone_number": "4698142000"
},
"zip_code": "75093",
"measure": "CLABSI Upper Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-96.79096079439967",
"latitude": "33.01433006392938",
"human_address": "{\"address\":\"4700 ALLIANCE BOULEVARD\",\"city\":\"PLANO\",\"state\":\"TX\",\"zip\":\"75093\"}"
},
"provider_id": "450890",
"state": "TX",
"score": "1.302",
"address_1": "4700 ALLIANCE BOULEVARD",
"city": "PLANO",
"county_name": "COLLIN"
},
{
"hospital_name": "PARKWAY MEDICAL CENTER",
"phone_number": {
"phone_number": "2563502211"
},
"zip_code": "35601",
"measure": "CAUTI Urinary Catheter Days",
"location": {
"needs_recoding": false,
"longitude": "-87.01654442064824",
"latitude": "34.57575095764065",
"human_address": "{\"address\":\"1874 BELTLINE RD SW\",\"city\":\"DECATUR\",\"state\":\"AL\",\"zip\":\"35601\"}"
},
"provider_id": "010054",
"state": "AL",
"score": "517",
"address_1": "1874 BELTLINE RD SW",
"city": "DECATUR",
"county_name": "MORGAN"
},
{
"hospital_name": "SCOTT & WHITE HOSPITAL BRENHAM",
"phone_number": {
"phone_number": "9798366173"
},
"zip_code": "77833",
"measure": "SSI: Abdominal Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-96.39907222691193",
"latitude": "30.145339905717435",
"human_address": "{\"address\":\"700 MEDICAL PARKWAY\",\"city\":\"BRENHAM\",\"state\":\"TX\",\"zip\":\"77833\"}"
},
"provider_id": "450187",
"state": "TX",
"score": "0",
"address_1": "700 MEDICAL PARKWAY",
"city": "BRENHAM",
"footnote": "No data are available from the hospital for this measure",
"county_name": "WASHINGTON"
},
{
"hospital_name": "MAIN LINE HOSPITAL PAOLI",
"phone_number": {
"phone_number": "6106481000"
},
"zip_code": "19301",
"measure": "SSI: Abdominal Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-75.49927792699458",
"latitude": "40.04204608901307",
"human_address": "{\"address\":\"255 WEST LANCASTER AVENUE\",\"city\":\"PAOLI\",\"state\":\"PA\",\"zip\":\"19301\"}"
},
"provider_id": "390153",
"state": "PA",
"score": "0.401",
"address_1": "255 WEST LANCASTER AVENUE",
"city": "PAOLI",
"footnote": "No data are available from the hospital for this measure",
"county_name": "CHESTER"
},
{
"hospital_name": "CLEAR LAKE REGIONAL MEDICAL CENTER",
"phone_number": {
"phone_number": "2813322511"
},
"zip_code": "77598",
"measure": "SSI: Abdominal Upper Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-95.12728698595703",
"latitude": "29.54037496982761",
"human_address": "{\"address\":\"500 MEDICAL CENTER BLVD\",\"city\":\"WEBSTER\",\"state\":\"TX\",\"zip\":\"77598\"}"
},
"provider_id": "450617",
"state": "TX",
"score": "3.207",
"address_1": "500 MEDICAL CENTER BLVD",
"city": "WEBSTER",
"county_name": "HARRIS"
},
{
"hospital_name": "INOVA FAIRFAX HOSPITAL",
"phone_number": {
"phone_number": "7037763332"
},
"zip_code": "22042",
"measure": "SSI: Colon Upper Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-77.22598521647086",
"latitude": "38.85803467811786",
"human_address": "{\"address\":\"3300 GALLOWS RD\",\"city\":\"FALLS CHURCH\",\"state\":\"VA\",\"zip\":\"22042\"}"
},
"provider_id": "490063",
"state": "VA",
"score": "0.909",
"address_1": "3300 GALLOWS RD",
"city": "FALLS CHURCH",
"county_name": "FAIRFAX"
},
{
"hospital_name": "SAINT MARYS HOSPITAL",
"phone_number": {
"phone_number": "2035746000"
},
"zip_code": "06706",
"measure": "Surgical Site Infection from abdominal hysterectomy (SSI: Hysterectomy)",
"location": {
"needs_recoding": false,
"longitude": "-73.03597381074692",
"latitude": "41.5526181838065",
"human_address": "{\"address\":\"56 FRANKLIN ST\",\"city\":\"WATERBURY\",\"state\":\"CT\",\"zip\":\"06706\"}"
},
"provider_id": "070016",
"state": "CT",
"score": "0.00",
"address_1": "56 FRANKLIN ST",
"city": "WATERBURY",
"footnote": "The lower limit of the confidence interval cannot be calculated if the number of observed infections equals zero",
"county_name": "NEW HAVEN"
},
{
"hospital_name": "STRAUB CLINIC AND HOSPITAL",
"phone_number": {
"phone_number": "8085224000"
},
"zip_code": "96813",
"measure": "CLABSI Upper Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-157.8506368177899",
"latitude": "21.30220746618727",
"human_address": "{\"address\":\"888 SO KING STREET\",\"city\":\"HONOLULU\",\"state\":\"HI\",\"zip\":\"96813\"}"
},
"provider_id": "120022",
"state": "HI",
"score": "0.898",
"address_1": "888 SO KING STREET",
"city": "HONOLULU",
"footnote": "The lower limit of the confidence interval cannot be calculated if the number of observed infections equals zero",
"county_name": "HONOLULU"
},
{
"hospital_name": "MEMORIAL MEDICAL CENTER",
"phone_number": {
"phone_number": "2095264500"
},
"zip_code": "95355",
"measure": "CAUTI Lower Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-120.97566370463966",
"latitude": "37.66878921301213",
"human_address": "{\"address\":\"1700 COFFEE RD\",\"city\":\"MODESTO\",\"state\":\"CA\",\"zip\":\"95355\"}"
},
"provider_id": "050557",
"state": "CA",
"score": "0.134",
"address_1": "1700 COFFEE RD",
"city": "MODESTO",
"county_name": "STANISLAUS"
},
{
"hospital_name": "FORT WALTON BEACH MEDICAL CENTER",
"phone_number": {
"phone_number": "8508621111"
},
"zip_code": "32547",
"measure": "CAUTI Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-86.63209324634278",
"latitude": "30.454616751593676",
"human_address": "{\"address\":\"1000 MAR-WALT DR\",\"city\":\"FORT WALTON BEACH\",\"state\":\"FL\",\"zip\":\"32547\"}"
},
"provider_id": "100223",
"state": "FL",
"score": "1",
"address_1": "1000 MAR-WALT DR",
"city": "FORT WALTON BEACH",
"county_name": "OKALOOSA"
},
{
"hospital_name": "MEDICAL CENTER HOSPITAL",
"phone_number": {
"phone_number": "4326404000"
},
"zip_code": "79761",
"measure": "CLABSI Upper Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-102.36411336929353",
"latitude": "31.84994185971351",
"human_address": "{\"address\":\"500 W 4TH STREET\",\"city\":\"ODESSA\",\"state\":\"TX\",\"zip\":\"79761\"}"
},
"provider_id": "450132",
"state": "TX",
"score": "1.339",
"address_1": "500 W 4TH STREET",
"city": "ODESSA",
"county_name": "ECTOR"
},
{
"hospital_name": "WELLMONT BRISTOL REGIONAL MEDICAL CENTER",
"phone_number": {
"phone_number": "4238441121"
},
"zip_code": "37620",
"measure": "CAUTI Upper Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-82.25361804161162",
"latitude": "36.58888332022872",
"human_address": "{\"address\":\"ONE MEDICAL PARK BLVD\",\"city\":\"BRISTOL\",\"state\":\"TN\",\"zip\":\"37620\"}"
},
"provider_id": "440012",
"state": "TN",
"score": "2.140",
"address_1": "ONE MEDICAL PARK BLVD",
"city": "BRISTOL",
"footnote": "The lower limit of the confidence interval cannot be calculated if the number of observed infections equals zero",
"county_name": "SULLIVAN"
},
{
"hospital_name": "GRADY MEMORIAL HOSPITAL",
"phone_number": {
"phone_number": "4046164252"
},
"zip_code": "30303",
"measure": "SSI: Colon Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-84.38301638628432",
"latitude": "33.7517221910347",
"human_address": "{\"address\":\"80 JESSE HILL, JR DRIVE SE\",\"city\":\"ATLANTA\",\"state\":\"GA\",\"zip\":\"30303\"}"
},
"provider_id": "110079",
"state": "GA",
"score": "1.830",
"address_1": "80 JESSE HILL, JR DRIVE SE",
"city": "ATLANTA",
"county_name": "FULTON"
},
{
"hospital_name": "OHSU HOSPITAL AND CLINICS",
"phone_number": {
"phone_number": "5034944036"
},
"zip_code": "97223",
"measure": "CAUTI Upper Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-122.68514675602263",
"latitude": "45.49975605431408",
"human_address": "{\"address\":\"3181 SW SAM JACKSON PARK ROAD\",\"city\":\"PORTLAND\",\"state\":\"OR\",\"zip\":\"97223\"}"
},
"provider_id": "380009",
"state": "OR",
"score": "1.073",
"address_1": "3181 SW SAM JACKSON PARK ROAD",
"city": "PORTLAND",
"county_name": "WASHINGTON"
},
{
"hospital_name": "MONTGOMERY HOSPITAL",
"phone_number": {
"phone_number": "6102702000"
},
"zip_code": "19401",
"measure": "SSI: Abdominal, Number of Procedures",
"location": {
"needs_recoding": false,
"longitude": "-75.33526856851114",
"latitude": "40.12453190554049",
"human_address": "{\"address\":\"POWELL &amp; FORNANCE STREETS\",\"city\":\"NORRISTOWN\",\"state\":\"PA\",\"zip\":\"19401\"}"
},
"provider_id": "390108",
"state": "PA",
"score": "4",
"address_1": "POWELL & FORNANCE STREETS",
"city": "NORRISTOWN",
"footnote": "No data are available from the hospital for this measure",
"county_name": "MONTGOMERY"
},
{
"hospital_name": "ELKHART GENERAL HOSPITAL",
"phone_number": {
"phone_number": "5742942621"
},
"zip_code": "46514",
"measure": "SSI: Colon Lower Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-85.97339000024817",
"latitude": "41.71236999977583",
"human_address": "{\"address\":\"600 E BLVD\",\"city\":\"ELKHART\",\"state\":\"IN\",\"zip\":\"46514\"}"
},
"provider_id": "150018",
"state": "IN",
"score": "0.479",
"address_1": "600 E BLVD",
"city": "ELKHART",
"county_name": "ELKHART"
},
{
"hospital_name": "WAHIAWA GENERAL HOSPITAL",
"phone_number": {
"phone_number": "8086218411"
},
"zip_code": "96786",
"measure": "CAUTI Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-158.02732661688648",
"latitude": "21.49870932958936",
"human_address": "{\"address\":\"128 LEHUA STREET\",\"city\":\"WAHIAWA\",\"state\":\"HI\",\"zip\":\"96786\"}"
},
"provider_id": "120004",
"state": "HI",
"score": "0.732",
"address_1": "128 LEHUA STREET",
"city": "WAHIAWA",
"footnote": "No data are available from the hospital for this measure",
"county_name": "HONOLULU"
},
{
"hospital_name": "NORTHSIDE HOSPITAL FORSYTH",
"phone_number": {
"phone_number": "4048518700"
},
"zip_code": "30041",
"measure": "CLABSI Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-84.13857902858388",
"latitude": "34.1788261867888",
"human_address": "{\"address\":\"1200 NORTHSIDE FORSYTH DRIVE\",\"city\":\"CUMMING\",\"state\":\"GA\",\"zip\":\"30041\"}"
},
"provider_id": "110005",
"state": "GA",
"score": "1",
"address_1": "1200 NORTHSIDE FORSYTH DRIVE",
"city": "CUMMING",
"county_name": "FORSYTH"
},
{
"hospital_name": "MEMORIAL MEDICAL CENTER LIVINGSTON",
"phone_number": {
"phone_number": "9363274381"
},
"zip_code": "77351",
"measure": "SSI: Abdominal Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-94.92109000040307",
"latitude": "30.704610000251478",
"human_address": "{\"address\":\"1717 HWY 59 BYPASS\",\"city\":\"LIVINGSTON\",\"state\":\"TX\",\"zip\":\"77351\"}"
},
"provider_id": "450395",
"state": "TX",
"score": "0",
"address_1": "1717 HWY 59 BYPASS",
"city": "LIVINGSTON",
"footnote": "No data are available from the hospital for this measure",
"county_name": "POLK"
},
{
"hospital_name": "BRADFORD REGIONAL MEDICAL CENTER",
"phone_number": {
"phone_number": "8143684143"
},
"zip_code": "16701",
"measure": "SSI: Colon, Number of Procedures",
"location": {
"needs_recoding": false,
"longitude": "-78.65994543844674",
"latitude": "41.96081828261029",
"human_address": "{\"address\":\"116 INTERSTATE PARKWAY\",\"city\":\"BRADFORD\",\"state\":\"PA\",\"zip\":\"16701\"}"
},
"provider_id": "390118",
"state": "PA",
"score": "11",
"address_1": "116 INTERSTATE PARKWAY",
"city": "BRADFORD",
"footnote": "No data are available from the hospital for this measure",
"county_name": "MCKEAN"
},
{
"hospital_name": "DAMERON HOSPITAL",
"phone_number": {
"phone_number": "2099445550"
},
"zip_code": "95203",
"measure": "CLABSI Lower Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-121.30064275399663",
"latitude": "37.96127562624033",
"human_address": "{\"address\":\"525 WEST ACACIA STREET\",\"city\":\"STOCKTON\",\"state\":\"CA\",\"zip\":\"95203\"}"
},
"provider_id": "050122",
"state": "CA",
"score": "0.270",
"address_1": "525 WEST ACACIA STREET",
"city": "STOCKTON",
"county_name": "SAN JOAQUIN"
},
{
"hospital_name": "WELLSTAR COBB HOSPITAL",
"phone_number": {
"phone_number": "7707324000"
},
"zip_code": "30106",
"measure": "CAUTI Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-84.60201360443196",
"latitude": "33.85608178964696",
"human_address": "{\"address\":\"3950 AUSTELL RD\",\"city\":\"AUSTELL\",\"state\":\"GA\",\"zip\":\"30106\"}"
},
"provider_id": "110143",
"state": "GA",
"score": "4",
"address_1": "3950 AUSTELL RD",
"city": "AUSTELL",
"county_name": "COBB"
},
{
"hospital_name": "SAINT MARY'S STANDISH COMMUNITY HOSPITAL",
"phone_number": {
"phone_number": "5178464521"
},
"zip_code": "48658",
"measure": "CLABSI Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-83.97025635214581",
"latitude": "43.98278087004739",
"human_address": "{\"address\":\"805 W CEDAR ST\",\"city\":\"STANDISH\",\"state\":\"MI\",\"zip\":\"48658\"}"
},
"provider_id": "231305",
"state": "MI",
"score": "0",
"address_1": "805 W CEDAR ST",
"city": "STANDISH",
"footnote": "No data are available from the hospital for this measure",
"county_name": "ARENAC"
},
{
"hospital_name": "ABBOTT NORTHWESTERN HOSPITAL",
"phone_number": {
"phone_number": "6128634000"
},
"zip_code": "55407",
"measure": "CLABSI Lower Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-93.26261245566074",
"latitude": "44.95200349007871",
"human_address": "{\"address\":\"800 EAST 28TH STREET\",\"city\":\"MINNEAPOLIS\",\"state\":\"MN\",\"zip\":\"55407\"}"
},
"provider_id": "240057",
"state": "MN",
"score": "0.029",
"address_1": "800 EAST 28TH STREET",
"city": "MINNEAPOLIS",
"county_name": "HENNEPIN"
},
{
"hospital_name": "KINGSTON HOSPITAL",
"phone_number": {
"phone_number": "9143313131"
},
"zip_code": "12401",
"measure": "CAUTI Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-73.99582733129199",
"latitude": "41.926512448869175",
"human_address": "{\"address\":\"396 BROADWAY\",\"city\":\"KINGSTON\",\"state\":\"NY\",\"zip\":\"12401\"}"
},
"provider_id": "330004",
"state": "NY",
"score": "1.868",
"address_1": "396 BROADWAY",
"city": "KINGSTON",
"county_name": "ULSTER"
},
{
"hospital_name": "MINISTRY ST MARYS HOSPITAL",
"phone_number": {
"phone_number": "7153612000"
},
"zip_code": "54501",
"measure": "CLABSI Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-89.4060399999459",
"latitude": "45.6477599998243",
"human_address": "{\"address\":\"2251 NORTH SHORE DR\",\"city\":\"RHINELANDER\",\"state\":\"WI\",\"zip\":\"54501\"}"
},
"provider_id": "520019",
"state": "WI",
"score": "0",
"address_1": "2251 NORTH SHORE DR",
"city": "RHINELANDER",
"footnote": "No data are available from the hospital for this measure",
"county_name": "ONEIDA"
},
{
"hospital_name": "WASHINGTON HOSPITAL, THE",
"phone_number": {
"phone_number": "7242257000"
},
"zip_code": "15301",
"measure": "CAUTI Urinary Catheter Days",
"location": {
"needs_recoding": false,
"longitude": "-80.24685794542245",
"latitude": "40.18304616556546",
"human_address": "{\"address\":\"155 WILSON AVENUE\",\"city\":\"WASHINGTON\",\"state\":\"PA\",\"zip\":\"15301\"}"
},
"provider_id": "390042",
"state": "PA",
"score": "1530",
"address_1": "155 WILSON AVENUE",
"city": "WASHINGTON",
"county_name": "WASHINGTON"
},
{
"hospital_name": "LABETTE HEALTH",
"phone_number": {
"phone_number": "6204214880"
},
"zip_code": "67357",
"measure": "CAUTI Urinary Catheter Days",
"location": {
"needs_recoding": false,
"longitude": "-95.26661378339392",
"latitude": "37.32193540394718",
"human_address": "{\"address\":\"1902 SOUTH US HWY 59\",\"city\":\"PARSONS\",\"state\":\"KS\",\"zip\":\"67357\"}"
},
"provider_id": "170120",
"state": "KS",
"score": "216",
"address_1": "1902 SOUTH US HWY 59",
"city": "PARSONS",
"footnote": "No data are available from the hospital for this measure",
"county_name": "LABETTE"
},
{
"hospital_name": "LAKEVIEW REGIONAL MEDICAL CENTER",
"phone_number": {
"phone_number": "9858674447"
},
"zip_code": "70433",
"measure": "SSI: Colon Lower Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-90.08121280088973",
"latitude": "30.409823542674193",
"human_address": "{\"address\":\"95 JUDGE TANNER BOULEVARD\",\"city\":\"COVINGTON\",\"state\":\"LA\",\"zip\":\"70433\"}"
},
"provider_id": "190177",
"state": "LA",
"score": "0.304",
"address_1": "95 JUDGE TANNER BOULEVARD",
"city": "COVINGTON",
"county_name": "SAINT TAMMANY"
},
{
"hospital_name": "SPECTRUM HEALTH - REED CITY CAMPUS",
"phone_number": {
"phone_number": "2318323271"
},
"zip_code": "49677",
"measure": "SSI: Abdominal Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-85.52285635099584",
"latitude": "43.87820762702562",
"human_address": "{\"address\":\"PO BOX 75, 300 N PATTERSON\",\"city\":\"REED CITY\",\"state\":\"MI\",\"zip\":\"49677\"}"
},
"provider_id": "231323",
"state": "MI",
"score": "0",
"address_1": "PO BOX 75, 300 N PATTERSON",
"city": "REED CITY",
"footnote": "No data are available from the hospital for this measure",
"county_name": "OSCEOLA"
},
{
"hospital_name": "SALEM COMMUNITY HOSPITAL",
"phone_number": {
"phone_number": "3303321551"
},
"zip_code": "44460",
"measure": "Surgical Site Infection from colon surgery (SSI: Colon)",
"location": {
"needs_recoding": false,
"longitude": "-80.83223058108268",
"latitude": "40.90089862699455",
"human_address": "{\"address\":\"1995 EAST STATE STREET\",\"city\":\"SALEM\",\"state\":\"OH\",\"zip\":\"44460\"}"
},
"provider_id": "360185",
"state": "OH",
"score": "0.81",
"address_1": "1995 EAST STATE STREET",
"city": "SALEM",
"county_name": "COLUMBIANA"
},
{
"hospital_name": "DETAR HOSPITAL NAVARRO",
"phone_number": {
"phone_number": "3615757441"
},
"zip_code": "77902",
"measure": "SSI: Abdominal Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-96.99847935266064",
"latitude": "28.807607380353943",
"human_address": "{\"address\":\"506 E SAN ANTONIO ST\",\"city\":\"VICTORIA\",\"state\":\"TX\",\"zip\":\"77902\"}"
},
"provider_id": "450147",
"state": "TX",
"score": "0",
"address_1": "506 E SAN ANTONIO ST",
"city": "VICTORIA",
"footnote": "No data are available from the hospital for this measure",
"county_name": "VICTORIA"
},
{
"hospital_name": "SAINT BARNABAS MEDICAL CENTER",
"phone_number": {
"phone_number": "9733225000"
},
"zip_code": "07039",
"measure": "SSI: Abdominal Upper Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-74.30322674892511",
"latitude": "40.76220709749622",
"human_address": "{\"address\":\"94 OLD SHORT HILLS ROAD\",\"city\":\"LIVINGSTON\",\"state\":\"NJ\",\"zip\":\"07039\"}"
},
"provider_id": "310076",
"state": "NJ",
"score": "3.874",
"address_1": "94 OLD SHORT HILLS ROAD",
"city": "LIVINGSTON",
"county_name": "ESSEX"
},
{
"hospital_name": "SHERMAN HOSPITAL",
"phone_number": {
"phone_number": "8477429800"
},
"zip_code": "60123",
"measure": "SSI: Colon, Number of Procedures",
"location": {
"needs_recoding": false,
"longitude": "-88.3354001766167",
"latitude": "42.07008021762664",
"human_address": "{\"address\":\"1425 NORTH RANDALL ROAD\",\"city\":\"ELGIN\",\"state\":\"IL\",\"zip\":\"60123\"}"
},
"provider_id": "140030",
"state": "IL",
"score": "50",
"address_1": "1425 NORTH RANDALL ROAD",
"city": "ELGIN",
"county_name": "KANE"
},
{
"hospital_name": "SCHNECK MEDICAL CENTER",
"phone_number": {
"phone_number": "8125222349"
},
"zip_code": "47274",
"measure": "SSI: Colon Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-85.89166343317953",
"latitude": "38.95660936574944",
"human_address": "{\"address\":\"411 W TIPTON ST\",\"city\":\"SEYMOUR\",\"state\":\"IN\",\"zip\":\"47274\"}"
},
"provider_id": "150065",
"state": "IN",
"score": "1",
"address_1": "411 W TIPTON ST",
"city": "SEYMOUR",
"footnote": "No data are available from the hospital for this measure",
"county_name": "JACKSON"
},
{
"hospital_name": "DELAWARE COUNTY MEMORIAL HOSPITAL",
"phone_number": {
"phone_number": "2152848100"
},
"zip_code": "19026",
"measure": "CAUTI Upper Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-75.28385509198026",
"latitude": "39.95390797160614",
"human_address": "{\"address\":\"501 NORTH LANSDOWNE AVE\",\"city\":\"DREXEL HILL\",\"state\":\"PA\",\"zip\":\"19026\"}"
},
"provider_id": "390081",
"state": "PA",
"score": "2.288",
"address_1": "501 NORTH LANSDOWNE AVE",
"city": "DREXEL HILL",
"footnote": "The lower limit of the confidence interval cannot be calculated if the number of observed infections equals zero",
"county_name": "DELAWARE"
},
{
"hospital_name": "GREENVILLE MEMORIAL MEDICAL CENTER",
"phone_number": {
"phone_number": "8644557000"
},
"zip_code": "29605",
"measure": "Surgical Site Infection from colon surgery (SSI: Colon)",
"location": {
"needs_recoding": false,
"longitude": "-82.41369919781354",
"latitude": "34.8214841132404",
"human_address": "{\"address\":\"701 GROVE RD\",\"city\":\"GREENVILLE\",\"state\":\"SC\",\"zip\":\"29605\"}"
},
"provider_id": "420078",
"state": "SC",
"score": "0.56",
"address_1": "701 GROVE RD",
"city": "GREENVILLE",
"county_name": "GREENVILLE"
},
{
"hospital_name": "WEST HILLS HOSPITAL & MEDICAL CENTER",
"phone_number": {
"phone_number": "8186764100"
},
"zip_code": "91307",
"measure": "SSI: Abdominal Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-118.62938648951774",
"latitude": "34.20334170530754",
"human_address": "{\"address\":\"7300 MEDICAL CENTER DR\",\"city\":\"WEST HILLS\",\"state\":\"CA\",\"zip\":\"91307\"}"
},
"provider_id": "050481",
"state": "CA",
"score": "0",
"address_1": "7300 MEDICAL CENTER DR",
"city": "WEST HILLS",
"footnote": "No data are available from the hospital for this measure",
"county_name": "LOS ANGELES"
},
{
"hospital_name": "JUPITER MEDICAL CENTER",
"phone_number": {
"phone_number": "5617472234"
},
"zip_code": "33458",
"measure": "CAUTI Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-80.09456168654935",
"latitude": "26.922772298465873",
"human_address": "{\"address\":\"1210 S OLD DIXIE HWY\",\"city\":\"JUPITER\",\"state\":\"FL\",\"zip\":\"33458\"}"
},
"provider_id": "100253",
"state": "FL",
"score": "2.159",
"address_1": "1210 S OLD DIXIE HWY",
"city": "JUPITER",
"county_name": "PALM BEACH"
},
{
"hospital_name": "MARION GENERAL HOSPITAL",
"phone_number": {
"phone_number": "7403838400"
},
"zip_code": "43302",
"measure": "SSI: Abdominal Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-83.12878428120462",
"latitude": "40.57215145918394",
"human_address": "{\"address\":\"1000 MCKINLEY PARK DRIVE\",\"city\":\"MARION\",\"state\":\"OH\",\"zip\":\"43302\"}"
},
"provider_id": "360011",
"state": "OH",
"score": "0",
"address_1": "1000 MCKINLEY PARK DRIVE",
"city": "MARION",
"footnote": "The lower limit of the confidence interval cannot be calculated if the number of observed infections equals zero",
"county_name": "MARION"
},
{
"hospital_name": "HAYS MEDICAL CENTER",
"phone_number": {
"phone_number": "7856235000"
},
"zip_code": "67601",
"measure": "CLABSI Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-99.29922389343915",
"latitude": "38.87884498987586",
"human_address": "{\"address\":\"2220 CANTERBURY DRIVE\",\"city\":\"HAYS\",\"state\":\"KS\",\"zip\":\"67601\"}"
},
"provider_id": "170013",
"state": "KS",
"score": "0",
"address_1": "2220 CANTERBURY DRIVE",
"city": "HAYS",
"footnote": "The lower limit of the confidence interval cannot be calculated if the number of observed infections equals zero",
"county_name": "ELLIS"
},
{
"hospital_name": "GOOD SAMARITAN HOSPITAL OF SUFFERN",
"phone_number": {
"phone_number": "9143685000"
},
"zip_code": "10901",
"measure": "SSI: Colon Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-74.13385527634898",
"latitude": "41.11221232421917",
"human_address": "{\"address\":\"255 LAFAYETTE AVENUE\",\"city\":\"SUFFERN\",\"state\":\"NY\",\"zip\":\"10901\"}"
},
"provider_id": "330158",
"state": "NY",
"score": "1.357",
"address_1": "255 LAFAYETTE AVENUE",
"city": "SUFFERN",
"footnote": "The lower limit of the confidence interval cannot be calculated if the number of observed infections equals zero",
"county_name": "ROCKLAND"
},
{
"hospital_name": "CHARITY HOSPITAL & MEDICAL CENTER OF LOUISIANA AT",
"phone_number": {
"phone_number": "5049033000"
},
"zip_code": "70112",
"measure": "SSI: Abdominal, Number of Procedures",
"location": {
"needs_recoding": false,
"longitude": "-90.07621474213265",
"latitude": "29.952283621579042",
"human_address": "{\"address\":\"2021 PERDIDO ST 4FLOOR\",\"city\":\"NEW ORLEANS\",\"state\":\"LA\",\"zip\":\"70112\"}"
},
"provider_id": "190005",
"state": "LA",
"score": "122",
"address_1": "2021 PERDIDO ST 4FLOOR",
"city": "NEW ORLEANS",
"county_name": "ORLEANS"
},
{
"hospital_name": "HINSDALE HOSPITAL",
"phone_number": {
"phone_number": "6308569000"
},
"zip_code": "60521",
"measure": "Surgical Site Infection from colon surgery (SSI: Colon)",
"location": {
"needs_recoding": false,
"longitude": "-87.92015115799865",
"latitude": "41.80560308371583",
"human_address": "{\"address\":\"120 NORTH OAK ST\",\"city\":\"HINSDALE\",\"state\":\"IL\",\"zip\":\"60521\"}"
},
"provider_id": "140122",
"state": "IL",
"score": "1.34",
"address_1": "120 NORTH OAK ST",
"city": "HINSDALE",
"county_name": "DUPAGE"
},
{
"hospital_name": "SHOALS HOSPITAL",
"phone_number": {
"phone_number": "2563861601"
},
"zip_code": "35661",
"measure": "SSI: Colon Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-87.67649049646539",
"latitude": "34.74502121645833",
"human_address": "{\"address\":\"201 WEST AVALON AVENUE\",\"city\":\"MUSCLE SHOALS\",\"state\":\"AL\",\"zip\":\"35661\"}"
},
"provider_id": "010157",
"state": "AL",
"score": "0.512",
"address_1": "201 WEST AVALON AVENUE",
"city": "MUSCLE SHOALS",
"footnote": "No data are available from the hospital for this measure",
"county_name": "COLBERT"
},
{
"hospital_name": "PUNXSUTAWNEY AREA HOSPITAL",
"phone_number": {
"phone_number": "8149381800"
},
"zip_code": "15767",
"measure": "SSI: Abdominal, Number of Procedures",
"location": {
"needs_recoding": false,
"longitude": "-78.99756867520921",
"latitude": "40.96019092838634",
"human_address": "{\"address\":\"81 HILLCREST DRIVE\",\"city\":\"PUNXSUTAWNEY\",\"state\":\"PA\",\"zip\":\"15767\"}"
},
"provider_id": "390199",
"state": "PA",
"score": "11",
"address_1": "81 HILLCREST DRIVE",
"city": "PUNXSUTAWNEY",
"footnote": "No data are available from the hospital for this measure",
"county_name": "JEFFERSON"
},
{
"hospital_name": "MEDICAL CENTER OF AURORA, THE",
"phone_number": {
"phone_number": "3036952600"
},
"zip_code": "80012",
"measure": "CAUTI Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-104.83118751939105",
"latitude": "39.69122056538316",
"human_address": "{\"address\":\"1501 S POTOMAC ST\",\"city\":\"AURORA\",\"state\":\"CO\",\"zip\":\"80012\"}"
},
"provider_id": "060100",
"state": "CO",
"score": "2",
"address_1": "1501 S POTOMAC ST",
"city": "AURORA",
"county_name": "ARAPAHOE"
},
{
"hospital_name": "SCRIPPS MERCY HOSPITAL",
"phone_number": {
"phone_number": "6192948111"
},
"zip_code": "92103",
"measure": "SSI: Abdominal Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-117.16077781866386",
"latitude": "32.751700020126655",
"human_address": "{\"address\":\"4077 5TH AVE\",\"city\":\"SAN DIEGO\",\"state\":\"CA\",\"zip\":\"92103\"}"
},
"provider_id": "050077",
"state": "CA",
"score": "2",
"address_1": "4077 5TH AVE",
"city": "SAN DIEGO",
"footnote": "No data are available from the hospital for this measure",
"county_name": "SAN DIEGO"
},
{
"hospital_name": "WESTERN MARYLAND REGIONAL MEDICAL CENTER",
"phone_number": {
"phone_number": "2409648001"
},
"zip_code": "21502",
"measure": "Catheter-Associated Urinary Tract Infections (CAUTI)",
"location": {
"needs_recoding": false,
"longitude": "-78.73165799676364",
"latitude": "39.64709294214085",
"human_address": "{\"address\":\"12500 WILLOWBROOK ROAD\",\"city\":\"CUMBERLAND\",\"state\":\"MD\",\"zip\":\"21502\"}"
},
"provider_id": "210027",
"state": "MD",
"score": "0.59",
"address_1": "12500 WILLOWBROOK ROAD",
"city": "CUMBERLAND",
"county_name": "ALLEGANY"
},
{
"hospital_name": "FLAGET MEMORIAL HOSPITAL (MEMBER OF SAINT JOSEPH H",
"phone_number": {
"phone_number": "5023505000"
},
"zip_code": "40004",
"measure": "SSI: Colon, Number of Procedures",
"location": {
"needs_recoding": false,
"longitude": "-85.52280721824621",
"latitude": "37.86307365569437",
"human_address": "{\"address\":\"4305 NEW SHEPHERDSVILLE ROAD\",\"city\":\"BARDSTOWN\",\"state\":\"KY\",\"zip\":\"40004\"}"
},
"provider_id": "180025",
"state": "KY",
"score": "6",
"address_1": "4305 NEW SHEPHERDSVILLE ROAD",
"city": "BARDSTOWN",
"footnote": "No data are available from the hospital for this measure",
"county_name": "NELSON"
},
{
"hospital_name": "SKYRIDGE MEDICAL CENTER",
"phone_number": {
"phone_number": "4233394132"
},
"zip_code": "37311",
"measure": "SSI: Colon Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-84.86844180790285",
"latitude": "35.17705565287122",
"human_address": "{\"address\":\"2305 CHAMBLISS AVE NW\",\"city\":\"CLEVELAND\",\"state\":\"TN\",\"zip\":\"37311\"}"
},
"provider_id": "440185",
"state": "TN",
"score": "0",
"address_1": "2305 CHAMBLISS AVE NW",
"city": "CLEVELAND",
"footnote": "No data are available from the hospital for this measure",
"county_name": "BRADLEY"
},
{
"hospital_name": "MARINERS HOSPITAL",
"phone_number": {
"phone_number": "3054343000"
},
"zip_code": "33070",
"measure": "CLABSI Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-80.52134394877396",
"latitude": "25.005399745557668",
"human_address": "{\"address\":\"91500 OVERSEAS HIGHWAY\",\"city\":\"TAVERNIER\",\"state\":\"FL\",\"zip\":\"33070\"}"
},
"provider_id": "101313",
"state": "FL",
"score": "0.065",
"address_1": "91500 OVERSEAS HIGHWAY",
"city": "TAVERNIER",
"footnote": "No data are available from the hospital for this measure",
"county_name": "MONROE"
},
{
"hospital_name": "HUNTSVILLE HOSPITAL",
"phone_number": {
"phone_number": "2562651000"
},
"zip_code": "35801",
"measure": "CAUTI Upper Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-86.58132978672066",
"latitude": "34.72101162699848",
"human_address": "{\"address\":\"101 SIVLEY RD\",\"city\":\"HUNTSVILLE\",\"state\":\"AL\",\"zip\":\"35801\"}"
},
"provider_id": "010039",
"state": "AL",
"score": "1.372",
"address_1": "101 SIVLEY RD",
"city": "HUNTSVILLE",
"county_name": "MADISON"
},
{
"hospital_name": "HENDRICK MEDICAL CENTER",
"phone_number": {
"phone_number": "3256702000"
},
"zip_code": "79601",
"measure": "CAUTI Urinary Catheter Days",
"location": {
"needs_recoding": false,
"longitude": "-99.73118827996251",
"latitude": "32.47153903707762",
"human_address": "{\"address\":\"1900 PINE\",\"city\":\"ABILENE\",\"state\":\"TX\",\"zip\":\"79601\"}"
},
"provider_id": "450229",
"state": "TX",
"score": "2175",
"address_1": "1900 PINE",
"city": "ABILENE",
"county_name": "TAYLOR"
},
{
"hospital_name": "LAFAYETTE GENERAL SURGICAL HOSPITAL",
"phone_number": {
"phone_number": "3372898095"
},
"zip_code": "70503",
"measure": "SSI: Abdominal Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-92.01378915441899",
"latitude": "30.20374187830015",
"human_address": "{\"address\":\"1000 W PINHOOK RD SUITE 100\",\"city\":\"LAFAYETTE\",\"state\":\"LA\",\"zip\":\"70503\"}"
},
"provider_id": "190268",
"state": "LA",
"score": "0",
"address_1": "1000 W PINHOOK RD SUITE 100",
"city": "LAFAYETTE",
"footnote": "No data are available from the hospital for this measure",
"county_name": "LAFAYETTE"
},
{
"hospital_name": "CHAMPLAIN VALLEY PHYSICIANS HOSPITAL MEDICAL CTR",
"phone_number": {
"phone_number": "5185612000"
},
"zip_code": "12901",
"measure": "Catheter-Associated Urinary Tract Infections (CAUTI)",
"location": {
"needs_recoding": false,
"longitude": "-73.46669322891279",
"latitude": "44.70013849909418",
"human_address": "{\"address\":\"75 BEEKMAN STREET\",\"city\":\"PLATTSBURGH\",\"state\":\"NY\",\"zip\":\"12901\"}"
},
"provider_id": "330250",
"state": "NY",
"score": "0.00",
"address_1": "75 BEEKMAN STREET",
"city": "PLATTSBURGH",
"footnote": "The lower limit of the confidence interval cannot be calculated if the number of observed infections equals zero",
"county_name": "CLINTON"
},
{
"hospital_name": "BROOKDALE HOSPITAL MEDICAL CENTER",
"phone_number": {
"phone_number": "7182405966"
},
"zip_code": "11212",
"measure": "CLABSI Upper Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-73.91536999982549",
"latitude": "40.661859999939225",
"human_address": "{\"address\":\"LINDEN BOULEVARD AT BROOKDALE PLAZA\",\"city\":\"BROOKLYN\",\"state\":\"NY\",\"zip\":\"11212\"}"
},
"provider_id": "330233",
"state": "NY",
"score": "1.939",
"address_1": "LINDEN BOULEVARD AT BROOKDALE PLAZA",
"city": "BROOKLYN",
"county_name": "KINGS"
},
{
"hospital_name": "LAFAYETTE GENERAL MEDICAL CENTER",
"phone_number": {
"phone_number": "3372897991"
},
"zip_code": "70503",
"measure": "CAUTI Upper Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-92.01867902144814",
"latitude": "30.20229983697004",
"human_address": "{\"address\":\"1214 COOLIDGE AVENUE\",\"city\":\"LAFAYETTE\",\"state\":\"LA\",\"zip\":\"70503\"}"
},
"provider_id": "190002",
"state": "LA",
"score": "3.565",
"address_1": "1214 COOLIDGE AVENUE",
"city": "LAFAYETTE",
"county_name": "LAFAYETTE"
},
{
"hospital_name": "MEMORIAL HOSPITAL",
"phone_number": {
"phone_number": "4193346617"
},
"zip_code": "43420",
"measure": "CLABSI Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-83.1351514811721",
"latitude": "41.33902134000863",
"human_address": "{\"address\":\"715 SOUTH TAFT AVENUE\",\"city\":\"FREMONT\",\"state\":\"OH\",\"zip\":\"43420\"}"
},
"provider_id": "360156",
"state": "OH",
"score": "0.355",
"address_1": "715 SOUTH TAFT AVENUE",
"city": "FREMONT",
"footnote": "No data are available from the hospital for this measure",
"county_name": "SANDUSKY"
},
{
"hospital_name": "FAIRFIELD MEDICAL CENTER",
"phone_number": {
"phone_number": "7406878009"
},
"zip_code": "43130",
"measure": "CAUTI Lower Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-82.57642968402888",
"latitude": "39.718209219482446",
"human_address": "{\"address\":\"401 NORTH EWING STREET\",\"city\":\"LANCASTER\",\"state\":\"OH\",\"zip\":\"43130\"}"
},
"provider_id": "360072",
"state": "OH",
"score": "0.016",
"address_1": "401 NORTH EWING STREET",
"city": "LANCASTER",
"county_name": "FAIRFIELD"
},
{
"hospital_name": "PENINSULA MEDICAL CENTER",
"phone_number": {
"phone_number": "6506965270"
},
"zip_code": "94010",
"measure": "SSI: Abdominal Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-122.38354982543314",
"latitude": "37.5941237787436",
"human_address": "{\"address\":\"1501 TROUSDALE DRIVE\",\"city\":\"BURLINGAME\",\"state\":\"CA\",\"zip\":\"94010\"}"
},
"provider_id": "050007",
"state": "CA",
"score": "0",
"address_1": "1501 TROUSDALE DRIVE",
"city": "BURLINGAME",
"footnote": "No data are available from the hospital for this measure",
"county_name": "SAN MATEO"
},
{
"hospital_name": "HARLEM HOSPITAL CENTER",
"phone_number": {
"phone_number": "2124918400"
},
"zip_code": "10037",
"measure": "SSI: Colon, Number of Procedures",
"location": {
"needs_recoding": false,
"longitude": "-73.94054968605015",
"latitude": "40.81428006186861",
"human_address": "{\"address\":\"506 LENOX AVENUE\",\"city\":\"NEW YORK\",\"state\":\"NY\",\"zip\":\"10037\"}"
},
"provider_id": "330240",
"state": "NY",
"score": "21",
"address_1": "506 LENOX AVENUE",
"city": "NEW YORK",
"footnote": "No data are available from the hospital for this measure",
"county_name": "NEW YORK"
},
{
"hospital_name": "MAYO CLINIC HEALTH SYSTEM EAU CLAIRE HOSPITAL",
"phone_number": {
"phone_number": "7158383311"
},
"zip_code": "54703",
"measure": "CAUTI Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-91.51337629378565",
"latitude": "44.81178196427494",
"human_address": "{\"address\":\"1221 WHIPPLE ST\",\"city\":\"EAU CLAIRE\",\"state\":\"WI\",\"zip\":\"54703\"}"
},
"provider_id": "520070",
"state": "WI",
"score": "2.554",
"address_1": "1221 WHIPPLE ST",
"city": "EAU CLAIRE",
"county_name": "EAU CLAIRE"
},
{
"hospital_name": "MEDICAL CENTER OF LEWISVILLE",
"phone_number": {
"phone_number": "9724201000"
},
"zip_code": "75057",
"measure": "SSI: Abdominal, Number of Procedures",
"location": {
"needs_recoding": false,
"longitude": "-97.00427098652938",
"latitude": "33.046255995969545",
"human_address": "{\"address\":\"500 WEST MAIN STREET\",\"city\":\"LEWISVILLE\",\"state\":\"TX\",\"zip\":\"75057\"}"
},
"provider_id": "450669",
"state": "TX",
"score": "33",
"address_1": "500 WEST MAIN STREET",
"city": "LEWISVILLE",
"footnote": "No data are available from the hospital for this measure",
"county_name": "DENTON"
},
{
"hospital_name": "WINCHESTER MEDICAL CENTER INC",
"phone_number": {
"phone_number": "5405368000"
},
"zip_code": "22601",
"measure": "CAUTI Upper Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-78.1887242077963",
"latitude": "39.20044405043881",
"human_address": "{\"address\":\"220 CAMPUS BLVD SUITE 210\",\"city\":\"WINCHESTER\",\"state\":\"VA\",\"zip\":\"22601\"}"
},
"provider_id": "490005",
"state": "VA",
"score": "1.486",
"address_1": "220 CAMPUS BLVD SUITE 210",
"city": "WINCHESTER",
"county_name": "WINCHESTER CITY"
},
{
"hospital_name": "AMERICAN FORK HOSPITAL",
"phone_number": {
"phone_number": "8018553300"
},
"zip_code": "84003",
"measure": "Central-Line-Associated Blood Stream Infections (CLABSI)",
"location": {
"needs_recoding": false,
"longitude": "-111.76900729205164",
"latitude": "40.3799888245733",
"human_address": "{\"address\":\"170 NORTH 1100 EAST\",\"city\":\"AMERICAN FORK\",\"state\":\"UT\",\"zip\":\"84003\"}"
},
"provider_id": "460023",
"state": "UT",
"score": "0.77",
"address_1": "170 NORTH 1100 EAST",
"city": "AMERICAN FORK",
"county_name": "UTAH"
},
{
"hospital_name": "ST CLAIRE REGIONAL MEDICAL CENTER",
"phone_number": {
"phone_number": "6067836500"
},
"zip_code": "40351",
"measure": "SSI: Abdominal Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-83.44289158548861",
"latitude": "38.18059169172628",
"human_address": "{\"address\":\"222 MEDICAL CIRCLE\",\"city\":\"MOREHEAD\",\"state\":\"KY\",\"zip\":\"40351\"}"
},
"provider_id": "180018",
"state": "KY",
"score": "0",
"address_1": "222 MEDICAL CIRCLE",
"city": "MOREHEAD",
"footnote": "No data are available from the hospital for this measure",
"county_name": "ROWAN"
},
{
"hospital_name": "CRESTWOOD MEDICAL CENTER",
"phone_number": {
"phone_number": "2568823100"
},
"zip_code": "35801",
"measure": "CLABSI Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-86.5726368650078",
"latitude": "34.692388891933575",
"human_address": "{\"address\":\"ONE HOSPITAL DR SE\",\"city\":\"HUNTSVILLE\",\"state\":\"AL\",\"zip\":\"35801\"}"
},
"provider_id": "010131",
"state": "AL",
"score": "3",
"address_1": "ONE HOSPITAL DR SE",
"city": "HUNTSVILLE",
"county_name": "MADISON"
},
{
"hospital_name": "INDIAN RIVER MEDICAL CENTER",
"phone_number": {
"phone_number": "7725674311"
},
"zip_code": "32960",
"measure": "Catheter-Associated Urinary Tract Infections (CAUTI)",
"location": {
"needs_recoding": false,
"longitude": "-80.39429643963234",
"latitude": "27.657656913958945",
"human_address": "{\"address\":\"1000 36TH ST\",\"city\":\"VERO BEACH\",\"state\":\"FL\",\"zip\":\"32960\"}"
},
"provider_id": "100105",
"state": "FL",
"score": "0.89",
"address_1": "1000 36TH ST",
"city": "VERO BEACH",
"county_name": "INDIAN RIVER"
},
{
"hospital_name": "MARSHALL MEDICAL CENTER SOUTH",
"phone_number": {
"phone_number": "2565938310"
},
"zip_code": "35957",
"measure": "CLABSI Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-86.15940910420596",
"latitude": "34.22131173901043",
"human_address": "{\"address\":\"2505 U S HIGHWAY 431 NORTH\",\"city\":\"BOAZ\",\"state\":\"AL\",\"zip\":\"35957\"}"
},
"provider_id": "010005",
"state": "AL",
"score": "0",
"address_1": "2505 U S HIGHWAY 431 NORTH",
"city": "BOAZ",
"footnote": "No data are available from the hospital for this measure",
"county_name": "MARSHALL"
},
{
"hospital_name": "SILVER LAKE MEDICAL CENTER",
"phone_number": {
"phone_number": "2139896123"
},
"zip_code": "90026",
"measure": "CLABSI Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-118.26331879637756",
"latitude": "34.068792136528685",
"human_address": "{\"address\":\"1711 WEST TEMPLE STREET\",\"city\":\"LOS ANGELES\",\"state\":\"CA\",\"zip\":\"90026\"}"
},
"provider_id": "050763",
"state": "CA",
"score": "2.494",
"address_1": "1711 WEST TEMPLE STREET",
"city": "LOS ANGELES",
"county_name": "LOS ANGELES"
},
{
"hospital_name": "SOUTH BAY HOSPITAL",
"phone_number": {
"phone_number": "8136343301"
},
"zip_code": "33573",
"measure": "CLABSI Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-82.36603329527412",
"latitude": "27.712430999513003",
"human_address": "{\"address\":\"4016 SUN CITY CENTER BLVD\",\"city\":\"SUN CITY CENTER\",\"state\":\"FL\",\"zip\":\"33573\"}"
},
"provider_id": "100259",
"state": "FL",
"score": "2.240",
"address_1": "4016 SUN CITY CENTER BLVD",
"city": "SUN CITY CENTER",
"footnote": "The lower limit of the confidence interval cannot be calculated if the number of observed infections equals zero",
"county_name": "HILLSBOROUGH"
},
{
"hospital_name": "TOWN & COUNTRY HOSPITAL",
"phone_number": {
"phone_number": "8138827159"
},
"zip_code": "33615",
"measure": "SSI: Colon, Number of Procedures",
"location": {
"needs_recoding": false,
"longitude": "-82.57511667386609",
"latitude": "28.002381414979595",
"human_address": "{\"address\":\"6001 WEBB RD\",\"city\":\"TAMPA\",\"state\":\"FL\",\"zip\":\"33615\"}"
},
"provider_id": "100255",
"state": "FL",
"score": "28",
"address_1": "6001 WEBB RD",
"city": "TAMPA",
"footnote": "No data are available from the hospital for this measure",
"county_name": "HILLSBOROUGH"
},
{
"hospital_name": "KAISER FOUNDATION HOSPITAL-SAN JOSE",
"phone_number": {
"phone_number": "4089727000"
},
"zip_code": "95119",
"measure": "CAUTI Upper Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-121.80058482245568",
"latitude": "37.2393269711402",
"human_address": "{\"address\":\"250 HOSPITAL PARKWAY\",\"city\":\"SAN JOSE\",\"state\":\"CA\",\"zip\":\"95119\"}"
},
"provider_id": "050604",
"state": "CA",
"score": "6.604",
"address_1": "250 HOSPITAL PARKWAY",
"city": "SAN JOSE",
"county_name": "SANTA CLARA"
},
{
"hospital_name": "METRO NASHVILLE GENERAL HOSPITAL",
"phone_number": {
"phone_number": "6153414490"
},
"zip_code": "37208",
"measure": "CAUTI Urinary Catheter Days",
"location": {
"needs_recoding": false,
"longitude": "-86.80749701493744",
"latitude": "36.16600411561126",
"human_address": "{\"address\":\"1818 ALBION STREET\",\"city\":\"NASHVILLE\",\"state\":\"TN\",\"zip\":\"37208\"}"
},
"provider_id": "440111",
"state": "TN",
"score": "1037",
"address_1": "1818 ALBION STREET",
"city": "NASHVILLE",
"footnote": "The lower limit of the confidence interval cannot be calculated if the number of observed infections equals zero",
"county_name": "DAVIDSON"
},
{
"hospital_name": "NORTON COMMUNITY HOSPITAL",
"phone_number": {
"phone_number": "7036799600"
},
"zip_code": "24273",
"measure": "SSI: Colon Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-82.6426579464376",
"latitude": "36.93209367109643",
"human_address": "{\"address\":\"100 15TH ST NW\",\"city\":\"NORTON\",\"state\":\"VA\",\"zip\":\"24273\"}"
},
"provider_id": "490001",
"state": "VA",
"score": "0",
"address_1": "100 15TH ST NW",
"city": "NORTON",
"footnote": "No data are available from the hospital for this measure",
"county_name": "NORTON CITY"
},
{
"hospital_name": "WESTLAKE REGIONAL HOSPITAL",
"phone_number": {
"phone_number": "2703844753"
},
"zip_code": "42728",
"measure": "CAUTI Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-85.29603003351554",
"latitude": "37.09691971217637",
"human_address": "{\"address\":\"901 WESTLAKE DRIVE\",\"city\":\"COLUMBIA\",\"state\":\"KY\",\"zip\":\"42728\"}"
},
"provider_id": "180149",
"state": "KY",
"score": "0.224",
"address_1": "901 WESTLAKE DRIVE",
"city": "COLUMBIA",
"footnote": "No data are available from the hospital for this measure",
"county_name": "ADAIR"
},
{
"hospital_name": "ST DAVIDS MEDICAL CENTER",
"phone_number": {
"phone_number": "5124767111"
},
"zip_code": "78705",
"measure": "Surgical Site Infection from colon surgery (SSI: Colon)",
"location": {
"needs_recoding": false,
"longitude": "-97.72670536588635",
"latitude": "30.290805243956697",
"human_address": "{\"address\":\"919 E 32ND ST\",\"city\":\"AUSTIN\",\"state\":\"TX\",\"zip\":\"78705\"}"
},
"provider_id": "450431",
"state": "TX",
"score": "1.64",
"address_1": "919 E 32ND ST",
"city": "AUSTIN",
"county_name": "TRAVIS"
},
{
"hospital_name": "SPRING VIEW HOSPITAL",
"phone_number": {
"phone_number": "2706925145"
},
"zip_code": "40033",
"measure": "SSI: Colon Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-85.26278108325357",
"latitude": "37.57120564392174",
"human_address": "{\"address\":\"320 LORETTO ROAD\",\"city\":\"LEBANON\",\"state\":\"KY\",\"zip\":\"40033\"}"
},
"provider_id": "180024",
"state": "KY",
"score": "0",
"address_1": "320 LORETTO ROAD",
"city": "LEBANON",
"footnote": "No data are available from the hospital for this measure",
"county_name": "MARION"
},
{
"hospital_name": "BOONE HOSPITAL CENTER",
"phone_number": {
"phone_number": "5738158000"
},
"zip_code": "65201",
"measure": "CAUTI Lower Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-92.31636605117694",
"latitude": "38.950484982729904",
"human_address": "{\"address\":\"1600 E BROADWAY\",\"city\":\"COLUMBIA\",\"state\":\"MO\",\"zip\":\"65201\"}"
},
"provider_id": "260068",
"state": "MO",
"score": "0.072",
"address_1": "1600 E BROADWAY",
"city": "COLUMBIA",
"county_name": "BOONE"
},
{
"hospital_name": "PARKVIEW REGIONAL HOSPITAL",
"phone_number": {
"phone_number": "2545625332"
},
"zip_code": "76667",
"measure": "CLABSI Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-96.48014430853871",
"latitude": "31.675927583221345",
"human_address": "{\"address\":\"600 SOUTH BONHAM STREET\",\"city\":\"MEXIA\",\"state\":\"TX\",\"zip\":\"76667\"}"
},
"provider_id": "450400",
"state": "TX",
"score": "0.006",
"address_1": "600 SOUTH BONHAM STREET",
"city": "MEXIA",
"footnote": "No data are available from the hospital for this measure",
"county_name": "LIMESTONE"
},
{
"hospital_name": "ARROYO GRANDE COMMUNITY HOSPITAL",
"phone_number": {
"phone_number": "8054894261"
},
"zip_code": "93420",
"measure": "CAUTI Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-120.59159024558653",
"latitude": "35.11390525997376",
"human_address": "{\"address\":\"345 S HALCYON RD\",\"city\":\"ARROYO GRANDE\",\"state\":\"CA\",\"zip\":\"93420\"}"
},
"provider_id": "050016",
"state": "CA",
"score": "0.676",
"address_1": "345 S HALCYON RD",
"city": "ARROYO GRANDE",
"footnote": "No data are available from the hospital for this measure",
"county_name": "SAN LUIS OBISPO"
},
{
"hospital_name": "ST MARYS HEALTH CENTER",
"phone_number": {
"phone_number": "5737617000"
},
"zip_code": "65101",
"measure": "SSI: Colon Upper Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-92.1826548518606",
"latitude": "38.57898404564639",
"human_address": "{\"address\":\"100 ST MARYS MEDICAL PLAZA\",\"city\":\"JEFFERSON CITY\",\"state\":\"MO\",\"zip\":\"65101\"}"
},
"provider_id": "260011",
"state": "MO",
"score": "4.152",
"address_1": "100 ST MARYS MEDICAL PLAZA",
"city": "JEFFERSON CITY",
"county_name": "COLE"
},
{
"hospital_name": "HEART OF LANCASTER REGIONAL MEDICAL CENTER",
"phone_number": {
"phone_number": "7176255000"
},
"zip_code": "17543",
"measure": "SSI: Abdominal Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-76.30949512963156",
"latitude": "40.13415465125399",
"human_address": "{\"address\":\"1500 HIGHLANDS DRIVE\",\"city\":\"LITITZ\",\"state\":\"PA\",\"zip\":\"17543\"}"
},
"provider_id": "390068",
"state": "PA",
"score": "1",
"address_1": "1500 HIGHLANDS DRIVE",
"city": "LITITZ",
"footnote": "No data are available from the hospital for this measure",
"county_name": "LANCASTER"
},
{
"hospital_name": "NORTH TEXAS MEDICAL CENTER",
"phone_number": {
"phone_number": "9406128600"
},
"zip_code": "76240",
"measure": "SSI: Abdominal Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-97.16237776933777",
"latitude": "33.64612188418418",
"human_address": "{\"address\":\"1900 HOSPITAL BLVD\",\"city\":\"GAINESVILLE\",\"state\":\"TX\",\"zip\":\"76240\"}"
},
"provider_id": "450090",
"state": "TX",
"score": "0.109",
"address_1": "1900 HOSPITAL BLVD",
"city": "GAINESVILLE",
"footnote": "No data are available from the hospital for this measure",
"county_name": "COOKE"
},
{
"hospital_name": "CARSON TAHOE REGIONAL MEDICAL CENTER",
"phone_number": {
"phone_number": "7754458000"
},
"zip_code": "89703",
"measure": "CAUTI Urinary Catheter Days",
"location": {
"needs_recoding": false,
"longitude": "-119.78568813228787",
"latitude": "39.20362797749171",
"human_address": "{\"address\":\"1600 MEDICAL PARKWAY\",\"city\":\"CARSON CITY\",\"state\":\"NV\",\"zip\":\"89703\"}"
},
"provider_id": "290019",
"state": "NV",
"score": "1421",
"address_1": "1600 MEDICAL PARKWAY",
"city": "CARSON CITY",
"county_name": "CARSON CITY"
},
{
"hospital_name": "NORTHRIDGE MEDICAL CENTER",
"phone_number": {
"phone_number": "7063351101"
},
"zip_code": "30529",
"measure": "SSI: Abdominal, Number of Procedures",
"location": {
"needs_recoding": false,
"longitude": "-83.4686810592932",
"latitude": "34.219001342618725",
"human_address": "{\"address\":\"70 MEDICAL CENTER DRIVE\",\"city\":\"COMMERCE\",\"state\":\"GA\",\"zip\":\"30529\"}"
},
"provider_id": "110040",
"state": "GA",
"score": "4",
"address_1": "70 MEDICAL CENTER DRIVE",
"city": "COMMERCE",
"footnote": "No data are available from the hospital for this measure",
"county_name": "JACKSON"
},
{
"hospital_name": "UNIVERSITY HOSPITAL ( STONY BROOK )",
"phone_number": {
"phone_number": "6314444000"
},
"zip_code": "11794",
"measure": "Surgical Site Infection from abdominal hysterectomy (SSI: Hysterectomy)",
"location": {
"needs_recoding": false,
"longitude": "-73.11455455426425",
"latitude": "40.91381769952754",
"human_address": "{\"address\":\"HEALTH SCIENCES CENTER SUNY\",\"city\":\"STONY BROOK\",\"state\":\"NY\",\"zip\":\"11794\"}"
},
"provider_id": "330393",
"state": "NY",
"score": "1.19",
"address_1": "HEALTH SCIENCES CENTER SUNY",
"city": "STONY BROOK",
"county_name": "SUFFOLK"
},
{
"hospital_name": "ST FRANCIS-DOWNTOWN",
"phone_number": {
"phone_number": "8642551000"
},
"zip_code": "29601",
"measure": "CAUTI Urinary Catheter Days",
"location": {
"needs_recoding": false,
"longitude": "-82.42192616947014",
"latitude": "34.84332074776218",
"human_address": "{\"address\":\"ONE ST FRANCIS DR\",\"city\":\"GREENVILLE\",\"state\":\"SC\",\"zip\":\"29601\"}"
},
"provider_id": "420023",
"state": "SC",
"score": "2458",
"address_1": "ONE ST FRANCIS DR",
"city": "GREENVILLE",
"county_name": "GREENVILLE"
},
{
"hospital_name": "MAYO CLINIC HEALTH SYSTEM IN RED WING",
"phone_number": {
"phone_number": "6512675000"
},
"zip_code": "55066",
"measure": "CAUTI Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-92.57527187019213",
"latitude": "44.559781309981304",
"human_address": "{\"address\":\"701 FAIRVIEW BOULEVARD, PO BOX 95\",\"city\":\"RED WING\",\"state\":\"MN\",\"zip\":\"55066\"}"
},
"provider_id": "240018",
"state": "MN",
"score": "0",
"address_1": "701 FAIRVIEW BOULEVARD, PO BOX 95",
"city": "RED WING",
"footnote": "No data are available from the hospital for this measure",
"county_name": "GOODHUE"
},
{
"hospital_name": "ST JOSEPH MERCY PORT HURON",
"phone_number": {
"phone_number": "8109851510"
},
"zip_code": "48060",
"measure": "CAUTI Urinary Catheter Days",
"location": {
"needs_recoding": false,
"longitude": "-82.43414814622831",
"latitude": "42.955463053358834",
"human_address": "{\"address\":\"2601 ELECTRIC AVENUE\",\"city\":\"PORT HURON\",\"state\":\"MI\",\"zip\":\"48060\"}"
},
"provider_id": "230031",
"state": "MI",
"score": "791",
"address_1": "2601 ELECTRIC AVENUE",
"city": "PORT HURON",
"footnote": "The lower limit of the confidence interval cannot be calculated if the number of observed infections equals zero",
"county_name": "SAINT CLAIR"
},
{
"hospital_name": "ROWAN REGIONAL MEDICAL CENTER",
"phone_number": {
"phone_number": "7042105000"
},
"zip_code": "28144",
"measure": "SSI: Abdominal Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-80.47141358970725",
"latitude": "35.6822318163899",
"human_address": "{\"address\":\"612 MOCKSVILLE AVE\",\"city\":\"SALISBURY\",\"state\":\"NC\",\"zip\":\"28144\"}"
},
"provider_id": "340015",
"state": "NC",
"score": "0.146",
"address_1": "612 MOCKSVILLE AVE",
"city": "SALISBURY",
"footnote": "No data are available from the hospital for this measure",
"county_name": "ROWAN"
},
{
"hospital_name": "SWEETWATER HOSPITAL ASSOCIATION",
"phone_number": {
"phone_number": "8652138200"
},
"zip_code": "37874",
"measure": "CAUTI Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-84.46419861386346",
"latitude": "35.600303281687964",
"human_address": "{\"address\":\"304 WRIGHT ST\",\"city\":\"SWEETWATER\",\"state\":\"TN\",\"zip\":\"37874\"}"
},
"provider_id": "440084",
"state": "TN",
"score": "0.780",
"address_1": "304 WRIGHT ST",
"city": "SWEETWATER",
"footnote": "No data are available from the hospital for this measure",
"county_name": "MONROE"
},
{
"hospital_name": "VHS BROWNSVILLE HOSPITAL COMPANY, LLC",
"phone_number": {
"phone_number": "9565441400"
},
"zip_code": "78520",
"measure": "CAUTI Urinary Catheter Days",
"location": {
"needs_recoding": false,
"longitude": "-97.5118559966882",
"latitude": "25.91790704715382",
"human_address": "{\"address\":\"1040 W JEFFERSON ST\",\"city\":\"BROWNSVILLE\",\"state\":\"TX\",\"zip\":\"78520\"}"
},
"provider_id": "450028",
"state": "TX",
"score": "1559",
"address_1": "1040 W JEFFERSON ST",
"city": "BROWNSVILLE",
"county_name": "CAMERON"
},
{
"hospital_name": "D C H REGIONAL MEDICAL CENTER",
"phone_number": {
"phone_number": "2057597111"
},
"zip_code": "35401",
"measure": "Surgical Site Infection from abdominal hysterectomy (SSI: Hysterectomy)",
"location": {
"needs_recoding": false,
"longitude": "-87.52547975024942",
"latitude": "33.2061734392197",
"human_address": "{\"address\":\"809 UNIVERSITY BOULEVARD EAST\",\"city\":\"TUSCALOOSA\",\"state\":\"AL\",\"zip\":\"35401\"}"
},
"provider_id": "010092",
"state": "AL",
"score": "0.00",
"address_1": "809 UNIVERSITY BOULEVARD EAST",
"city": "TUSCALOOSA",
"footnote": "The lower limit of the confidence interval cannot be calculated if the number of observed infections equals zero",
"county_name": "TUSCALOOSA"
},
{
"hospital_name": "LAKEVIEW HOSPITAL",
"phone_number": {
"phone_number": "8012992200"
},
"zip_code": "84010",
"measure": "CLABSI Lower Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-111.86825649357945",
"latitude": "40.88668933893166",
"human_address": "{\"address\":\"630 EAST MEDICAL DRIVE\",\"city\":\"BOUNTIFUL\",\"state\":\"UT\",\"zip\":\"84010\"}"
},
"provider_id": "460042",
"state": "UT",
"score": "0.024",
"address_1": "630 EAST MEDICAL DRIVE",
"city": "BOUNTIFUL",
"county_name": "DAVIS"
},
{
"hospital_name": "SPEARFISH REGIONAL HOSPITAL",
"phone_number": {
"phone_number": "6056444000"
},
"zip_code": "57783",
"measure": "CLABSI Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-103.8610348870634",
"latitude": "44.49780003572198",
"human_address": "{\"address\":\"1440 N MAIN ST\",\"city\":\"SPEARFISH\",\"state\":\"SD\",\"zip\":\"57783\"}"
},
"provider_id": "430048",
"state": "SD",
"score": "0.077",
"address_1": "1440 N MAIN ST",
"city": "SPEARFISH",
"footnote": "No data are available from the hospital for this measure",
"county_name": "LAWRENCE"
},
{
"hospital_name": "FLOWERS HOSPITAL",
"phone_number": {
"phone_number": "3347935000"
},
"zip_code": "36305",
"measure": "Surgical Site Infection from colon surgery (SSI: Colon)",
"location": {
"needs_recoding": false,
"longitude": "-85.45720995404497",
"latitude": "31.2358308187857",
"human_address": "{\"address\":\"4370 WEST MAIN STREET\",\"city\":\"DOTHAN\",\"state\":\"AL\",\"zip\":\"36305\"}"
},
"provider_id": "010055",
"state": "AL",
"score": "0.00",
"address_1": "4370 WEST MAIN STREET",
"city": "DOTHAN",
"footnote": "The lower limit of the confidence interval cannot be calculated if the number of observed infections equals zero",
"county_name": "HOUSTON"
},
{
"hospital_name": "JACOBI MEDICAL CENTER",
"phone_number": {
"phone_number": "7189185000"
},
"zip_code": "10461",
"measure": "Central-Line-Associated Blood Stream Infections (CLABSI)",
"location": {
"needs_recoding": false,
"longitude": "-73.84646792866585",
"latitude": "40.857389427217015",
"human_address": "{\"address\":\"1400 PELHAM PARKWAY SOUTH\",\"city\":\"BRONX\",\"state\":\"NY\",\"zip\":\"10461\"}"
},
"provider_id": "330127",
"state": "NY",
"score": "0.46",
"address_1": "1400 PELHAM PARKWAY SOUTH",
"city": "BRONX",
"county_name": "BRONX"
},
{
"hospital_name": "CENTRAL BAPTIST HOSPITAL",
"phone_number": {
"phone_number": "8592606100"
},
"zip_code": "40503",
"measure": "SSI: Colon Upper Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-84.51347940293812",
"latitude": "38.02014533663936",
"human_address": "{\"address\":\"1740 NICHOLASVILLE ROAD\",\"city\":\"LEXINGTON\",\"state\":\"KY\",\"zip\":\"40503\"}"
},
"provider_id": "180103",
"state": "KY",
"score": "2.037",
"address_1": "1740 NICHOLASVILLE ROAD",
"city": "LEXINGTON",
"county_name": "FAYETTE"
},
{
"hospital_name": "GOLETA VALLEY COTTAGE HOSPITAL",
"phone_number": {
"phone_number": "8056816446"
},
"zip_code": "93111",
"measure": "CAUTI Urinary Catheter Days",
"location": {
"needs_recoding": false,
"longitude": "-119.80927900551876",
"latitude": "34.43416169734763",
"human_address": "{\"address\":\"351 S PATTERSON AVE\",\"city\":\"SANTA BARBARA\",\"state\":\"CA\",\"zip\":\"93111\"}"
},
"provider_id": "050357",
"state": "CA",
"score": "139",
"address_1": "351 S PATTERSON AVE",
"city": "SANTA BARBARA",
"footnote": "No data are available from the hospital for this measure",
"county_name": "SANTA BARBARA"
},
{
"hospital_name": "FLOYD MEMORIAL HOSPITAL AND HEALTH SERVICES",
"phone_number": {
"phone_number": "8129495500"
},
"zip_code": "47150",
"measure": "CAUTI Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-85.83498815889305",
"latitude": "38.30044602673155",
"human_address": "{\"address\":\"1850 STATE ST\",\"city\":\"NEW ALBANY\",\"state\":\"IN\",\"zip\":\"47150\"}"
},
"provider_id": "150044",
"state": "IN",
"score": "4.436",
"address_1": "1850 STATE ST",
"city": "NEW ALBANY",
"county_name": "FLOYD"
},
{
"hospital_name": "NORTH OAKS MEDICAL CENTER, L L C",
"phone_number": {
"phone_number": "9853452700"
},
"zip_code": "70403",
"measure": "SSI: Colon Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-90.46083494399481",
"latitude": "30.46601653961887",
"human_address": "{\"address\":\"15790 PAUL VEGA MD DRIVE\",\"city\":\"HAMMOND\",\"state\":\"LA\",\"zip\":\"70403\"}"
},
"provider_id": "190015",
"state": "LA",
"score": "0.792",
"address_1": "15790 PAUL VEGA MD DRIVE",
"city": "HAMMOND",
"footnote": "No data are available from the hospital for this measure",
"county_name": "TANGIPAHOA"
},
{
"hospital_name": "ST JOHN'S EPISCOPAL HOSPITAL AT SOUTH SHORE",
"phone_number": {
"phone_number": "7188697000"
},
"zip_code": "11691",
"measure": "CAUTI Lower Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-73.75294708912148",
"latitude": "40.5982285714032",
"human_address": "{\"address\":\"327 BEACH 19TH STREET\",\"city\":\"FAR ROCKAWAY\",\"state\":\"NY\",\"zip\":\"11691\"}"
},
"provider_id": "330395",
"state": "NY",
"score": "0.058",
"address_1": "327 BEACH 19TH STREET",
"city": "FAR ROCKAWAY",
"county_name": "QUEENS"
},
{
"hospital_name": "CLARION HOSPITAL",
"phone_number": {
"phone_number": "8142269500"
},
"zip_code": "16214",
"measure": "CLABSI Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-79.40077869261381",
"latitude": "41.190182015770176",
"human_address": "{\"address\":\"271 PERKINS ROAD\",\"city\":\"CLARION\",\"state\":\"PA\",\"zip\":\"16214\"}"
},
"provider_id": "390093",
"state": "PA",
"score": "0.939",
"address_1": "271 PERKINS ROAD",
"city": "CLARION",
"footnote": "No data are available from the hospital for this measure",
"county_name": "CLARION"
},
{
"hospital_name": "WILLIAMSPORT REGIONAL MEDICAL CENTER",
"phone_number": {
"phone_number": "5703211000"
},
"zip_code": "17701",
"measure": "CLABSI Upper Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-77.014509641281",
"latitude": "41.24552782184264",
"human_address": "{\"address\":\"700 HIGH STREET\",\"city\":\"WILLIAMSPORT\",\"state\":\"PA\",\"zip\":\"17701\"}"
},
"provider_id": "390045",
"state": "PA",
"score": "2.254",
"address_1": "700 HIGH STREET",
"city": "WILLIAMSPORT",
"county_name": "LYCOMING"
},
{
"hospital_name": "DESERT SPRINGS HOSPITAL",
"phone_number": {
"phone_number": "7023697600"
},
"zip_code": "89119",
"measure": "CAUTI Urinary Catheter Days",
"location": {
"needs_recoding": false,
"longitude": "-115.1240270701528",
"latitude": "36.1145628955353",
"human_address": "{\"address\":\"2075 EAST FLAMINGO ROAD\",\"city\":\"LAS VEGAS\",\"state\":\"NV\",\"zip\":\"89119\"}"
},
"provider_id": "290022",
"state": "NV",
"score": "7406",
"address_1": "2075 EAST FLAMINGO ROAD",
"city": "LAS VEGAS",
"county_name": "CLARK"
},
{
"hospital_name": "WILLIAM N WISHARD MEMORIAL HOSPITAL",
"phone_number": {
"phone_number": "3176307592"
},
"zip_code": "46202",
"measure": "SSI: Abdominal Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-86.1763818144061",
"latitude": "39.78088753698523",
"human_address": "{\"address\":\"1001 W 10TH ST\",\"city\":\"INDIANAPOLIS\",\"state\":\"IN\",\"zip\":\"46202\"}"
},
"provider_id": "150024",
"state": "IN",
"score": "1",
"address_1": "1001 W 10TH ST",
"city": "INDIANAPOLIS",
"footnote": "No data are available from the hospital for this measure",
"county_name": "MARION"
},
{
"hospital_name": "NICHOLAS H NOYES MEMORIAL HOSPITAL",
"phone_number": {
"phone_number": "5853356001"
},
"zip_code": "14437",
"measure": "SSI: Abdominal, Number of Procedures",
"location": {
"needs_recoding": false,
"longitude": "-77.70005383099607",
"latitude": "42.55153226601237",
"human_address": "{\"address\":\"111 CLARA BARTON STREET\",\"city\":\"DANSVILLE\",\"state\":\"NY\",\"zip\":\"14437\"}"
},
"provider_id": "330238",
"state": "NY",
"score": "9",
"address_1": "111 CLARA BARTON STREET",
"city": "DANSVILLE",
"footnote": "No data are available from the hospital for this measure",
"county_name": "LIVINGSTON"
},
{
"hospital_name": "STRONG MEMORIAL HOSPITAL",
"phone_number": {
"phone_number": "5852752121"
},
"zip_code": "14642",
"measure": "CAUTI Lower Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-77.62359676440843",
"latitude": "43.12435023063506",
"human_address": "{\"address\":\"601 ELMWOOD AVE\",\"city\":\"ROCHESTER\",\"state\":\"NY\",\"zip\":\"14642\"}"
},
"provider_id": "330285",
"state": "NY",
"score": "1.191",
"address_1": "601 ELMWOOD AVE",
"city": "ROCHESTER",
"county_name": "MONROE"
},
{
"hospital_name": "LEWISGALE MEDICAL CENTER",
"phone_number": {
"phone_number": "5407764000"
},
"zip_code": "24153",
"measure": "Central-Line-Associated Blood Stream Infections (CLABSI)",
"location": {
"needs_recoding": false,
"longitude": "-80.03317396482936",
"latitude": "37.26438208287652",
"human_address": "{\"address\":\"1900 ELECTRIC ROAD\",\"city\":\"SALEM\",\"state\":\"VA\",\"zip\":\"24153\"}"
},
"provider_id": "490048",
"state": "VA",
"score": "0.29",
"address_1": "1900 ELECTRIC ROAD",
"city": "SALEM",
"county_name": "SALEM"
},
{
"hospital_name": "METHODIST MEDICAL CENTER OF OAK RIDGE",
"phone_number": {
"phone_number": "8658351000"
},
"zip_code": "37830",
"measure": "CLABSI Upper Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-84.24391077936258",
"latitude": "36.0234828684824",
"human_address": "{\"address\":\"990 OAK RIDGE TURNPIKE BOX 529\",\"city\":\"OAK RIDGE\",\"state\":\"TN\",\"zip\":\"37830\"}"
},
"provider_id": "440034",
"state": "TN",
"score": "0.728",
"address_1": "990 OAK RIDGE TURNPIKE BOX 529",
"city": "OAK RIDGE",
"county_name": "ANDERSON"
},
{
"hospital_name": "NORTHERN WESTCHESTER HOSPITAL",
"phone_number": {
"phone_number": "9146661200"
},
"zip_code": "10549",
"measure": "SSI: Abdominal, Number of Procedures",
"location": {
"needs_recoding": false,
"longitude": "-73.72496052928716",
"latitude": "41.1954715576918",
"human_address": "{\"address\":\"400 EAST MAIN STREET\",\"city\":\"MOUNT KISCO\",\"state\":\"NY\",\"zip\":\"10549\"}"
},
"provider_id": "330162",
"state": "NY",
"score": "70",
"address_1": "400 EAST MAIN STREET",
"city": "MOUNT KISCO",
"footnote": "No data are available from the hospital for this measure",
"county_name": "WESTCHESTER"
},
{
"hospital_name": "WOOSTER COMMUNITY HOSPITAL",
"phone_number": {
"phone_number": "3302638100"
},
"zip_code": "44691",
"measure": "CLABSI Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-81.93420583646514",
"latitude": "40.82084997316656",
"human_address": "{\"address\":\"1761 BEALL AVENUE\",\"city\":\"WOOSTER\",\"state\":\"OH\",\"zip\":\"44691\"}"
},
"provider_id": "360036",
"state": "OH",
"score": "0.482",
"address_1": "1761 BEALL AVENUE",
"city": "WOOSTER",
"footnote": "No data are available from the hospital for this measure",
"county_name": "WAYNE"
},
{
"hospital_name": "INGALLS MEMORIAL HOSPITAL",
"phone_number": {
"phone_number": "7083332300"
},
"zip_code": "60426",
"measure": "CLABSI Lower Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-87.65951470549629",
"latitude": "41.606641589487765",
"human_address": "{\"address\":\"ONE INGALLS DRIVE\",\"city\":\"HARVEY\",\"state\":\"IL\",\"zip\":\"60426\"}"
},
"provider_id": "140191",
"state": "IL",
"score": "0.008",
"address_1": "ONE INGALLS DRIVE",
"city": "HARVEY",
"county_name": "COOK"
},
{
"hospital_name": "PIONEERS MEMORIAL HEALTHCARE DISTRICT",
"phone_number": {
"phone_number": "7603513333"
},
"zip_code": "92227",
"measure": "CAUTI Urinary Catheter Days",
"location": {
"needs_recoding": false,
"longitude": "-115.55290781641477",
"latitude": "32.95999349170957",
"human_address": "{\"address\":\"207 WEST LEGION ROAD\",\"city\":\"BRAWLEY\",\"state\":\"CA\",\"zip\":\"92227\"}"
},
"provider_id": "050342",
"state": "CA",
"score": "792",
"address_1": "207 WEST LEGION ROAD",
"city": "BRAWLEY",
"footnote": "The lower limit of the confidence interval cannot be calculated if the number of observed infections equals zero",
"county_name": "IMPERIAL"
},
{
"hospital_name": "TEXAS HEALTH PRESBYTERIAN HOSPITAL DALLAS",
"phone_number": {
"phone_number": "2143456789"
},
"zip_code": "75231",
"measure": "SSI: Abdominal Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-96.76379274034329",
"latitude": "32.88304354692529",
"human_address": "{\"address\":\"8200 WALNUT HILL LANE\",\"city\":\"DALLAS\",\"state\":\"TX\",\"zip\":\"75231\"}"
},
"provider_id": "450462",
"state": "TX",
"score": "0",
"address_1": "8200 WALNUT HILL LANE",
"city": "DALLAS",
"footnote": "The lower limit of the confidence interval cannot be calculated if the number of observed infections equals zero",
"county_name": "DALLAS"
},
{
"hospital_name": "GOLDEN VALLEY MEMORIAL HOSPITAL",
"phone_number": {
"phone_number": "6608855511"
},
"zip_code": "64735",
"measure": "CLABSI Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-93.77095648102767",
"latitude": "38.3894339415308",
"human_address": "{\"address\":\"1600 N 2ND ST\",\"city\":\"CLINTON\",\"state\":\"MO\",\"zip\":\"64735\"}"
},
"provider_id": "260175",
"state": "MO",
"score": "0.727",
"address_1": "1600 N 2ND ST",
"city": "CLINTON",
"footnote": "No data are available from the hospital for this measure",
"county_name": "HENRY"
},
{
"hospital_name": "NORTH SHORE MEDICAL CENTER",
"phone_number": {
"phone_number": "9787411215"
},
"zip_code": "01970",
"measure": "CAUTI Upper Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-70.90909332334593",
"latitude": "42.51144948316647",
"human_address": "{\"address\":\"81 HIGHLAND AVENUE\",\"city\":\"SALEM\",\"state\":\"MA\",\"zip\":\"01970\"}"
},
"provider_id": "220035",
"state": "MA",
"score": "8.224",
"address_1": "81 HIGHLAND AVENUE",
"city": "SALEM",
"county_name": "ESSEX"
},
{
"hospital_name": "BRYAN MEDICAL CENTER",
"phone_number": {
"phone_number": "4024811111"
},
"zip_code": "68506",
"measure": "SSI: Colon Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-96.65363432052555",
"latitude": "40.79619955634348",
"human_address": "{\"address\":\"1600 SOUTH 48TH ST\",\"city\":\"LINCOLN\",\"state\":\"NE\",\"zip\":\"68506\"}"
},
"provider_id": "280003",
"state": "NE",
"score": "3",
"address_1": "1600 SOUTH 48TH ST",
"city": "LINCOLN",
"county_name": "LANCASTER"
},
{
"hospital_name": "MEMORIAL HOSPITAL PEMBROKE",
"phone_number": {
"phone_number": "9549629650"
},
"zip_code": "33024",
"measure": "SSI: Colon Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-80.24531503832094",
"latitude": "26.03092363522933",
"human_address": "{\"address\":\"7800 SHERIDAN ST\",\"city\":\"PEMBROKE PINES\",\"state\":\"FL\",\"zip\":\"33024\"}"
},
"provider_id": "100230",
"state": "FL",
"score": "1",
"address_1": "7800 SHERIDAN ST",
"city": "PEMBROKE PINES",
"county_name": "BROWARD"
},
{
"hospital_name": "MEDICAL CENTER OF ARLINGTON",
"phone_number": {
"phone_number": "8174653241"
},
"zip_code": "76015",
"measure": "Central-Line-Associated Blood Stream Infections (CLABSI)",
"location": {
"needs_recoding": false,
"longitude": "-97.11471766221631",
"latitude": "32.69196031219766",
"human_address": "{\"address\":\"3301 MATLOCK ROAD\",\"city\":\"ARLINGTON\",\"state\":\"TX\",\"zip\":\"76015\"}"
},
"provider_id": "450675",
"state": "TX",
"score": "1.12",
"address_1": "3301 MATLOCK ROAD",
"city": "ARLINGTON",
"county_name": "TARRANT"
},
{
"hospital_name": "ANSON COMMUNITY HOSPITAL",
"phone_number": {
"phone_number": "7046945131"
},
"zip_code": "28170",
"measure": "SSI: Colon Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-80.07549605952823",
"latitude": "34.96090360312894",
"human_address": "{\"address\":\"500 MORVEN ROAD\",\"city\":\"WADESBORO\",\"state\":\"NC\",\"zip\":\"28170\"}"
},
"provider_id": "340084",
"state": "NC",
"score": "0.023",
"address_1": "500 MORVEN ROAD",
"city": "WADESBORO",
"footnote": "No data are available from the hospital for this measure",
"county_name": "ANSON"
},
{
"hospital_name": "MEMORIAL HOSPITAL",
"phone_number": {
"phone_number": "9365644611"
},
"zip_code": "75961",
"measure": "SSI: Abdominal, Number of Procedures",
"location": {
"needs_recoding": false,
"longitude": "-94.64939362073473",
"latitude": "31.61382805336579",
"human_address": "{\"address\":\"1204 MOUND ST\",\"city\":\"NACOGDOCHES\",\"state\":\"TX\",\"zip\":\"75961\"}"
},
"provider_id": "450508",
"state": "TX",
"score": "7",
"address_1": "1204 MOUND ST",
"city": "NACOGDOCHES",
"footnote": "No data are available from the hospital for this measure",
"county_name": "NACOGDOCHES"
},
{
"hospital_name": "PLATTE COUNTY MEMORIAL HOSPITAL",
"phone_number": {
"phone_number": "3073223636"
},
"zip_code": "82201",
"measure": "SSI: Abdominal, Number of Procedures",
"location": {
"needs_recoding": false,
"longitude": "-104.96027808697544",
"latitude": "42.049781620103325",
"human_address": "{\"address\":\"201 14TH STREET\",\"city\":\"WHEATLAND\",\"state\":\"WY\",\"zip\":\"82201\"}"
},
"provider_id": "531305",
"state": "WY",
"score": "0",
"address_1": "201 14TH STREET",
"city": "WHEATLAND",
"footnote": "No data are available from the hospital for this measure",
"county_name": "PLATTE"
},
{
"hospital_name": "MEDICAL COLLEGE OF GA HOSPITALS AND CLINICS",
"phone_number": {
"phone_number": "7067216569"
},
"zip_code": "30912",
"measure": "CAUTI Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-81.99137569612343",
"latitude": "33.47102451208252",
"human_address": "{\"address\":\"1120 15TH STREET\",\"city\":\"AUGUSTA\",\"state\":\"GA\",\"zip\":\"30912\"}"
},
"provider_id": "110034",
"state": "GA",
"score": "21",
"address_1": "1120 15TH STREET",
"city": "AUGUSTA",
"county_name": "RICHMOND"
},
{
"hospital_name": "TRUMBULL MEMORIAL HOSPITAL",
"phone_number": {
"phone_number": "3308419011"
},
"zip_code": "44482",
"measure": "CLABSI Upper Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-80.79854197786511",
"latitude": "41.236435676126405",
"human_address": "{\"address\":\"1350 EAST MARKET STREET\",\"city\":\"WARREN\",\"state\":\"OH\",\"zip\":\"44482\"}"
},
"provider_id": "360055",
"state": "OH",
"score": "0.902",
"address_1": "1350 EAST MARKET STREET",
"city": "WARREN",
"footnote": "The lower limit of the confidence interval cannot be calculated if the number of observed infections equals zero",
"county_name": "TRUMBULL"
},
{
"hospital_name": "HENRY FORD MACOMB HOSPITAL",
"phone_number": {
"phone_number": "5862632300"
},
"zip_code": "48038",
"measure": "CLABSI Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-82.94479000035807",
"latitude": "42.60542000033291",
"human_address": "{\"address\":\"15855 NINETEEN MILE RD\",\"city\":\"CLINTON TOWNSHIP\",\"state\":\"MI\",\"zip\":\"48038\"}"
},
"provider_id": "230047",
"state": "MI",
"score": "9",
"address_1": "15855 NINETEEN MILE RD",
"city": "CLINTON TOWNSHIP",
"county_name": "MACOMB"
},
{
"hospital_name": "BERKSHIRE MEDICAL CENTER INC",
"phone_number": {
"phone_number": "4134472000"
},
"zip_code": "01201",
"measure": "SSI: Abdominal Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-73.24849072494374",
"latitude": "42.45923484614531",
"human_address": "{\"address\":\"725 NORTH STREET\",\"city\":\"PITTSFIELD\",\"state\":\"MA\",\"zip\":\"01201\"}"
},
"provider_id": "220046",
"state": "MA",
"score": "0.162",
"address_1": "725 NORTH STREET",
"city": "PITTSFIELD",
"footnote": "No data are available from the hospital for this measure",
"county_name": "BERKSHIRE"
},
{
"hospital_name": "GEISINGER MEDICAL CENTER",
"phone_number": {
"phone_number": "5702716211"
},
"zip_code": "17822",
"measure": "SSI: Abdominal Upper Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-76.60373650367721",
"latitude": "40.9657562901527",
"human_address": "{\"address\":\"100 NORTH ACADEMY AVENUE\",\"city\":\"DANVILLE\",\"state\":\"PA\",\"zip\":\"17822\"}"
},
"provider_id": "390006",
"state": "PA",
"score": "6.468",
"address_1": "100 NORTH ACADEMY AVENUE",
"city": "DANVILLE",
"county_name": "MONTOUR"
},
{
"hospital_name": "ST JOSEPH HOSPITAL",
"phone_number": {
"phone_number": "7146339111"
},
"zip_code": "92868",
"measure": "SSI: Colon Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-117.8648548459692",
"latitude": "33.78231510407045",
"human_address": "{\"address\":\"1100 WEST STEWART DR\",\"city\":\"ORANGE\",\"state\":\"CA\",\"zip\":\"92868\"}"
},
"provider_id": "050069",
"state": "CA",
"score": "4.229",
"address_1": "1100 WEST STEWART DR",
"city": "ORANGE",
"county_name": "ORANGE"
},
{
"hospital_name": "WAYNE MEMORIAL HOSPITAL",
"phone_number": {
"phone_number": "9197361110"
},
"zip_code": "27534",
"measure": "SSI: Colon Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-77.95324663924204",
"latitude": "35.40075927835392",
"human_address": "{\"address\":\"2700 WAYNE MEMORIAL DR\",\"city\":\"GOLDSBORO\",\"state\":\"NC\",\"zip\":\"27534\"}"
},
"provider_id": "340010",
"state": "NC",
"score": "0",
"address_1": "2700 WAYNE MEMORIAL DR",
"city": "GOLDSBORO",
"footnote": "The lower limit of the confidence interval cannot be calculated if the number of observed infections equals zero",
"county_name": "WAYNE"
},
{
"hospital_name": "BEVERLY HOSPITAL CORPORATION",
"phone_number": {
"phone_number": "9789223000"
},
"zip_code": "01915",
"measure": "SSI: Colon, Number of Procedures",
"location": {
"needs_recoding": false,
"longitude": "-70.87710796423835",
"latitude": "42.56541597723236",
"human_address": "{\"address\":\"85 HERRICK STREET\",\"city\":\"BEVERLY\",\"state\":\"MA\",\"zip\":\"01915\"}"
},
"provider_id": "220033",
"state": "MA",
"score": "52",
"address_1": "85 HERRICK STREET",
"city": "BEVERLY",
"footnote": "The lower limit of the confidence interval cannot be calculated if the number of observed infections equals zero",
"county_name": "ESSEX"
},
{
"hospital_name": "MEDCENTRAL HEALTH SYSTEM MANSFIELD HOSPITAL",
"phone_number": {
"phone_number": "4195268000"
},
"zip_code": "44903",
"measure": "SSI: Abdominal Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-82.52802817241195",
"latitude": "40.75339182774877",
"human_address": "{\"address\":\"335 GLESSNER AVENUE\",\"city\":\"MANSFIELD\",\"state\":\"OH\",\"zip\":\"44903\"}"
},
"provider_id": "360118",
"state": "OH",
"score": "0.655",
"address_1": "335 GLESSNER AVENUE",
"city": "MANSFIELD",
"footnote": "No data are available from the hospital for this measure",
"county_name": "RICHLAND"
},
{
"hospital_name": "HUNTERDON MEDICAL CENTER",
"phone_number": {
"phone_number": "9087886100"
},
"zip_code": "08822",
"measure": "Central-Line-Associated Blood Stream Infections (CLABSI)",
"location": {
"needs_recoding": false,
"longitude": "-74.86047582694827",
"latitude": "40.53256492698876",
"human_address": "{\"address\":\"2100 WESCOTT DRIVE\",\"city\":\"FLEMINGTON\",\"state\":\"NJ\",\"zip\":\"08822\"}"
},
"provider_id": "310005",
"state": "NJ",
"score": "0.00",
"address_1": "2100 WESCOTT DRIVE",
"city": "FLEMINGTON",
"footnote": "The lower limit of the confidence interval cannot be calculated if the number of observed infections equals zero",
"county_name": "HUNTERDON"
},
{
"hospital_name": "ATRIUM MEDICAL CENTER",
"phone_number": {
"phone_number": "5134205102"
},
"zip_code": "45005",
"measure": "SSI: Colon Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-84.31504832538722",
"latitude": "39.49797432615501",
"human_address": "{\"address\":\"ONE MEDICAL CENTER DRIVE\",\"city\":\"FRANKLIN\",\"state\":\"OH\",\"zip\":\"45005\"}"
},
"provider_id": "360076",
"state": "OH",
"score": "0",
"address_1": "ONE MEDICAL CENTER DRIVE",
"city": "FRANKLIN",
"footnote": "The lower limit of the confidence interval cannot be calculated if the number of observed infections equals zero",
"county_name": "WARREN"
},
{
"hospital_name": "WINN PARISH MEDICAL CENTER",
"phone_number": {
"phone_number": "3186483000"
},
"zip_code": "71483",
"measure": "SSI: Abdominal, Number of Procedures",
"location": {
"needs_recoding": false,
"longitude": "-92.64506584045209",
"latitude": "31.924917949141363",
"human_address": "{\"address\":\"301 W BOUNDARY STREET\",\"city\":\"WINNFIELD\",\"state\":\"LA\",\"zip\":\"71483\"}"
},
"provider_id": "190090",
"state": "LA",
"score": "0",
"address_1": "301 W BOUNDARY STREET",
"city": "WINNFIELD",
"footnote": "No data are available from the hospital for this measure",
"county_name": "WINN"
},
{
"hospital_name": "IOWA METHODIST MEDICAL CENTER",
"phone_number": {
"phone_number": "5152416212"
},
"zip_code": "50309",
"measure": "CAUTI Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-93.63318469465479",
"latitude": "41.59068301129414",
"human_address": "{\"address\":\"1200 PLEASANT STREET\",\"city\":\"DES MOINES\",\"state\":\"IA\",\"zip\":\"50309\"}"
},
"provider_id": "160082",
"state": "IA",
"score": "6.014",
"address_1": "1200 PLEASANT STREET",
"city": "DES MOINES",
"county_name": "POLK"
},
{
"hospital_name": "OPELOUSAS GENERAL HEALTH SYSTEM",
"phone_number": {
"phone_number": "3379483011"
},
"zip_code": "70570",
"measure": "SSI: Colon Upper Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-92.07608253484653",
"latitude": "30.54359090735481",
"human_address": "{\"address\":\"539 EAST PRUDHOMME STREET\",\"city\":\"OPELOUSAS\",\"state\":\"LA\",\"zip\":\"70570\"}"
},
"provider_id": "190017",
"state": "LA",
"score": "3.326",
"address_1": "539 EAST PRUDHOMME STREET",
"city": "OPELOUSAS",
"footnote": "The lower limit of the confidence interval cannot be calculated if the number of observed infections equals zero",
"county_name": "SAINT LANDRY"
},
{
"hospital_name": "MUSC MEDICAL CENTER",
"phone_number": {
"phone_number": "8437922300"
},
"zip_code": "29425",
"measure": "Central-Line-Associated Blood Stream Infections (CLABSI)",
"location": {
"needs_recoding": false,
"longitude": "-79.94673351025432",
"latitude": "32.785486761411434",
"human_address": "{\"address\":\"169 ASHLEY AVE\",\"city\":\"CHARLESTON\",\"state\":\"SC\",\"zip\":\"29425\"}"
},
"provider_id": "420004",
"state": "SC",
"score": "0.48",
"address_1": "169 ASHLEY AVE",
"city": "CHARLESTON",
"county_name": "CHARLESTON"
},
{
"hospital_name": "CLINCH VALLEY MEDICAL CENTER",
"phone_number": {
"phone_number": "2765966000"
},
"zip_code": "24641",
"measure": "SSI: Abdominal Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-81.81298209213388",
"latitude": "37.09410581441338",
"human_address": "{\"address\":\"2949 WEST FRONT STREET\",\"city\":\"RICHLANDS\",\"state\":\"VA\",\"zip\":\"24641\"}"
},
"provider_id": "490060",
"state": "VA",
"score": "0",
"address_1": "2949 WEST FRONT STREET",
"city": "RICHLANDS",
"footnote": "No data are available from the hospital for this measure",
"county_name": "TAZEWELL"
},
{
"hospital_name": "ADVENTIST MEDICAL CENTER",
"phone_number": {
"phone_number": "5595829000"
},
"zip_code": "93230",
"measure": "CAUTI Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-119.6683885422639",
"latitude": "36.32562226111374",
"human_address": "{\"address\":\"115 MALL DRIVE\",\"city\":\"HANFORD\",\"state\":\"CA\",\"zip\":\"93230\"}"
},
"provider_id": "050121",
"state": "CA",
"score": "1.774",
"address_1": "115 MALL DRIVE",
"city": "HANFORD",
"county_name": "KINGS"
},
{
"hospital_name": "PROVIDENCE ST VINCENT MEDICAL CENTER",
"phone_number": {
"phone_number": "5032161234"
},
"zip_code": "97225",
"measure": "SSI: Abdominal, Number of Procedures",
"location": {
"needs_recoding": false,
"longitude": "-122.77140295308504",
"latitude": "45.50893477292482",
"human_address": "{\"address\":\"9205 SW BARNES ROAD\",\"city\":\"PORTLAND\",\"state\":\"OR\",\"zip\":\"97225\"}"
},
"provider_id": "380004",
"state": "OR",
"score": "143",
"address_1": "9205 SW BARNES ROAD",
"city": "PORTLAND",
"footnote": "The lower limit of the confidence interval cannot be calculated if the number of observed infections equals zero",
"county_name": "WASHINGTON"
},
{
"hospital_name": "CHAMBERSBURG HOSPITAL",
"phone_number": {
"phone_number": "7172673000"
},
"zip_code": "17201",
"measure": "SSI: Colon Upper Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-77.64766323650427",
"latitude": "39.93446770360643",
"human_address": "{\"address\":\"112 NORTH SEVENTH STREET\",\"city\":\"CHAMBERSBURG\",\"state\":\"PA\",\"zip\":\"17201\"}"
},
"provider_id": "390151",
"state": "PA",
"score": "2.061",
"address_1": "112 NORTH SEVENTH STREET",
"city": "CHAMBERSBURG",
"footnote": "The lower limit of the confidence interval cannot be calculated if the number of observed infections equals zero",
"county_name": "FRANKLIN"
},
{
"hospital_name": "PROVIDENCE SEASIDE HOSPITAL",
"phone_number": {
"phone_number": "5037177000"
},
"zip_code": "97138",
"measure": "CAUTI Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-123.91474171253863",
"latitude": "45.9893801472728",
"human_address": "{\"address\":\"725 S WAHANNA ROAD\",\"city\":\"SEASIDE\",\"state\":\"OR\",\"zip\":\"97138\"}"
},
"provider_id": "381303",
"state": "OR",
"score": "0",
"address_1": "725 S WAHANNA ROAD",
"city": "SEASIDE",
"footnote": "No data are available from the hospital for this measure",
"county_name": "CLATSOP"
},
{
"hospital_name": "DOCTORS HOSPITAL INC",
"phone_number": {
"phone_number": "3056662111"
},
"zip_code": "33146",
"measure": "SSI: Abdominal Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-80.27323898733067",
"latitude": "25.72462354527005",
"human_address": "{\"address\":\"5000 UNIVERSITY DR\",\"city\":\"CORAL GABLES\",\"state\":\"FL\",\"zip\":\"33146\"}"
},
"provider_id": "100296",
"state": "FL",
"score": "0.237",
"address_1": "5000 UNIVERSITY DR",
"city": "CORAL GABLES",
"footnote": "No data are available from the hospital for this measure",
"county_name": "MIAMI-DADE"
},
{
"hospital_name": "BOTSFORD HOSPITAL",
"phone_number": {
"phone_number": "2484718000"
},
"zip_code": "48336",
"measure": "SSI: Abdominal Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-83.3240876257053",
"latitude": "42.44343770576864",
"human_address": "{\"address\":\"28050 GRAND RIVER AVENUE\",\"city\":\"FARMINGTON HILLS\",\"state\":\"MI\",\"zip\":\"48336\"}"
},
"provider_id": "230151",
"state": "MI",
"score": "0",
"address_1": "28050 GRAND RIVER AVENUE",
"city": "FARMINGTON HILLS",
"footnote": "No data are available from the hospital for this measure",
"county_name": "OAKLAND"
},
{
"hospital_name": "GRAND LAKE HEALTH SYSTEM",
"phone_number": {
"phone_number": "4193943335"
},
"zip_code": "45885",
"measure": "SSI: Colon Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-84.36999672349252",
"latitude": "40.544807298264786",
"human_address": "{\"address\":\"200 SAINT CLAIR STREET\",\"city\":\"SAINT MARYS\",\"state\":\"OH\",\"zip\":\"45885\"}"
},
"provider_id": "360032",
"state": "OH",
"score": "0.162",
"address_1": "200 SAINT CLAIR STREET",
"city": "SAINT MARYS",
"footnote": "No data are available from the hospital for this measure",
"county_name": "AUGLAIZE"
},
{
"hospital_name": "MATAGORDA REGIONAL MEDICAL CENTER",
"phone_number": {
"phone_number": "9792456383"
},
"zip_code": "77414",
"measure": "SSI: Colon, Number of Procedures",
"location": {
"needs_recoding": false,
"longitude": "-95.99128713624403",
"latitude": "28.982771412863293",
"human_address": "{\"address\":\"104 7TH STREET\",\"city\":\"BAY CITY\",\"state\":\"TX\",\"zip\":\"77414\"}"
},
"provider_id": "450465",
"state": "TX",
"score": "7",
"address_1": "104 7TH STREET",
"city": "BAY CITY",
"footnote": "No data are available from the hospital for this measure",
"county_name": "MATAGORDA"
},
{
"hospital_name": "EASTERN MAINE MEDICAL CENTER",
"phone_number": {
"phone_number": "2079737000"
},
"zip_code": "04401",
"measure": "SSI: Colon Lower Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-68.74968287821919",
"latitude": "44.80989814339762",
"human_address": "{\"address\":\"489 STATE ST, PO BOX 404\",\"city\":\"BANGOR\",\"state\":\"ME\",\"zip\":\"04401\"}"
},
"provider_id": "200033",
"state": "ME",
"score": "0.011",
"address_1": "489 STATE ST, PO BOX 404",
"city": "BANGOR",
"county_name": "PENOBSCOT"
},
{
"hospital_name": "RESTON HOSPITAL CENTER",
"phone_number": {
"phone_number": "7036899000"
},
"zip_code": "20190",
"measure": "CLABSI Upper Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-77.36293224979516",
"latitude": "38.96150172552102",
"human_address": "{\"address\":\"1850 TOWN CENTER PARKWAY\",\"city\":\"RESTON\",\"state\":\"VA\",\"zip\":\"20190\"}"
},
"provider_id": "490107",
"state": "VA",
"score": "1.051",
"address_1": "1850 TOWN CENTER PARKWAY",
"city": "RESTON",
"county_name": "FAIRFAX"
},
{
"hospital_name": "HUTCHESON MEDICAL CENTER",
"phone_number": {
"phone_number": "7068582101"
},
"zip_code": "30742",
"measure": "SSI: Abdominal Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-85.24617999960714",
"latitude": "34.94846000042884",
"human_address": "{\"address\":\"100 GROSS CRESCENT\",\"city\":\"FORT OGLETHORPE\",\"state\":\"GA\",\"zip\":\"30742\"}"
},
"provider_id": "110004",
"state": "GA",
"score": "0",
"address_1": "100 GROSS CRESCENT",
"city": "FORT OGLETHORPE",
"footnote": "No data are available from the hospital for this measure",
"county_name": "CATOOSA"
},
{
"hospital_name": "CENTURA HEALTH-AVISTA ADVENTIST HOSPITAL",
"phone_number": {
"phone_number": "3036731000"
},
"zip_code": "80027",
"measure": "CAUTI Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-105.15122924995808",
"latitude": "39.95139442845965",
"human_address": "{\"address\":\"100 HEALTH PARK DRIVE\",\"city\":\"LOUISVILLE\",\"state\":\"CO\",\"zip\":\"80027\"}"
},
"provider_id": "060103",
"state": "CO",
"score": "0.386",
"address_1": "100 HEALTH PARK DRIVE",
"city": "LOUISVILLE",
"footnote": "No data are available from the hospital for this measure",
"county_name": "BOULDER"
},
{
"hospital_name": "CARLSBAD MEDICAL CENTER",
"phone_number": {
"phone_number": "5758874570"
},
"zip_code": "88220",
"measure": "SSI: Colon Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-104.25833672414524",
"latitude": "32.441639195980876",
"human_address": "{\"address\":\"2430 WEST PIERCE STREET\",\"city\":\"CARLSBAD\",\"state\":\"NM\",\"zip\":\"88220\"}"
},
"provider_id": "320063",
"state": "NM",
"score": "0.811",
"address_1": "2430 WEST PIERCE STREET",
"city": "CARLSBAD",
"footnote": "No data are available from the hospital for this measure",
"county_name": "EDDY"
},
{
"hospital_name": "EAST ORANGE GENERAL HOSPITAL",
"phone_number": {
"phone_number": "9732664401"
},
"zip_code": "07018",
"measure": "CLABSI Lower Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-74.21379601153347",
"latitude": "40.75408430571133",
"human_address": "{\"address\":\"300 CENTRAL AVE\",\"city\":\"EAST ORANGE\",\"state\":\"NJ\",\"zip\":\"07018\"}"
},
"provider_id": "310083",
"state": "NJ",
"score": "0.005",
"address_1": "300 CENTRAL AVE",
"city": "EAST ORANGE",
"county_name": "ESSEX"
},
{
"hospital_name": "MORTON HOSPITAL",
"phone_number": {
"phone_number": "5088287000"
},
"zip_code": "02780",
"measure": "SSI: Abdominal, Number of Procedures",
"location": {
"needs_recoding": false,
"longitude": "-71.09487526815872",
"latitude": "41.905243482876244",
"human_address": "{\"address\":\"88 WASHINGTON STREET\",\"city\":\"TAUNTON\",\"state\":\"MA\",\"zip\":\"02780\"}"
},
"provider_id": "220073",
"state": "MA",
"score": "10",
"address_1": "88 WASHINGTON STREET",
"city": "TAUNTON",
"footnote": "No data are available from the hospital for this measure",
"county_name": "BRISTOL"
},
{
"hospital_name": "BERWICK HOSPITAL CENTER",
"phone_number": {
"phone_number": "5707595000"
},
"zip_code": "18603",
"measure": "SSI: Abdominal Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-76.23104578390145",
"latitude": "41.07015327624766",
"human_address": "{\"address\":\"701 EAST 16TH STREET\",\"city\":\"BERWICK\",\"state\":\"PA\",\"zip\":\"18603\"}"
},
"provider_id": "390072",
"state": "PA",
"score": "0",
"address_1": "701 EAST 16TH STREET",
"city": "BERWICK",
"footnote": "No data are available from the hospital for this measure",
"county_name": "COLUMBIA"
},
{
"hospital_name": "SEVEN RIVERS REGIONAL MEDICAL CENTER",
"phone_number": {
"phone_number": "3527956560"
},
"zip_code": "34428",
"measure": "SSI: Colon, Number of Procedures",
"location": {
"needs_recoding": false,
"longitude": "-82.62608125326653",
"latitude": "28.951426959279615",
"human_address": "{\"address\":\"6201 N SUNCOAST BLVD\",\"city\":\"CRYSTAL RIVER\",\"state\":\"FL\",\"zip\":\"34428\"}"
},
"provider_id": "100249",
"state": "FL",
"score": "22",
"address_1": "6201 N SUNCOAST BLVD",
"city": "CRYSTAL RIVER",
"footnote": "No data are available from the hospital for this measure",
"county_name": "CITRUS"
},
{
"hospital_name": "SOUTHAMPTON MEMORIAL HOSPITAL",
"phone_number": {
"phone_number": "7575696100"
},
"zip_code": "23851",
"measure": "SSI: Abdominal Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-76.93618361221324",
"latitude": "36.69099205974388",
"human_address": "{\"address\":\"100 FAIRVIEW DRIVE\",\"city\":\"FRANKLIN\",\"state\":\"VA\",\"zip\":\"23851\"}"
},
"provider_id": "490092",
"state": "VA",
"score": "0.148",
"address_1": "100 FAIRVIEW DRIVE",
"city": "FRANKLIN",
"footnote": "No data are available from the hospital for this measure",
"county_name": "FRANKLIN CITY"
},
{
"hospital_name": "ST FRANCIS MEDICAL CENTER",
"phone_number": {
"phone_number": "5733313000"
},
"zip_code": "63703",
"measure": "CLABSI Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-89.57213590980645",
"latitude": "37.3020732557419",
"human_address": "{\"address\":\"211 ST FRANCIS DR\",\"city\":\"CAPE GIRARDEAU\",\"state\":\"MO\",\"zip\":\"63703\"}"
},
"provider_id": "260183",
"state": "MO",
"score": "7.664",
"address_1": "211 ST FRANCIS DR",
"city": "CAPE GIRARDEAU",
"county_name": "CAPE GIRARDEAU"
},
{
"hospital_name": "UNIVERSITY OF KANSAS HOSPITAL",
"phone_number": {
"phone_number": "9135887332"
},
"zip_code": "66160",
"measure": "SSI: Colon Lower Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-94.6117776123217",
"latitude": "39.057261487268704",
"human_address": "{\"address\":\"3901 RAINBOW BLVD\",\"city\":\"KANSAS CITY\",\"state\":\"KS\",\"zip\":\"66160\"}"
},
"provider_id": "170040",
"state": "KS",
"score": "0.053",
"address_1": "3901 RAINBOW BLVD",
"city": "KANSAS CITY",
"county_name": "WYANDOTTE"
},
{
"hospital_name": "BAPTIST HEALTH MEDICAL CENTER NORTH LITTLE ROCK",
"phone_number": {
"phone_number": "5012023000"
},
"zip_code": "72117",
"measure": "SSI: Abdominal Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-92.21829642879614",
"latitude": "34.78342696645051",
"human_address": "{\"address\":\"3333 SPRINGHILL DRIVE\",\"city\":\"NORTH LITTLE ROCK\",\"state\":\"AR\",\"zip\":\"72117\"}"
},
"provider_id": "040036",
"state": "AR",
"score": "0",
"address_1": "3333 SPRINGHILL DRIVE",
"city": "NORTH LITTLE ROCK",
"footnote": "No data are available from the hospital for this measure",
"county_name": "PULASKI"
},
{
"hospital_name": "ST MARYS HOSPITAL AND MEDICAL CENTER",
"phone_number": {
"phone_number": "9702442273"
},
"zip_code": "81502",
"measure": "CLABSI Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-108.56144939184338",
"latitude": "39.09050942269192",
"human_address": "{\"address\":\"2635 N 7TH STREET\",\"city\":\"GRAND JUNCTION\",\"state\":\"CO\",\"zip\":\"81502\"}"
},
"provider_id": "060023",
"state": "CO",
"score": "4",
"address_1": "2635 N 7TH STREET",
"city": "GRAND JUNCTION",
"county_name": "MESA"
},
{
"hospital_name": "OAKWOOD HERITAGE HOSPITAL",
"phone_number": {
"phone_number": "3132955253"
},
"zip_code": "48180",
"measure": "Central-Line-Associated Blood Stream Infections (CLABSI)",
"location": {
"needs_recoding": false,
"longitude": "-83.2697269660994",
"latitude": "42.23329658756897",
"human_address": "{\"address\":\"10000 TELEGRAPH ROAD\",\"city\":\"TAYLOR\",\"state\":\"MI\",\"zip\":\"48180\"}"
},
"provider_id": "230270",
"state": "MI",
"score": "0.33",
"address_1": "10000 TELEGRAPH ROAD",
"city": "TAYLOR",
"county_name": "WAYNE"
},
{
"hospital_name": "EAST JEFFERSON GENERAL HOSPITAL",
"phone_number": {
"phone_number": "5044544000"
},
"zip_code": "70006",
"measure": "CAUTI Urinary Catheter Days",
"location": {
"needs_recoding": false,
"longitude": "-90.18157391561276",
"latitude": "30.01431372024289",
"human_address": "{\"address\":\"4200 HOUMA BLVD\",\"city\":\"METAIRIE\",\"state\":\"LA\",\"zip\":\"70006\"}"
},
"provider_id": "190146",
"state": "LA",
"score": "3431",
"address_1": "4200 HOUMA BLVD",
"city": "METAIRIE",
"county_name": "JEFFERSON"
},
{
"hospital_name": "SIERRA PROVIDENCE EAST MEDICAL CENTER",
"phone_number": {
"phone_number": "9158567349"
},
"zip_code": "79938",
"measure": "CAUTI Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-106.26762963069046",
"latitude": "31.790217883747687",
"human_address": "{\"address\":\"3280 JOE BATTLE BLVD\",\"city\":\"EL PASO\",\"state\":\"TX\",\"zip\":\"79938\"}"
},
"provider_id": "670047",
"state": "TX",
"score": "0",
"address_1": "3280 JOE BATTLE BLVD",
"city": "EL PASO",
"footnote": "The lower limit of the confidence interval cannot be calculated if the number of observed infections equals zero",
"county_name": "EL PASO"
},
{
"hospital_name": "ST JOHN HOSPITAL AND MEDICAL CENTER",
"phone_number": {
"phone_number": "3133434000"
},
"zip_code": "48236",
"measure": "Catheter-Associated Urinary Tract Infections (CAUTI)",
"location": {
"needs_recoding": false,
"longitude": "-82.91490751619654",
"latitude": "42.41899917855443",
"human_address": "{\"address\":\"22101 MOROSS RD\",\"city\":\"DETROIT\",\"state\":\"MI\",\"zip\":\"48236\"}"
},
"provider_id": "230165",
"state": "MI",
"score": "1.10",
"address_1": "22101 MOROSS RD",
"city": "DETROIT",
"county_name": "WAYNE"
},
{
"hospital_name": "WINDBER HOSPITAL",
"phone_number": {
"phone_number": "8144673000"
},
"zip_code": "15963",
"measure": "SSI: Abdominal, Number of Procedures",
"location": {
"needs_recoding": false,
"longitude": "-78.8380289472114",
"latitude": "40.2421991998541",
"human_address": "{\"address\":\"600 SOMERSET AVENUE\",\"city\":\"WINDBER\",\"state\":\"PA\",\"zip\":\"15963\"}"
},
"provider_id": "390112",
"state": "PA",
"score": "9",
"address_1": "600 SOMERSET AVENUE",
"city": "WINDBER",
"footnote": "No data are available from the hospital for this measure",
"county_name": "SOMERSET"
},
{
"hospital_name": "OHIO VALLEY MEDICAL CENTER",
"phone_number": {
"phone_number": "3042340123"
},
"zip_code": "26003",
"measure": "SSI: Colon, Number of Procedures",
"location": {
"needs_recoding": false,
"longitude": "-80.72145774367463",
"latitude": "40.06005078420934",
"human_address": "{\"address\":\"2000 EOFF STREET\",\"city\":\"WHEELING\",\"state\":\"WV\",\"zip\":\"26003\"}"
},
"provider_id": "510039",
"state": "WV",
"score": "11",
"address_1": "2000 EOFF STREET",
"city": "WHEELING",
"footnote": "No data are available from the hospital for this measure",
"county_name": "OHIO"
},
{
"hospital_name": "IOWA LUTHERAN HOSPITAL",
"phone_number": {
"phone_number": "5152635612"
},
"zip_code": "50316",
"measure": "CAUTI Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-93.61018468184972",
"latitude": "41.600409287824675",
"human_address": "{\"address\":\"700 EAST UNIVERSITY AVENUE\",\"city\":\"DES MOINES\",\"state\":\"IA\",\"zip\":\"50316\"}"
},
"provider_id": "160024",
"state": "IA",
"score": "0",
"address_1": "700 EAST UNIVERSITY AVENUE",
"city": "DES MOINES",
"footnote": "No data are available from the hospital for this measure",
"county_name": "POLK"
},
{
"hospital_name": "SKYRIDGE MEDICAL CENTER",
"phone_number": {
"phone_number": "4233394132"
},
"zip_code": "37311",
"measure": "CAUTI Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-84.86844180790285",
"latitude": "35.17705565287122",
"human_address": "{\"address\":\"2305 CHAMBLISS AVE NW\",\"city\":\"CLEVELAND\",\"state\":\"TN\",\"zip\":\"37311\"}"
},
"provider_id": "440185",
"state": "TN",
"score": "4.551",
"address_1": "2305 CHAMBLISS AVE NW",
"city": "CLEVELAND",
"county_name": "BRADLEY"
},
{
"hospital_name": "SISTERS OF CHARITY HOSPITAL",
"phone_number": {
"phone_number": "7168621000"
},
"zip_code": "14214",
"measure": "Catheter-Associated Urinary Tract Infections (CAUTI)",
"location": {
"needs_recoding": false,
"longitude": "-78.84964818782998",
"latitude": "42.92941838950395",
"human_address": "{\"address\":\"2157 MAIN STREET\",\"city\":\"BUFFALO\",\"state\":\"NY\",\"zip\":\"14214\"}"
},
"provider_id": "330078",
"state": "NY",
"score": "0.81",
"address_1": "2157 MAIN STREET",
"city": "BUFFALO",
"county_name": "ERIE"
},
{
"hospital_name": "DALLAS MEDICAL CENTER",
"phone_number": {
"phone_number": "9722471000"
},
"zip_code": "75234",
"measure": "SSI: Colon, Number of Procedures",
"location": {
"needs_recoding": false,
"longitude": "-96.87013710585927",
"latitude": "32.91500893901349",
"human_address": "{\"address\":\"7 MEDICAL PARKWAY\",\"city\":\"DALLAS\",\"state\":\"TX\",\"zip\":\"75234\"}"
},
"provider_id": "450379",
"state": "TX",
"score": "5",
"address_1": "7 MEDICAL PARKWAY",
"city": "DALLAS",
"footnote": "No data are available from the hospital for this measure",
"county_name": "DALLAS"
},
{
"hospital_name": "JOHN C LINCOLN DEER VALLEY HOSPITAL",
"phone_number": {
"phone_number": "6238795574"
},
"zip_code": "85027",
"measure": "Surgical Site Infection from colon surgery (SSI: Colon)",
"location": {
"needs_recoding": false,
"longitude": "-112.11720681773028",
"latitude": "33.66557411144697",
"human_address": "{\"address\":\"19829 NORTH 27TH AVENUE\",\"city\":\"PHOENIX\",\"state\":\"AZ\",\"zip\":\"85027\"}"
},
"provider_id": "030092",
"state": "AZ",
"score": "0.53",
"address_1": "19829 NORTH 27TH AVENUE",
"city": "PHOENIX",
"county_name": "MARICOPA"
},
{
"hospital_name": "SANTA MONICA - UCLA MED CTR & ORTHOPAEDIC HOSPITAL",
"phone_number": {
"phone_number": "3103194000"
},
"zip_code": "90404",
"measure": "Catheter-Associated Urinary Tract Infections (CAUTI)",
"location": {
"needs_recoding": false,
"longitude": "-118.48621897365952",
"latitude": "34.02757611553903",
"human_address": "{\"address\":\"1250 16TH STREET\",\"city\":\"SANTA MONICA\",\"state\":\"CA\",\"zip\":\"90404\"}"
},
"provider_id": "050112",
"state": "CA",
"score": "0.58",
"address_1": "1250 16TH STREET",
"city": "SANTA MONICA",
"county_name": "LOS ANGELES"
},
{
"hospital_name": "EL CENTRO REGIONAL MEDICAL CENTER",
"phone_number": {
"phone_number": "7603397100"
},
"zip_code": "92243",
"measure": "CAUTI Upper Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-115.56940731194334",
"latitude": "32.78145961766245",
"human_address": "{\"address\":\"1415 ROSS AVENUE\",\"city\":\"EL CENTRO\",\"state\":\"CA\",\"zip\":\"92243\"}"
},
"provider_id": "050045",
"state": "CA",
"score": "5.224",
"address_1": "1415 ROSS AVENUE",
"city": "EL CENTRO",
"county_name": "IMPERIAL"
},
{
"hospital_name": "PIEDMONT HOSPITAL",
"phone_number": {
"phone_number": "4046055000"
},
"zip_code": "30309",
"measure": "Central-Line-Associated Blood Stream Infections (CLABSI)",
"location": {
"needs_recoding": false,
"longitude": "-84.39359977643244",
"latitude": "33.80837745647955",
"human_address": "{\"address\":\"1968 PEACHTREE RD NW\",\"city\":\"ATLANTA\",\"state\":\"GA\",\"zip\":\"30309\"}"
},
"provider_id": "110083",
"state": "GA",
"score": "1.36",
"address_1": "1968 PEACHTREE RD NW",
"city": "ATLANTA",
"county_name": "FULTON"
},
{
"hospital_name": "ESSENTIA HEALTH ST MARY'S MEDICAL CENTER",
"phone_number": {
"phone_number": "2187864000"
},
"zip_code": "55805",
"measure": "SSI: Colon Lower Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-92.0963715537205",
"latitude": "46.792935305131856",
"human_address": "{\"address\":\"407 EAST THIRD STREET\",\"city\":\"DULUTH\",\"state\":\"MN\",\"zip\":\"55805\"}"
},
"provider_id": "240002",
"state": "MN",
"score": "0.008",
"address_1": "407 EAST THIRD STREET",
"city": "DULUTH",
"county_name": "SAINT LOUIS"
},
{
"hospital_name": "MIDMICHIGAN MEDICAL CENTER-MIDLAND",
"phone_number": {
"phone_number": "9898393000"
},
"zip_code": "48670",
"measure": "CAUTI Urinary Catheter Days",
"location": {
"needs_recoding": false,
"longitude": "-84.25686000038854",
"latitude": "43.63407000023051",
"human_address": "{\"address\":\"4000 WELLNESS DRIVE\",\"city\":\"MIDLAND\",\"state\":\"MI\",\"zip\":\"48670\"}"
},
"provider_id": "230222",
"state": "MI",
"score": "1637",
"address_1": "4000 WELLNESS DRIVE",
"city": "MIDLAND",
"county_name": "MIDLAND"
},
{
"hospital_name": "CHOCTAW MEMORIAL HOSPITAL",
"phone_number": {
"phone_number": "5803179500"
},
"zip_code": "74743",
"measure": "SSI: Abdominal Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-95.4969780463341",
"latitude": "34.0116793748643",
"human_address": "{\"address\":\"1405 EAST KIRK ROAD\",\"city\":\"HUGO\",\"state\":\"OK\",\"zip\":\"74743\"}"
},
"provider_id": "370100",
"state": "OK",
"score": "0",
"address_1": "1405 EAST KIRK ROAD",
"city": "HUGO",
"footnote": "No data are available from the hospital for this measure",
"county_name": "CHOCTAW"
},
{
"hospital_name": "METHODIST HEALTHCARE MEMPHIS HOSPITALS",
"phone_number": {
"phone_number": "9015168274"
},
"zip_code": "38104",
"measure": "SSI: Abdominal Lower Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-90.01919181885478",
"latitude": "35.13708978188913",
"human_address": "{\"address\":\"1265 UNION AVE SUITE 700\",\"city\":\"MEMPHIS\",\"state\":\"TN\",\"zip\":\"38104\"}"
},
"provider_id": "440049",
"state": "TN",
"score": "0.053",
"address_1": "1265 UNION AVE SUITE 700",
"city": "MEMPHIS",
"county_name": "SHELBY"
},
{
"hospital_name": "KAISER FOUNDATION HOSPITAL-SAN JOSE",
"phone_number": {
"phone_number": "4089727000"
},
"zip_code": "95119",
"measure": "SSI: Colon, Number of Procedures",
"location": {
"needs_recoding": false,
"longitude": "-121.80058482245568",
"latitude": "37.2393269711402",
"human_address": "{\"address\":\"250 HOSPITAL PARKWAY\",\"city\":\"SAN JOSE\",\"state\":\"CA\",\"zip\":\"95119\"}"
},
"provider_id": "050604",
"state": "CA",
"score": "56",
"address_1": "250 HOSPITAL PARKWAY",
"city": "SAN JOSE",
"county_name": "SANTA CLARA"
},
{
"hospital_name": "NORTH KANSAS CITY HOSPITAL",
"phone_number": {
"phone_number": "8166912000"
},
"zip_code": "64116",
"measure": "SSI: Abdominal Upper Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-94.55243135160816",
"latitude": "39.14956790035603",
"human_address": "{\"address\":\"2800 CLAY EDWARDS DRIVE\",\"city\":\"NORTH KANSAS CITY\",\"state\":\"MO\",\"zip\":\"64116\"}"
},
"provider_id": "260096",
"state": "MO",
"score": "6.733",
"address_1": "2800 CLAY EDWARDS DRIVE",
"city": "NORTH KANSAS CITY",
"county_name": "CLAY"
},
{
"hospital_name": "THE HEART HOSPITAL AT DEACONESS GATEWAY LLC",
"phone_number": {
"phone_number": "8128424784"
},
"zip_code": "47630",
"measure": "SSI: Abdominal Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-87.44216895571927",
"latitude": "37.975142277635854",
"human_address": "{\"address\":\"4007 GATEWAY BLVD\",\"city\":\"NEWBURGH\",\"state\":\"IN\",\"zip\":\"47630\"}"
},
"provider_id": "150175",
"state": "IN",
"score": "0",
"address_1": "4007 GATEWAY BLVD",
"city": "NEWBURGH",
"footnote": "No data are available from the hospital for this measure",
"county_name": "WARRICK"
},
{
"hospital_name": "ST ROSE DOMINICAN HOSPITALS - SAN MARTIN CAMPUS",
"phone_number": {
"phone_number": "7026165509"
},
"zip_code": "89113",
"measure": "SSI: Colon Upper Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-115.27345841854128",
"latitude": "36.05555837719294",
"human_address": "{\"address\":\"8280 W WARM SPRINGS ROAD\",\"city\":\"LAS VEGAS\",\"state\":\"NV\",\"zip\":\"89113\"}"
},
"provider_id": "290053",
"state": "NV",
"score": "5.658",
"address_1": "8280 W WARM SPRINGS ROAD",
"city": "LAS VEGAS",
"county_name": "CLARK"
},
{
"hospital_name": "DIVINE SAVIOR HLTHCARE",
"phone_number": {
"phone_number": "6087424131"
},
"zip_code": "53901",
"measure": "CAUTI Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-89.46936689045926",
"latitude": "43.56758951467638",
"human_address": "{\"address\":\"2817 NEW PINERY RD, P O BOX 387\",\"city\":\"PORTAGE\",\"state\":\"WI\",\"zip\":\"53901\"}"
},
"provider_id": "520041",
"state": "WI",
"score": "0",
"address_1": "2817 NEW PINERY RD, P O BOX 387",
"city": "PORTAGE",
"footnote": "No data are available from the hospital for this measure",
"county_name": "COLUMBIA"
},
{
"hospital_name": "MULTICARE GOOD SAMARITAN HOSPITAL",
"phone_number": {
"phone_number": "2536972102"
},
"zip_code": "98372",
"measure": "CLABSI Upper Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-122.28939314517673",
"latitude": "47.177447797343916",
"human_address": "{\"address\":\"401 15TH AVENUE SE\",\"city\":\"PUYALLUP\",\"state\":\"WA\",\"zip\":\"98372\"}"
},
"provider_id": "500079",
"state": "WA",
"score": "2.741",
"address_1": "401 15TH AVENUE SE",
"city": "PUYALLUP",
"county_name": "PIERCE"
},
{
"hospital_name": "LANCASTER GENERAL HOSPITAL",
"phone_number": {
"phone_number": "7172995511"
},
"zip_code": "17604",
"measure": "Catheter-Associated Urinary Tract Infections (CAUTI)",
"location": {
"needs_recoding": false,
"longitude": "-76.3051783838909",
"latitude": "40.04625491611017",
"human_address": "{\"address\":\"555 NORTH DUKE STREET\",\"city\":\"LANCASTER\",\"state\":\"PA\",\"zip\":\"17604\"}"
},
"provider_id": "390100",
"state": "PA",
"score": "0.48",
"address_1": "555 NORTH DUKE STREET",
"city": "LANCASTER",
"county_name": "LANCASTER"
},
{
"hospital_name": "BLUFFTON REGIONAL MEDICAL CENTER",
"phone_number": {
"phone_number": "2608243210"
},
"zip_code": "46714",
"measure": "SSI: Abdominal, Number of Procedures",
"location": {
"needs_recoding": false,
"longitude": "-85.17143198517329",
"latitude": "40.73756799969946",
"human_address": "{\"address\":\"303 S MAIN ST\",\"city\":\"BLUFFTON\",\"state\":\"IN\",\"zip\":\"46714\"}"
},
"provider_id": "150075",
"state": "IN",
"score": "17",
"address_1": "303 S MAIN ST",
"city": "BLUFFTON",
"footnote": "No data are available from the hospital for this measure",
"county_name": "WELLS"
},
{
"hospital_name": "SWEDISH MEDICAL CENTER",
"phone_number": {
"phone_number": "2063866000"
},
"zip_code": "98122",
"measure": "SSI: Colon, Number of Procedures",
"location": {
"needs_recoding": false,
"longitude": "-122.32080664352458",
"latitude": "47.60816822659808",
"human_address": "{\"address\":\"747 BROADWAY\",\"city\":\"SEATTLE\",\"state\":\"WA\",\"zip\":\"98122\"}"
},
"provider_id": "500027",
"state": "WA",
"score": "232",
"address_1": "747 BROADWAY",
"city": "SEATTLE",
"county_name": "KING"
},
{
"hospital_name": "BOCA RATON REGIONAL HOSPITAL",
"phone_number": {
"phone_number": "5613625002"
},
"zip_code": "33486",
"measure": "SSI: Colon Upper Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-80.1021159915955",
"latitude": "26.35958087083702",
"human_address": "{\"address\":\"800 MEADOWS RD\",\"city\":\"BOCA RATON\",\"state\":\"FL\",\"zip\":\"33486\"}"
},
"provider_id": "100168",
"state": "FL",
"score": "1.830",
"address_1": "800 MEADOWS RD",
"city": "BOCA RATON",
"county_name": "PALM BEACH"
},
{
"hospital_name": "UNIVERSITY OF TOLEDO MEDICAL CENTER",
"phone_number": {
"phone_number": "4193833407"
},
"zip_code": "43699",
"measure": "SSI: Abdominal Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-83.61609855897983",
"latitude": "41.62115605930083",
"human_address": "{\"address\":\"3000 ARLINGTON AVENUE\",\"city\":\"TOLEDO\",\"state\":\"OH\",\"zip\":\"43699\"}"
},
"provider_id": "360048",
"state": "OH",
"score": "0.602",
"address_1": "3000 ARLINGTON AVENUE",
"city": "TOLEDO",
"footnote": "No data are available from the hospital for this measure",
"county_name": "LUCAS"
},
{
"hospital_name": "BANNER THUNDERBIRD MEDICAL CENTER",
"phone_number": {
"phone_number": "6025885555"
},
"zip_code": "85306",
"measure": "SSI: Abdominal Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-112.17961976656369",
"latitude": "33.610733454100284",
"human_address": "{\"address\":\"5555 WEST THUNDERBIRD ROAD\",\"city\":\"GLENDALE\",\"state\":\"AZ\",\"zip\":\"85306\"}"
},
"provider_id": "030089",
"state": "AZ",
"score": "2",
"address_1": "5555 WEST THUNDERBIRD ROAD",
"city": "GLENDALE",
"county_name": "MARICOPA"
},
{
"hospital_name": "SETON SOUTHWEST HOSPITAL",
"phone_number": {
"phone_number": "5123249000"
},
"zip_code": "78737",
"measure": "SSI: Colon Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-97.88967151081579",
"latitude": "30.22675552902996",
"human_address": "{\"address\":\"7900 FM 1826\",\"city\":\"AUSTIN\",\"state\":\"TX\",\"zip\":\"78737\"}"
},
"provider_id": "450865",
"state": "TX",
"score": "0",
"address_1": "7900 FM 1826",
"city": "AUSTIN",
"footnote": "No data are available from the hospital for this measure",
"county_name": "TRAVIS"
},
{
"hospital_name": "GORDON HOSPITAL",
"phone_number": {
"phone_number": "7066292895"
},
"zip_code": "30701",
"measure": "CAUTI Upper Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-84.92561134810977",
"latitude": "34.51185323494236",
"human_address": "{\"address\":\"1035 RED BUD ROAD\",\"city\":\"CALHOUN\",\"state\":\"GA\",\"zip\":\"30701\"}"
},
"provider_id": "110023",
"state": "GA",
"score": "3.578",
"address_1": "1035 RED BUD ROAD",
"city": "CALHOUN",
"footnote": "The lower limit of the confidence interval cannot be calculated if the number of observed infections equals zero",
"county_name": "GORDON"
},
{
"hospital_name": "DELTA REGIONAL MEDICAL CENTER",
"phone_number": {
"phone_number": "6623783783"
},
"zip_code": "38704",
"measure": "CAUTI Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-91.03525034416808",
"latitude": "33.40996067451783",
"human_address": "{\"address\":\"1400 E UNION ST\",\"city\":\"GREENVILLE\",\"state\":\"MS\",\"zip\":\"38704\"}"
},
"provider_id": "250082",
"state": "MS",
"score": "5",
"address_1": "1400 E UNION ST",
"city": "GREENVILLE",
"county_name": "WASHINGTON"
},
{
"hospital_name": "HOSPITAL OF UNIV OF PENNSYLVANIA",
"phone_number": {
"phone_number": "2156623227"
},
"zip_code": "19104",
"measure": "SSI: Colon Upper Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-75.19260012178296",
"latitude": "39.95044114710856",
"human_address": "{\"address\":\"34TH &amp; SPRUCE STS\",\"city\":\"PHILADELPHIA\",\"state\":\"PA\",\"zip\":\"19104\"}"
},
"provider_id": "390111",
"state": "PA",
"score": "1.905",
"address_1": "34TH & SPRUCE STS",
"city": "PHILADELPHIA",
"county_name": "PHILADELPHIA"
},
{
"hospital_name": "COOKEVILLE REGIONAL MEDICAL CENTER",
"phone_number": {
"phone_number": "9316462000"
},
"zip_code": "38501",
"measure": "SSI: Colon, Number of Procedures",
"location": {
"needs_recoding": false,
"longitude": "-85.50884902496739",
"latitude": "36.169916166438725",
"human_address": "{\"address\":\"1 MEDICAL CENTER BOULEVARD\",\"city\":\"COOKEVILLE\",\"state\":\"TN\",\"zip\":\"38501\"}"
},
"provider_id": "440059",
"state": "TN",
"score": "71",
"address_1": "1 MEDICAL CENTER BOULEVARD",
"city": "COOKEVILLE",
"footnote": "The lower limit of the confidence interval cannot be calculated if the number of observed infections equals zero",
"county_name": "PUTNAM"
},
{
"hospital_name": "CONTRA COSTA REGIONAL MEDICAL CENTER",
"phone_number": {
"phone_number": "9253705000"
},
"zip_code": "94553",
"measure": "Central-Line-Associated Blood Stream Infections (CLABSI)",
"location": {
"needs_recoding": false,
"longitude": "-122.13092379025818",
"latitude": "38.00622383162579",
"human_address": "{\"address\":\"2500 ALHAMBRA AVE\",\"city\":\"MARTINEZ\",\"state\":\"CA\",\"zip\":\"94553\"}"
},
"provider_id": "050276",
"state": "CA",
"score": "0.00",
"address_1": "2500 ALHAMBRA AVE",
"city": "MARTINEZ",
"footnote": "The lower limit of the confidence interval cannot be calculated if the number of observed infections equals zero",
"county_name": "CONTRA COSTA"
},
{
"hospital_name": "PALM SPRINGS GENERAL HOSPITAL",
"phone_number": {
"phone_number": "3055582500"
},
"zip_code": "33012",
"measure": "CAUTI Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-80.31220661086024",
"latitude": "25.867579775047602",
"human_address": "{\"address\":\"1475 W 49TH ST\",\"city\":\"HIALEAH\",\"state\":\"FL\",\"zip\":\"33012\"}"
},
"provider_id": "100050",
"state": "FL",
"score": "0",
"address_1": "1475 W 49TH ST",
"city": "HIALEAH",
"footnote": "The lower limit of the confidence interval cannot be calculated if the number of observed infections equals zero",
"county_name": "MIAMI-DADE"
},
{
"hospital_name": "NORTH BALDWIN INFIRMARY",
"phone_number": {
"phone_number": "2519375521"
},
"zip_code": "36507",
"measure": "SSI: Abdominal, Number of Procedures",
"location": {
"needs_recoding": false,
"longitude": "-87.7831209756877",
"latitude": "30.90187438179367",
"human_address": "{\"address\":\"1815 HAND AVENUE\",\"city\":\"BAY MINETTE\",\"state\":\"AL\",\"zip\":\"36507\"}"
},
"provider_id": "010129",
"state": "AL",
"score": "0",
"address_1": "1815 HAND AVENUE",
"city": "BAY MINETTE",
"footnote": "No data are available from the hospital for this measure",
"county_name": "BALDWIN"
},
{
"hospital_name": "WILKES REGIONAL MEDICAL CENTER",
"phone_number": {
"phone_number": "3366518100"
},
"zip_code": "28659",
"measure": "SSI: Abdominal Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-81.15690382010058",
"latitude": "36.158539742768085",
"human_address": "{\"address\":\"1370 WEST D ST\",\"city\":\"NORTH WILKESBORO\",\"state\":\"NC\",\"zip\":\"28659\"}"
},
"provider_id": "340064",
"state": "NC",
"score": "0.023",
"address_1": "1370 WEST D ST",
"city": "NORTH WILKESBORO",
"footnote": "No data are available from the hospital for this measure",
"county_name": "WILKES"
},
{
"hospital_name": "PEACEHEALTH SOUTHWEST MEDICAL CENTER",
"phone_number": {
"phone_number": "3602562000"
},
"zip_code": "98668",
"measure": "Central-Line-Associated Blood Stream Infections (CLABSI)",
"location": {
"needs_recoding": false,
"longitude": "-122.58038367093636",
"latitude": "45.623245165738545",
"human_address": "{\"address\":\"400 NE MOTHER JOSEPH PLACE\",\"city\":\"VANCOUVER\",\"state\":\"WA\",\"zip\":\"98668\"}"
},
"provider_id": "500050",
"state": "WA",
"score": "0.00",
"address_1": "400 NE MOTHER JOSEPH PLACE",
"city": "VANCOUVER",
"footnote": "The lower limit of the confidence interval cannot be calculated if the number of observed infections equals zero",
"county_name": "CLARK"
},
{
"hospital_name": "SINAI HOSPITAL OF BALTIMORE",
"phone_number": {
"phone_number": "4106015131"
},
"zip_code": "21215",
"measure": "Central-Line-Associated Blood Stream Infections (CLABSI)",
"location": {
"needs_recoding": false,
"longitude": "-76.66225419562448",
"latitude": "39.35468526879879",
"human_address": "{\"address\":\"2401 WEST BELVEDERE AVE\",\"city\":\"BALTIMORE\",\"state\":\"MD\",\"zip\":\"21215\"}"
},
"provider_id": "210012",
"state": "MD",
"score": "1.39",
"address_1": "2401 WEST BELVEDERE AVE",
"city": "BALTIMORE",
"county_name": "BALTIMORE CITY"
},
{
"hospital_name": "RIDEOUT MEMORIAL HOSPITAL",
"phone_number": {
"phone_number": "5307494300"
},
"zip_code": "95901",
"measure": "CAUTI Urinary Catheter Days",
"location": {
"needs_recoding": false,
"longitude": "-121.59359631417894",
"latitude": "39.13878513858678",
"human_address": "{\"address\":\"726 4TH ST\",\"city\":\"MARYSVILLE\",\"state\":\"CA\",\"zip\":\"95901\"}"
},
"provider_id": "050133",
"state": "CA",
"score": "942",
"address_1": "726 4TH ST",
"city": "MARYSVILLE",
"footnote": "Data were collected during a shorter period (fewer quarters) than the maximum possible time for this measure., The lower limit of the confidence interval cannot be calculated if the number of observed infections equals zero",
"county_name": "YUBA"
},
{
"hospital_name": "JEFFERSON HEALTHCARE HOSPITAL",
"phone_number": {
"phone_number": "3603852200"
},
"zip_code": "98368",
"measure": "SSI: Colon Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-122.7902408304269",
"latitude": "48.105954049333604",
"human_address": "{\"address\":\"834 SHERIDAN STREET\",\"city\":\"PORT TOWNSEND\",\"state\":\"WA\",\"zip\":\"98368\"}"
},
"provider_id": "501323",
"state": "WA",
"score": "2",
"address_1": "834 SHERIDAN STREET",
"city": "PORT TOWNSEND",
"footnote": "No data are available from the hospital for this measure",
"county_name": "JEFFERSON"
},
{
"hospital_name": "COMMUNITY REGIONAL MEDICAL CENTER",
"phone_number": {
"phone_number": "5594596000"
},
"zip_code": "93715",
"measure": "Surgical Site Infection from abdominal hysterectomy (SSI: Hysterectomy)",
"location": {
"needs_recoding": false,
"longitude": "-119.78323463955024",
"latitude": "36.742532488934614",
"human_address": "{\"address\":\"2823 FRESNO STREET\",\"city\":\"FRESNO\",\"state\":\"CA\",\"zip\":\"93715\"}"
},
"provider_id": "050060",
"state": "CA",
"score": "0.79",
"address_1": "2823 FRESNO STREET",
"city": "FRESNO",
"county_name": "FRESNO"
},
{
"hospital_name": "BETSY JOHNSON REGIONAL HOSPITAL",
"phone_number": {
"phone_number": "9108927161"
},
"zip_code": "28334",
"measure": "CLABSI Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-78.63309144317452",
"latitude": "35.307349428476186",
"human_address": "{\"address\":\"800 TILGHMAN DR\",\"city\":\"DUNN\",\"state\":\"NC\",\"zip\":\"28334\"}"
},
"provider_id": "340071",
"state": "NC",
"score": "0.736",
"address_1": "800 TILGHMAN DR",
"city": "DUNN",
"footnote": "No data are available from the hospital for this measure",
"county_name": "HARNETT"
},
{
"hospital_name": "AVERA MARSHALL REGIONAL MEDICAL CTR",
"phone_number": {
"phone_number": "5075379661"
},
"zip_code": "56258",
"measure": "SSI: Abdominal Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-95.77624675552022",
"latitude": "44.44811249360316",
"human_address": "{\"address\":\"300 SOUTH BRUCE STREET\",\"city\":\"MARSHALL\",\"state\":\"MN\",\"zip\":\"56258\"}"
},
"provider_id": "241359",
"state": "MN",
"score": "0.000",
"address_1": "300 SOUTH BRUCE STREET",
"city": "MARSHALL",
"footnote": "No data are available from the hospital for this measure",
"county_name": "LYON"
},
{
"hospital_name": "NORTH METRO MEDICAL CENTER",
"phone_number": {
"phone_number": "5019857000"
},
"zip_code": "72076",
"measure": "Catheter-Associated Urinary Tract Infections (CAUTI)",
"location": {
"needs_recoding": false,
"longitude": "-92.12487341147812",
"latitude": "34.87241930866611",
"human_address": "{\"address\":\"1400 BRADEN STREET\",\"city\":\"JACKSONVILLE\",\"state\":\"AR\",\"zip\":\"72076\"}"
},
"provider_id": "040074",
"state": "AR",
"score": "0.00",
"address_1": "1400 BRADEN STREET",
"city": "JACKSONVILLE",
"footnote": "The lower limit of the confidence interval cannot be calculated if the number of observed infections equals zero",
"county_name": "PULASKI"
},
{
"hospital_name": "CLARION HOSPITAL",
"phone_number": {
"phone_number": "8142269500"
},
"zip_code": "16214",
"measure": "SSI: Abdominal, Number of Procedures",
"location": {
"needs_recoding": false,
"longitude": "-79.40077869261381",
"latitude": "41.190182015770176",
"human_address": "{\"address\":\"271 PERKINS ROAD\",\"city\":\"CLARION\",\"state\":\"PA\",\"zip\":\"16214\"}"
},
"provider_id": "390093",
"state": "PA",
"score": "10",
"address_1": "271 PERKINS ROAD",
"city": "CLARION",
"footnote": "No data are available from the hospital for this measure",
"county_name": "CLARION"
},
{
"hospital_name": "SAINT JOHN'S HEALTH CENTER",
"phone_number": {
"phone_number": "3108295511"
},
"zip_code": "90404",
"measure": "CAUTI Upper Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-118.47872293479313",
"latitude": "34.029794788356064",
"human_address": "{\"address\":\"2121 SANTA MONICA BLVD\",\"city\":\"SANTA MONICA\",\"state\":\"CA\",\"zip\":\"90404\"}"
},
"provider_id": "050290",
"state": "CA",
"score": "2.817",
"address_1": "2121 SANTA MONICA BLVD",
"city": "SANTA MONICA",
"county_name": "LOS ANGELES"
},
{
"hospital_name": "FREEMAN HEALTH SYSTEM - FREEMAN WEST",
"phone_number": {
"phone_number": "4173471111"
},
"zip_code": "64804",
"measure": "Surgical Site Infection from colon surgery (SSI: Colon)",
"location": {
"needs_recoding": false,
"longitude": "-94.52592891728689",
"latitude": "37.05462616574499",
"human_address": "{\"address\":\"1102 WEST 32ND STREET\",\"city\":\"JOPLIN\",\"state\":\"MO\",\"zip\":\"64804\"}"
},
"provider_id": "260137",
"state": "MO",
"score": "0.28",
"address_1": "1102 WEST 32ND STREET",
"city": "JOPLIN",
"county_name": "JASPER"
},
{
"hospital_name": "COLQUITT REGIONAL MEDICAL CENTER",
"phone_number": {
"phone_number": "2299853420"
},
"zip_code": "31768",
"measure": "SSI: Colon Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-83.78252373734499",
"latitude": "31.12818960892278",
"human_address": "{\"address\":\"3131 THOMASVILLE HWY BOX 40\",\"city\":\"MOULTRIE\",\"state\":\"GA\",\"zip\":\"31768\"}"
},
"provider_id": "110105",
"state": "GA",
"score": "0",
"address_1": "3131 THOMASVILLE HWY BOX 40",
"city": "MOULTRIE",
"footnote": "No data are available from the hospital for this measure",
"county_name": "COLQUITT"
},
{
"hospital_name": "BAYLOR SURGICAL HOSPITAL AT FORT WORTH",
"phone_number": {
"phone_number": "8173345050"
},
"zip_code": "76104",
"measure": "SSI: Abdominal, Number of Procedures",
"location": {
"needs_recoding": false,
"longitude": "-97.34745449531123",
"latitude": "32.73681071625095",
"human_address": "{\"address\":\"750 12TH AVENUE\",\"city\":\"FORT WORTH\",\"state\":\"TX\",\"zip\":\"76104\"}"
},
"provider_id": "450880",
"state": "TX",
"score": "0",
"address_1": "750 12TH AVENUE",
"city": "FORT WORTH",
"footnote": "No data are available from the hospital for this measure",
"county_name": "TARRANT"
},
{
"hospital_name": "CHRISTUS ST CATHERINE HOSPITAL",
"phone_number": {
"phone_number": "2815995700"
},
"zip_code": "77450",
"measure": "SSI: Abdominal Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-95.7188153030977",
"latitude": "29.777814470373407",
"human_address": "{\"address\":\"701 SOUTH FRY ROAD\",\"city\":\"KATY\",\"state\":\"TX\",\"zip\":\"77450\"}"
},
"provider_id": "450832",
"state": "TX",
"score": "0.227",
"address_1": "701 SOUTH FRY ROAD",
"city": "KATY",
"footnote": "No data are available from the hospital for this measure",
"county_name": "HARRIS"
},
{
"hospital_name": "GRAND LAKE HEALTH SYSTEM",
"phone_number": {
"phone_number": "4193943335"
},
"zip_code": "45885",
"measure": "CLABSI Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-84.36999672349252",
"latitude": "40.544807298264786",
"human_address": "{\"address\":\"200 SAINT CLAIR STREET\",\"city\":\"SAINT MARYS\",\"state\":\"OH\",\"zip\":\"45885\"}"
},
"provider_id": "360032",
"state": "OH",
"score": "0.115",
"address_1": "200 SAINT CLAIR STREET",
"city": "SAINT MARYS",
"footnote": "No data are available from the hospital for this measure",
"county_name": "AUGLAIZE"
},
{
"hospital_name": "SSM ST MARYS HEALTH CENTER",
"phone_number": {
"phone_number": "3147688000"
},
"zip_code": "63117",
"measure": "SSI: Abdominal Upper Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-90.31077000719444",
"latitude": "38.633968594517796",
"human_address": "{\"address\":\"6420 CLAYTON RD\",\"city\":\"RICHMOND HEIGHTS\",\"state\":\"MO\",\"zip\":\"63117\"}"
},
"provider_id": "260091",
"state": "MO",
"score": "2.841",
"address_1": "6420 CLAYTON RD",
"city": "RICHMOND HEIGHTS",
"county_name": "SAINT LOUIS"
},
{
"hospital_name": "BAPTIST MEDICAL CENTER-PRINCETON",
"phone_number": {
"phone_number": "2057833800"
},
"zip_code": "35211",
"measure": "SSI: Colon Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-86.84638369948442",
"latitude": "33.49893873263801",
"human_address": "{\"address\":\"701 PRINCETON AVENUE SOUTHWEST\",\"city\":\"BIRMINGHAM\",\"state\":\"AL\",\"zip\":\"35211\"}"
},
"provider_id": "010103",
"state": "AL",
"score": "0",
"address_1": "701 PRINCETON AVENUE SOUTHWEST",
"city": "BIRMINGHAM",
"footnote": "The lower limit of the confidence interval cannot be calculated if the number of observed infections equals zero",
"county_name": "JEFFERSON"
},
{
"hospital_name": "MEDSTAR FRANKLIN SQUARE MEDICAL CENTER",
"phone_number": {
"phone_number": "4437777000"
},
"zip_code": "21237",
"measure": "CLABSI Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-76.47870256944435",
"latitude": "39.35044046882052",
"human_address": "{\"address\":\"9000 FRANKLIN SQUARE DR\",\"city\":\"BALTIMORE\",\"state\":\"MD\",\"zip\":\"21237\"}"
},
"provider_id": "210015",
"state": "MD",
"score": "7.073",
"address_1": "9000 FRANKLIN SQUARE DR",
"city": "BALTIMORE",
"county_name": "BALTIMORE"
},
{
"hospital_name": "NEA BAPTIST MEMORIAL HOSPITAL",
"phone_number": {
"phone_number": "8709727000"
},
"zip_code": "72401",
"measure": "CLABSI Upper Confidence Limit",
"location": {
"needs_recoding": false,
"longitude": "-90.66918580875165",
"latitude": "35.80921608692705",
"human_address": "{\"address\":\"3024 STADIUM BOULEVARD\",\"city\":\"JONESBORO\",\"state\":\"AR\",\"zip\":\"72401\"}"
},
"provider_id": "040118",
"state": "AR",
"score": "1.927",
"address_1": "3024 STADIUM BOULEVARD",
"city": "JONESBORO",
"footnote": "The lower limit of the confidence interval cannot be calculated if the number of observed infections equals zero",
"county_name": "CRAIGHEAD"
},
{
"hospital_name": "RALEIGH GENERAL HOSPITAL",
"phone_number": {
"phone_number": "3042564100"
},
"zip_code": "25801",
"measure": "CLABSI Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-81.20305186414171",
"latitude": "37.786532496936374",
"human_address": "{\"address\":\"1710 HARPER ROAD\",\"city\":\"BECKLEY\",\"state\":\"WV\",\"zip\":\"25801\"}"
},
"provider_id": "510070",
"state": "WV",
"score": "2",
"address_1": "1710 HARPER ROAD",
"city": "BECKLEY",
"county_name": "RALEIGH"
},
{
"hospital_name": "HIALEAH HOSPITAL",
"phone_number": {
"phone_number": "3056936100"
},
"zip_code": "33013",
"measure": "SSI: Colon Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-80.26837365515217",
"latitude": "25.844988805671562",
"human_address": "{\"address\":\"651 E 25TH ST\",\"city\":\"HIALEAH\",\"state\":\"FL\",\"zip\":\"33013\"}"
},
"provider_id": "100053",
"state": "FL",
"score": "0.977",
"address_1": "651 E 25TH ST",
"city": "HIALEAH",
"footnote": "No data are available from the hospital for this measure",
"county_name": "MIAMI-DADE"
},
{
"hospital_name": "THE QUEENS MEDICAL CENTER",
"phone_number": {
"phone_number": "8085389011"
},
"zip_code": "96813",
"measure": "Central-Line-Associated Blood Stream Infections (CLABSI)",
"location": {
"needs_recoding": false,
"longitude": "-157.8552593330205",
"latitude": "21.307234676331063",
"human_address": "{\"address\":\"1301 PUNCHBOWL ST\",\"city\":\"HONOLULU\",\"state\":\"HI\",\"zip\":\"96813\"}"
},
"provider_id": "120001",
"state": "HI",
"score": "0.04",
"address_1": "1301 PUNCHBOWL ST",
"city": "HONOLULU",
"county_name": "HONOLULU"
},
{
"hospital_name": "EAST TEXAS MEDICAL CENTER JACKSONVILLE",
"phone_number": {
"phone_number": "9035415000"
},
"zip_code": "75766",
"measure": "CAUTI Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-95.27059922386393",
"latitude": "31.961383030214485",
"human_address": "{\"address\":\"501 S RAGSDALE\",\"city\":\"JACKSONVILLE\",\"state\":\"TX\",\"zip\":\"75766\"}"
},
"provider_id": "450194",
"state": "TX",
"score": "0.584",
"address_1": "501 S RAGSDALE",
"city": "JACKSONVILLE",
"footnote": "No data are available from the hospital for this measure",
"county_name": "CHEROKEE"
},
{
"hospital_name": "ST JOSEPH HOSPITAL",
"phone_number": {
"phone_number": "7146339111"
},
"zip_code": "92868",
"measure": "Surgical Site Infection from colon surgery (SSI: Colon)",
"location": {
"needs_recoding": false,
"longitude": "-117.8648548459692",
"latitude": "33.78231510407045",
"human_address": "{\"address\":\"1100 WEST STEWART DR\",\"city\":\"ORANGE\",\"state\":\"CA\",\"zip\":\"92868\"}"
},
"provider_id": "050069",
"state": "CA",
"score": "1.18",
"address_1": "1100 WEST STEWART DR",
"city": "ORANGE",
"county_name": "ORANGE"
},
{
"hospital_name": "MEMORIAL HOSPITAL, THE",
"phone_number": {
"phone_number": "6033565461"
},
"zip_code": "03860",
"measure": "SSI: Colon Observed Cases",
"location": {
"needs_recoding": false,
"longitude": "-71.1380942607326",
"latitude": "44.060281736040004",
"human_address": "{\"address\":\"3073 WHITE MOUNTAIN HIGHWAY\",\"city\":\"NORTH CONWAY\",\"state\":\"NH\",\"zip\":\"03860\"}"
},
"provider_id": "301307",
"state": "NH",
"score": "0",
"address_1": "3073 WHITE MOUNTAIN HIGHWAY",
"city": "NORTH CONWAY",
"footnote": "No data are available from the hospital for this measure",
"county_name": "CARROLL"
},
{
"hospital_name": "LODI MEMORIAL HOSPITAL",
"phone_number": {
"phone_number": "2093343411"
},
"zip_code": "95240",
"measure": "Central-Line-Associated Blood Stream Infections (CLABSI)",
"location": {
"needs_recoding": false,
"longitude": "-121.28585785898582",
"latitude": "38.121444970019695",
"human_address": "{\"address\":\"975 S FAIRMONT AVENUE\",\"city\":\"LODI\",\"state\":\"CA\",\"zip\":\"95240\"}"
},
"provider_id": "050336",
"state": "CA",
"score": "0.22",
"address_1": "975 S FAIRMONT AVENUE",
"city": "LODI",
"county_name": "SAN JOAQUIN"
},
{
"hospital_name": "ROSE MEDICAL CENTER",
"phone_number": {
"phone_number": "3033202121"
},
"zip_code": "80220",
"measure": "Surgical Site Infection from colon surgery (SSI: Colon)",
"location": {
"needs_recoding": false,
"longitude": "-104.93398002734006",
"latitude": "39.731069524501436",
"human_address": "{\"address\":\"4567 E 9TH AVENUE\",\"city\":\"DENVER\",\"state\":\"CO\",\"zip\":\"80220\"}"
},
"provider_id": "060032",
"state": "CO",
"score": "0.82",
"address_1": "4567 E 9TH AVENUE",
"city": "DENVER",
"county_name": "DENVER"
},
{
"hospital_name": "KENT COUNTY MEMORIAL HOSPITAL",
"phone_number": {
"phone_number": "4017377000"
},
"zip_code": "02886",
"measure": "SSI: Colon Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-71.47763114932063",
"latitude": "41.70439083260784",
"human_address": "{\"address\":\"455 TOLL GATE RD\",\"city\":\"WARWICK\",\"state\":\"RI\",\"zip\":\"02886\"}"
},
"provider_id": "410009",
"state": "RI",
"score": "1.847",
"address_1": "455 TOLL GATE RD",
"city": "WARWICK",
"county_name": "KENT"
},
{
"hospital_name": "ALEGENT HEALTH BERGAN MERCY MEDICAL CENTER",
"phone_number": {
"phone_number": "4023986060"
},
"zip_code": "68124",
"measure": "SSI: Colon Predicted Cases",
"location": {
"needs_recoding": false,
"longitude": "-96.03204092031399",
"latitude": "41.23787459137327",
"human_address": "{\"address\":\"7500 MERCY RD\",\"city\":\"OMAHA\",\"state\":\"NE\",\"zip\":\"68124\"}"
},
"provider_id": "280060",
"state": "NE",
"score": "2.510",
"address_1": "7500 MERCY RD",
"city": "OMAHA",
"county_name": "DOUGLAS"
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment