Skip to content

Instantly share code, notes, and snippets.

@nkabrown
Last active March 4, 2016 15:03
Show Gist options
  • Save nkabrown/0346fa274bd0d3edad85 to your computer and use it in GitHub Desktop.
Save nkabrown/0346fa274bd0d3edad85 to your computer and use it in GitHub Desktop.
d3 geojson map of allegheny county pa polling stations
<!DOCTYPE html>
<meta charset="UTF-8">
<title>D3 GeoJSON</title>
<style>
html,
body {
background-color: #000;
}
</style>
<div class="container">
<div class="map"></div>
</div>
<script src="//d3js.org/d3.v3.min.js" charset="utf-8"></script>
<script src="https://d3js.org/d3-queue.v2.min.js"></script>
<script>
const queue = d3_queue.queue();
queue.defer(d3.json, 'watershed.geojson')
.defer(d3.json, 'polling_locations.geojson')
.await((error, map, points) => createMap(map, points));
function createMap(map, points) {
const width = 805;
const height = 562;
const projection = d3.geo.mercator()
.scale(1)
.translate([0, 0])
.precision(0);
const path = d3.geo.path().projection(projection);
const bounds = path.bounds(map);
// from Mike Bostock's Project to Bounding Box example http://bl.ocks.org/mbostock/4707858
const scale = .95 / Math.max((bounds[1][0] - bounds[0][0]) / width, (bounds[1][1] - bounds[0][1]) / height);
const translate = [(width - scale * (bounds[1][0] + bounds[0][0])) / 2, (height - scale * (bounds[1][1] + bounds[0][1])) / 2];
projection.scale(scale).translate(translate);
const svg = d3.select('.map')
.append('svg')
.attr('width', width)
.attr('height', height);
svg.selectAll('path')
.data(map.features)
.enter().append('path')
.attr('d', path)
.style('fill', 'none')
.style('stroke', '#dedede');
svg.selectAll('path')
.data(points.features)
.enter().append('path')
.attr('d', path)
.style('fill', 'none')
.style('stroke', '#98ff98');
}
</script>
Display the source blob
Display the rendered blob
Raw
{
"type": "FeatureCollection",
"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } },
"features": [
{ "type": "Feature", "properties": { "OBJECTID_1": 1001, "OBJECTID": 1004, "Muni": 223, "LocName": "#2 ENGINE HOUSE", "Prefix": " ", "House": "24", "Fraction": " ", "Street": "AMHERST", "Suffix1": "AVE", "Suffix2": " ", "City": "WEST VIEW", "Zip": "15229-1536", "Leadman": "27", "MuniName": "WEST VIEW", "MWD": "2230006", "MWD2": 2230006, "NewAddress": "24 AMHERST AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.044599757088321, 40.519584900573356 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1002, "OBJECTID": 1005, "Muni": 223, "LocName": "WEST VIEW ELEMENTARY SCHOOL GYM", "Prefix": " ", "House": "47", "Fraction": " ", "Street": "CHALFANT", "Suffix1": "ST", "Suffix2": " ", "City": "WEST VIEW", "Zip": "15229", "Leadman": "27", "MuniName": "WEST VIEW", "MWD": "2230007", "MWD2": 2230007, "NewAddress": "47 CHALFANT ST" }, "geometry": { "type": "Point", "coordinates": [ -80.031970268530628, 40.521115984983382 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1003, "OBJECTID": 1006, "Muni": 225, "LocName": "BALDWIN COMM. U M CHURCH-WESLEY HL.", "Prefix": " ", "House": "5001", "Fraction": " ", "Street": "BAPTIST", "Suffix1": "RD", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15236-1717", "Leadman": "34", "MuniName": "WHITEHALL", "MWD": "2250001", "MWD2": 2250001, "NewAddress": "5001 BAPTIST RD" }, "geometry": { "type": "Point", "coordinates": [ -79.999941193509216, 40.357308026844393 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1004, "OBJECTID": 1007, "Muni": 225, "LocName": "ST. GABRIEL OF THE SORROW VIR SCH", "Prefix": " ", "House": "5200", "Fraction": " ", "Street": "GREENRIDGE", "Suffix1": "DR", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15236-1742", "Leadman": "34", "MuniName": "WHITEHALL", "MWD": "2250002", "MWD2": 2250002, "NewAddress": "5200 GREENRIDGE DR" }, "geometry": { "type": "Point", "coordinates": [ -80.0062334032054, 40.356195229243745 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1005, "OBJECTID": 1008, "Muni": 225, "LocName": "BORO BLDG", "Prefix": " ", "House": "100", "Fraction": " ", "Street": "BOROUGH PARK", "Suffix1": "DR", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15236-2013", "Leadman": "34", "MuniName": "WHITEHALL", "MWD": "2250003", "MWD2": 2250003, "NewAddress": "100 BOROUGH PARK DR" }, "geometry": { "type": "Point", "coordinates": [ -79.97972900445221, 40.350989436650067 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1006, "OBJECTID": 1009, "Muni": 225, "LocName": "BORO BLDG", "Prefix": " ", "House": "100", "Fraction": " ", "Street": "BOROUGH PARK", "Suffix1": "DR", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15236-2013", "Leadman": "34", "MuniName": "WHITEHALL", "MWD": "2250004", "MWD2": 2250004, "NewAddress": "100 BOROUGH PARK DR" }, "geometry": { "type": "Point", "coordinates": [ -79.980161324044232, 40.350981082935455 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1007, "OBJECTID": 1010, "Muni": 225, "LocName": "BALDWIN HIGH SCHOOL GYM HALL", "Prefix": " ", "House": "4653", "Fraction": " ", "Street": "CLAIRTON", "Suffix1": "BLVD", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15236-2149", "Leadman": "34", "MuniName": "WHITEHALL", "MWD": "2250005", "MWD2": 2250005, "NewAddress": "4653 CLAIRTON BLVD" }, "geometry": { "type": "Point", "coordinates": [ -79.977906672497539, 40.35560353933537 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1008, "OBJECTID": 1011, "Muni": 225, "LocName": "BALDWIN HIGH SCHOOL GYM HALL", "Prefix": " ", "House": "4653", "Fraction": " ", "Street": "CLAIRTON", "Suffix1": "BLVD", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15236-2149", "Leadman": "34", "MuniName": "WHITEHALL", "MWD": "2250006", "MWD2": 2250006, "NewAddress": "4653 CLAIRTON BLVD" }, "geometry": { "type": "Point", "coordinates": [ -79.978240787880694, 40.355992351261655 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1009, "OBJECTID": 1012, "Muni": 225, "LocName": "CANONGATE APT-PARTY RM.", "Prefix": " ", "House": "200", "Fraction": " ", "Street": "WHITE HAMPTON", "Suffix1": "LN", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15236-1575", "Leadman": "34", "MuniName": "WHITEHALL", "MWD": "2250007", "MWD2": 2250007, "NewAddress": "200 WHITE HAMPTON LN" }, "geometry": { "type": "Point", "coordinates": [ -79.997535227479048, 40.364932668019371 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1010, "OBJECTID": 1013, "Muni": 225, "LocName": "WHITEHALL ELEMENTARY SCHOOL", "Prefix": " ", "House": "4900", "Fraction": " ", "Street": "CURRY", "Suffix1": "RD", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15236-1817", "Leadman": "34", "MuniName": "WHITEHALL", "MWD": "2250008", "MWD2": 2250008, "NewAddress": "4900 CURRY RD" }, "geometry": { "type": "Point", "coordinates": [ -79.993552751383902, 40.352859796650435 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1011, "OBJECTID": 1014, "Muni": 225, "LocName": "BALDWIN HIGH SCHOOL GYM HALL", "Prefix": " ", "House": "4653", "Fraction": " ", "Street": "CLAIRTON", "Suffix1": "BLVD", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15236-2149", "Leadman": "34", "MuniName": "WHITEHALL", "MWD": "2250009", "MWD2": 2250009, "NewAddress": "4653 CLAIRTON BLVD" }, "geometry": { "type": "Point", "coordinates": [ -79.978322174888334, 40.356090426071141 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1012, "OBJECTID": 1015, "Muni": 225, "LocName": "BALDWIN COMM. U M CHURCH-ASBURY HALL", "Prefix": " ", "House": "5001", "Fraction": " ", "Street": "BAPTIST", "Suffix1": "RD", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15236-1717", "Leadman": "34", "MuniName": "WHITEHALL", "MWD": "2250010", "MWD2": 2250010, "NewAddress": "5001 BAPTIST RD" }, "geometry": { "type": "Point", "coordinates": [ -80.000482847834263, 40.357324610165762 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1013, "OBJECTID": 1016, "Muni": 228, "LocName": "WILKINSBURG SCHOOL ADMINISTRATION BLDG", "Prefix": " ", "House": "718", "Fraction": " ", "Street": "WALLACE", "Suffix1": "AVE", "Suffix2": " ", "City": "WILKINSBURG", "Zip": "15221-2243", "Leadman": "52", "MuniName": "WILKINSBURG", "MWD": "2280303", "MWD2": 2280303, "NewAddress": "718 WALLACE AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.88353757923511, 40.444052169271686 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1014, "OBJECTID": 1017, "Muni": 228, "LocName": "ST STEPHEN EPISCOPAL CHURCH", "Prefix": " ", "House": "600", "Fraction": " ", "Street": "PITT", "Suffix1": "ST", "Suffix2": " ", "City": "WILKINSBURG", "Zip": "15221-315", "Leadman": "52", "MuniName": "WILKINSBURG", "MWD": "2280304", "MWD2": 2280304, "NewAddress": "600 PITT ST" }, "geometry": { "type": "Point", "coordinates": [ -79.888409723642965, 40.441668135900869 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1015, "OBJECTID": 1018, "Muni": 228, "LocName": "ST STEPHEN EPISCOPAL CHURCH", "Prefix": " ", "House": "600", "Fraction": " ", "Street": "PITT", "Suffix1": "ST", "Suffix2": " ", "City": "WILKINSBURG", "Zip": "15221-3136", "Leadman": "52", "MuniName": "WILKINSBURG", "MWD": "2280305", "MWD2": 2280305, "NewAddress": "600 PITT ST" }, "geometry": { "type": "Point", "coordinates": [ -79.888429127254966, 40.441745009565579 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1016, "OBJECTID": 1019, "Muni": 228, "LocName": "WILKINSBURG SCHOOL ADMIN BLDG", "Prefix": " ", "House": "718", "Fraction": " ", "Street": "WALLACE", "Suffix1": "AVE", "Suffix2": " ", "City": "WILKINSBURG", "Zip": "15221-2049", "Leadman": "52", "MuniName": "WILKINSBURG", "MWD": "2280306", "MWD2": 2280306, "NewAddress": "718 WALLACE AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.883684945523626, 40.444103585158409 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1017, "OBJECTID": 1020, "Muni": 229, "LocName": "BORO BLDG 1ST FL FIREMENS ROOM", "Prefix": " ", "House": "301", "Fraction": " ", "Street": "STATION", "Suffix1": "ST", "Suffix2": " ", "City": "WILMERDING", "Zip": "15148-1014", "Leadman": "33", "MuniName": "WILMERDING", "MWD": "2290001", "MWD2": 2290001, "NewAddress": "301 STATION ST" }, "geometry": { "type": "Point", "coordinates": [ -79.807319413606109, 40.392993558315865 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1018, "OBJECTID": 1021, "Muni": 229, "LocName": "BORO BLDG STATION ST ENT", "Prefix": " ", "House": "301", "Fraction": " ", "Street": "STATION", "Suffix1": "ST", "Suffix2": " ", "City": "WILMERDING", "Zip": "15148", "Leadman": "33", "MuniName": "WILMERDING", "MWD": "2290002", "MWD2": 2290002, "NewAddress": "301 STATION ST" }, "geometry": { "type": "Point", "coordinates": [ -79.807416256602707, 40.393086084182357 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1019, "OBJECTID": 1022, "Muni": 188, "LocName": "SALVATION ARMY", "Prefix": " ", "House": "1821", "Fraction": " ", "Street": "BROADHEAD FORDING", "Suffix1": "RD", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15205-1805", "Leadman": "18", "MuniName": "PITTSBURGH", "MWD": "1882810", "MWD2": 1882810, "NewAddress": "1821 BROADHEAD FORDING RD" }, "geometry": { "type": "Point", "coordinates": [ -80.078844084155179, 40.450867380951067 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1020, "OBJECTID": 1023, "Muni": 188, "LocName": "SALVATION ARMY", "Prefix": " ", "House": "1821", "Fraction": " ", "Street": "BROADHEAD FORDING", "Suffix1": "RD", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15205-1805", "Leadman": "18", "MuniName": "PITTSBURGH", "MWD": "1882811", "MWD2": 1882811, "NewAddress": "1821 BROADHEAD FORDING RD" }, "geometry": { "type": "Point", "coordinates": [ -80.078946575793296, 40.450758515848094 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1021, "OBJECTID": 1024, "Muni": 188, "LocName": "ENGINE HOUSE", "Prefix": " ", "House": "1704", "Fraction": " ", "Street": "BROWNSVILLE", "Suffix1": "RD", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15210-3936", "Leadman": "19", "MuniName": "PITTSBURGH", "MWD": "1882901", "MWD2": 1882901, "NewAddress": "1704 BROWNSVILLE RD" }, "geometry": { "type": "Point", "coordinates": [ -79.98886492157429, 40.398293503291804 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1022, "OBJECTID": 1025, "Muni": 188, "LocName": "CONCORD PRESBY CHURCH", "Prefix": " ", "House": "1907", "Fraction": " ", "Street": "BROWNSVILLE", "Suffix1": "RD", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15210-4201", "Leadman": "19", "MuniName": "PITTSBURGH", "MWD": "1882902", "MWD2": 1882902, "NewAddress": "1907 BROWNSVILLE RD" }, "geometry": { "type": "Point", "coordinates": [ -79.986962665001144, 40.396229543314156 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1023, "OBJECTID": 1026, "Muni": 188, "LocName": "CARRICK REGENCY", "Prefix": " ", "House": "2129", "Fraction": " ", "Street": "BROWNSVILLE", "Suffix1": "RD", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15210-4263", "Leadman": "19", "MuniName": "PITTSBURGH", "MWD": "1882903", "MWD2": 1882903, "NewAddress": "2129 BROWNSVILLE RD" }, "geometry": { "type": "Point", "coordinates": [ -79.985830020863375, 40.392535796526836 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1024, "OBJECTID": 1027, "Muni": 188, "LocName": "SPENCER UNITED METHODIST CHURCH", "Prefix": " ", "House": "117", "Fraction": " ", "Street": "SPENCER", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15227-2104", "Leadman": "19", "MuniName": "PITTSBURGH", "MWD": "1882904", "MWD2": 1882904, "NewAddress": "117 SPENCER AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.977369416628278, 40.385866535228793 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1025, "OBJECTID": 1028, "Muni": 188, "LocName": "ST PIUS X CATHOLIC CHURCH HALL", "Prefix": " ", "House": "2336", "Fraction": " ", "Street": "BROWNSVILLE", "Suffix1": "RD", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15210-432", "Leadman": "19", "MuniName": "PITTSBURGH", "MWD": "1882905", "MWD2": 1882905, "NewAddress": "2336 BROWNSVILLE RD" }, "geometry": { "type": "Point", "coordinates": [ -79.985516225245078, 40.38813445112951 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1026, "OBJECTID": 1029, "Muni": 188, "LocName": "STEWART AVE LUTHERAN CHURCH", "Prefix": " ", "House": "2810", "Fraction": " ", "Street": "BROWNSVILLE", "Suffix1": "RD", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15227-1905", "Leadman": "19", "MuniName": "PITTSBURGH", "MWD": "1882907", "MWD2": 1882907, "NewAddress": "2810 BROWNSVILLE RD" }, "geometry": { "type": "Point", "coordinates": [ -79.977163790471394, 40.383034183272549 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1027, "OBJECTID": 1030, "Muni": 188, "LocName": "CARRICK REGENCY 1ST FL", "Prefix": " ", "House": "2129", "Fraction": " ", "Street": "BROWNSVILLE", "Suffix1": "RD", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15210-4263", "Leadman": "19", "MuniName": "PITTSBURGH", "MWD": "1882909", "MWD2": 1882909, "NewAddress": "2129 BROWNSVILLE RD" }, "geometry": { "type": "Point", "coordinates": [ -79.985906955089575, 40.392632943740992 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1028, "OBJECTID": 1031, "Muni": 188, "LocName": "PHILLIPS PARK RECREATION CENTER", "Prefix": " ", "House": "201", "Fraction": " ", "Street": "PARKFIELD", "Suffix1": "ST", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15210-4114", "Leadman": "19", "MuniName": "PITTSBURGH", "MWD": "1882910", "MWD2": 1882910, "NewAddress": "201 PARKFIELD ST" }, "geometry": { "type": "Point", "coordinates": [ -79.991010133817539, 40.391496177927571 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1029, "OBJECTID": 1032, "Muni": 188, "LocName": "CARNEGIE LIBRARY OF PGH CARRICK", "Prefix": " ", "House": "1811", "Fraction": " ", "Street": "BROWNSILLE", "Suffix1": "RD", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15210-3934", "Leadman": "19", "MuniName": "PITTSBURGH", "MWD": "1882912", "MWD2": 1882912, "NewAddress": "1811 BROWNSILLE RD" }, "geometry": { "type": "Point", "coordinates": [ -79.987480336799422, 40.397057188278161 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1030, "OBJECTID": 1033, "Muni": 188, "LocName": "KNOXVILLE CHRISTIAN CHURCH", "Prefix": " ", "House": "72", "Fraction": " ", "Street": "KNOX", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15210-5500", "Leadman": "11", "MuniName": "PITTSBURGH", "MWD": "1883001", "MWD2": 1883001, "NewAddress": "72 KNOX AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.990381968065947, 40.416849222844732 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1031, "OBJECTID": 1034, "Muni": 188, "LocName": "KNOXVILLE MIDDLE SCHOOL", "Prefix": " ", "House": "324", "Fraction": " ", "Street": "CHARLES", "Suffix1": "ST", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15210-2251", "Leadman": "11", "MuniName": "PITTSBURGH", "MWD": "1883003", "MWD2": 1883003, "NewAddress": "324 CHARLES ST" }, "geometry": { "type": "Point", "coordinates": [ -79.994090883199192, 40.41617729136992 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1032, "OBJECTID": 1035, "Muni": 188, "LocName": "COUNCIL 3 RIVERS AMER INDIAN FRT", "Prefix": " ", "House": "201", "Fraction": " ", "Street": "ROCHELLE", "Suffix1": "ST", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15210-2047", "Leadman": "11", "MuniName": "PITTSBURGH", "MWD": "1883004", "MWD2": 1883004, "NewAddress": "201 ROCHELLE ST" }, "geometry": { "type": "Point", "coordinates": [ -79.990891411603883, 40.415332404526993 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1033, "OBJECTID": 1036, "Muni": 188, "LocName": "COUNCIL 3 RIVERS AMER INDIAN FRT", "Prefix": " ", "House": "201", "Fraction": " ", "Street": "ROCHELLE", "Suffix1": "ST", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15210-2047", "Leadman": "11", "MuniName": "PITTSBURGH", "MWD": "1883005", "MWD2": 1883005, "NewAddress": "201 ROCHELLE ST" }, "geometry": { "type": "Point", "coordinates": [ -79.991310956032123, 40.415341243848594 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1034, "OBJECTID": 1037, "Muni": 188, "LocName": "LINCOLN PL PRESBYTERIAN CHURCH", "Prefix": " ", "House": "1202", "Fraction": " ", "Street": "MULDOWNEY", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15207-2247", "Leadman": "20", "MuniName": "PITTSBURGH", "MWD": "1883103", "MWD2": 1883103, "NewAddress": "1202 MULDOWNEY AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.915427625388787, 40.368634101101058 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1035, "OBJECTID": 1038, "Muni": 188, "LocName": "MIFFLIN ELEMENTARY SCHOOL", "Prefix": " ", "House": "1290", "Fraction": " ", "Street": "MIFFLIN", "Suffix1": "RD", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15207-2214", "Leadman": "20", "MuniName": "PITTSBURGH", "MWD": "1883104", "MWD2": 1883104, "NewAddress": "1290 MIFFLIN RD" }, "geometry": { "type": "Point", "coordinates": [ -79.914723541169224, 40.369873971810918 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1036, "OBJECTID": 1039, "Muni": 188, "LocName": "MIFFLIN ELEMENTARY SCHOOL", "Prefix": " ", "House": "1290", "Fraction": " ", "Street": "MIFFLIN", "Suffix1": "RD", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15207-2214", "Leadman": "20", "MuniName": "PITTSBURGH", "MWD": "1883105", "MWD2": 1883105, "NewAddress": "1290 MIFFLIN RD" }, "geometry": { "type": "Point", "coordinates": [ -79.914759574783417, 40.370027905858628 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1037, "OBJECTID": 1040, "Muni": 188, "LocName": "MIFFLIN ELEMENTARY SCHOOL", "Prefix": " ", "House": "1290", "Fraction": " ", "Street": "MIFFLIN", "Suffix1": "RD", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15207-2214", "Leadman": "20", "MuniName": "PITTSBURGH", "MWD": "1883106", "MWD2": 1883106, "NewAddress": "1290 MIFFLIN RD" }, "geometry": { "type": "Point", "coordinates": [ -79.915036436456177, 40.36993351594613 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1038, "OBJECTID": 1041, "Muni": 188, "LocName": "FAIRHAVEN METHODIST CHURCH", "Prefix": " ", "House": "2415", "Fraction": " ", "Street": "SAW MILL RUN", "Suffix1": "BLVD", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15234-3039", "Leadman": "19", "MuniName": "PITTSBURGH", "MWD": "1883201", "MWD2": 1883201, "NewAddress": "2415 SAW MILL RUN BLVD" }, "geometry": { "type": "Point", "coordinates": [ -79.995359301199329, 40.383832019463135 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1039, "OBJECTID": 1042, "Muni": 188, "LocName": "FAIRHAVEN METHODIST CHURCH", "Prefix": " ", "House": "2415", "Fraction": " ", "Street": "SAW MILL RUN", "Suffix1": "BLVD", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15234-3039", "Leadman": "19", "MuniName": "PITTSBURGH", "MWD": "1883202", "MWD2": 1883202, "NewAddress": "2415 SAW MILL RUN BLVD" }, "geometry": { "type": "Point", "coordinates": [ -79.995123206571307, 40.38375906761064 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1040, "OBJECTID": 1043, "Muni": 188, "LocName": "FAIRHAVEN METHODIST CHURCH", "Prefix": " ", "House": "2415", "Fraction": " ", "Street": "SAW MILL RUN", "Suffix1": "BLVD", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15234-3039", "Leadman": "19", "MuniName": "PITTSBURGH", "MWD": "1883203", "MWD2": 1883203, "NewAddress": "2415 SAW MILL RUN BLVD" }, "geometry": { "type": "Point", "coordinates": [ -79.995218533982026, 40.383841500028893 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1041, "OBJECTID": 1044, "Muni": 188, "LocName": "BROOKLINE COM CTR GAMEROOM", "Prefix": " ", "House": "1400", "Fraction": " ", "Street": "OAKRIDGE", "Suffix1": "ST", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15226-1945", "Leadman": "19", "MuniName": "PITTSBURGH", "MWD": "1883204", "MWD2": 1883204, "NewAddress": "1400 OAKRIDGE ST" }, "geometry": { "type": "Point", "coordinates": [ -80.008336958545783, 40.391161374091304 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1042, "OBJECTID": 1045, "Muni": 188, "LocName": "BROOKLINE COM CTR GYM", "Prefix": " ", "House": "1400", "Fraction": " ", "Street": "OAKRIDGE", "Suffix1": "ST", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15226-1945", "Leadman": "19", "MuniName": "PITTSBURGH", "MWD": "1883205", "MWD2": 1883205, "NewAddress": "1400 OAKRIDGE ST" }, "geometry": { "type": "Point", "coordinates": [ -80.008311097635968, 40.391342482090344 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1043, "OBJECTID": 1046, "Muni": 188, "LocName": "BROOKLINE COMM CTR WARMING HUT", "Prefix": " ", "House": "1400", "Fraction": " ", "Street": "OAKRIDGE", "Suffix1": "ST", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15226-1945", "Leadman": "19", "MuniName": "PITTSBURGH", "MWD": "1883206", "MWD2": 1883206, "NewAddress": "1400 OAKRIDGE ST" }, "geometry": { "type": "Point", "coordinates": [ -80.008136236709646, 40.39126780362021 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1044, "OBJECTID": 1047, "Muni": 188, "LocName": "BROOKLINE COM CTR GYM", "Prefix": " ", "House": "1400", "Fraction": " ", "Street": "OAKRIDGE", "Suffix1": "ST", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15226-1945", "Leadman": "19", "MuniName": "PITTSBURGH", "MWD": "1883207", "MWD2": 1883207, "NewAddress": "1400 OAKRIDGE ST" }, "geometry": { "type": "Point", "coordinates": [ -80.008496597594515, 40.391353497158534 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1045, "OBJECTID": 1048, "Muni": 189, "LocName": "PLEASANT HILLS COM CH FELLOWSHIP HL", "Prefix": " ", "House": "199", "Fraction": " ", "Street": "OLD CLAIRTON", "Suffix1": "RD", "Suffix2": " ", "City": "PLEASANT HILLS", "Zip": "15236-3911", "Leadman": "40", "MuniName": "PLEASANT HL", "MWD": "1890004", "MWD2": 1890004, "NewAddress": "199 OLD CLAIRTON RD" }, "geometry": { "type": "Point", "coordinates": [ -79.961394795532897, 40.337341114227158 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1046, "OBJECTID": 1049, "Muni": 189, "LocName": "BORO BLDG.", "Prefix": "E", "House": "410", "Fraction": " ", "Street": "BRUCETON", "Suffix1": "RD", "Suffix2": " ", "City": "PLEASANT HILLS", "Zip": "15236-4504", "Leadman": "40", "MuniName": "PLEASANT HL", "MWD": "1890005", "MWD2": 1890005, "NewAddress": "410 BRUCETON RD" }, "geometry": { "type": "Point", "coordinates": [ -79.952401471813872, 40.330767737785102 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1047, "OBJECTID": 1050, "Muni": 189, "LocName": "PLEASANT HILLS MUNI BLDG COM RM", "Prefix": "E", "House": "410", "Fraction": " ", "Street": "BRUCETON", "Suffix1": "RD", "Suffix2": " ", "City": "PLEASANT HILLS", "Zip": "15236-4504", "Leadman": "40", "MuniName": "PLEASANT HL", "MWD": "1890006", "MWD2": 1890006, "NewAddress": "410 BRUCETON RD" }, "geometry": { "type": "Point", "coordinates": [ -79.952304660162739, 40.330761663512881 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1048, "OBJECTID": 1051, "Muni": 189, "LocName": "PLEASANT HILLS BORO BLDG. 1ST FL.", "Prefix": "E", "House": "410", "Fraction": " ", "Street": "BRUCETON", "Suffix1": "RD", "Suffix2": " ", "City": "PLEASANT HILLS", "Zip": "15236-4504", "Leadman": "40", "MuniName": "PLEASANT HL", "MWD": "1890007", "MWD2": 1890007, "NewAddress": "410 BRUCETON RD" }, "geometry": { "type": "Point", "coordinates": [ -79.952204323404402, 40.330647390121712 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1049, "OBJECTID": 1052, "Muni": 189, "LocName": "FREEDOM LIFE CENTER", "Prefix": " ", "House": "268", "Fraction": " ", "Street": "OLD CLAIRTON", "Suffix1": "RD", "Suffix2": " ", "City": "PLEASANT HILLS", "Zip": "15236-4302", "Leadman": "40", "MuniName": "PLEASANT HL", "MWD": "1890008", "MWD2": 1890008, "NewAddress": "268 OLD CLAIRTON RD" }, "geometry": { "type": "Point", "coordinates": [ -79.962037615600877, 40.334169449791929 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1050, "OBJECTID": 1053, "Muni": 189, "LocName": "PRINCE OF PEACE LUTH CH 1ST FL", "Prefix": " ", "House": "400", "Fraction": " ", "Street": "OLD CLAIRTON", "Suffix1": "RD", "Suffix2": " ", "City": "PLEASANT HILLS", "Zip": "15236-4337", "Leadman": "40", "MuniName": "PLEASANT HL", "MWD": "1890009", "MWD2": 1890009, "NewAddress": "400 OLD CLAIRTON RD" }, "geometry": { "type": "Point", "coordinates": [ -79.960247108080083, 40.330687626047457 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1051, "OBJECTID": 1054, "Muni": 190, "LocName": "PLUM SENIOR HIGH LARGE GYM ENT", "Prefix": " ", "House": "900", "Fraction": " ", "Street": "ELICKER", "Suffix1": "RD", "Suffix2": " ", "City": "PLUM", "Zip": "15239-1026", "Leadman": "30", "MuniName": "PLUM", "MWD": "1900001", "MWD2": 1900001, "NewAddress": "900 ELICKER RD" }, "geometry": { "type": "Point", "coordinates": [ -79.765982948630707, 40.507368127643765 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1052, "OBJECTID": 1055, "Muni": 190, "LocName": "ST JOHN THE BAPTIST SCHOOL", "Prefix": " ", "House": "444", "Fraction": " ", "Street": "SAINT JOHN", "Suffix1": "ST", "Suffix2": " ", "City": "PLUM", "Zip": "15239-1353", "Leadman": "30", "MuniName": "PLUM", "MWD": "1900004", "MWD2": 1900004, "NewAddress": "444 SAINT JOHN ST" }, "geometry": { "type": "Point", "coordinates": [ -79.776794987803655, 40.488082622789712 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1053, "OBJECTID": 1056, "Muni": 190, "LocName": "CENTER SCHOOL GYM SIDE ENT", "Prefix": " ", "House": "201", "Fraction": " ", "Street": "CENTER NEW TEXAS", "Suffix1": "RD", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15239", "Leadman": "30", "MuniName": "PLUM", "MWD": "1900005", "MWD2": 1900005, "NewAddress": "201 CENTER NEW TEXAS RD" }, "geometry": { "type": "Point", "coordinates": [ -79.759144896361363, 40.481167418887523 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1054, "OBJECTID": 1057, "Muni": 190, "LocName": "SENIOR CITIZEN CENTER", "Prefix": " ", "House": "499", "Fraction": " ", "Street": "CENTER NEW TEXAS", "Suffix1": "RD", "Suffix2": " ", "City": "PLUM", "Zip": "15239-1819", "Leadman": "30", "MuniName": "PLUM", "MWD": "1900006", "MWD2": 1900006, "NewAddress": "499 CENTER NEW TEXAS RD" }, "geometry": { "type": "Point", "coordinates": [ -79.753102209969015, 40.488525280407593 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1055, "OBJECTID": 1058, "Muni": 190, "LocName": "REGENCY PARK SCHOOL-ROOM #5", "Prefix": " ", "House": "201", "Fraction": " ", "Street": "CENTER NEW TEXAS", "Suffix1": "RD", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15239", "Leadman": "30", "MuniName": "PLUM", "MWD": "1900007", "MWD2": 1900007, "NewAddress": "201 CENTER NEW TEXAS RD" }, "geometry": { "type": "Point", "coordinates": [ -79.776122430610201, 40.484352774971363 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1056, "OBJECTID": 1059, "Muni": 190, "LocName": "HOLIDAY PARK SCHOOL", "Prefix": " ", "House": "4795", "Fraction": " ", "Street": "HAVANA", "Suffix1": "DR", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15239-2417", "Leadman": "30", "MuniName": "PLUM", "MWD": "1900008", "MWD2": 1900008, "NewAddress": "4795 HAVANA DR" }, "geometry": { "type": "Point", "coordinates": [ -79.708610221413906, 40.479568707133964 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1057, "OBJECTID": 1060, "Muni": 190, "LocName": "HOLIDAY PARK SCHOOL", "Prefix": " ", "House": "4795", "Fraction": " ", "Street": "HAVANA", "Suffix1": "DR", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15239-2417", "Leadman": "30", "MuniName": "PLUM", "MWD": "1900009", "MWD2": 1900009, "NewAddress": "4795 HAVANA DR" }, "geometry": { "type": "Point", "coordinates": [ -79.708955174577909, 40.479073398732694 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1058, "OBJECTID": 1061, "Muni": 190, "LocName": "OBLOCK JR. HIGH SCHOOL GYM", "Prefix": " ", "House": "440", "Fraction": " ", "Street": "PRESQUE ISLE", "Suffix1": "DR", "Suffix2": " ", "City": "PLUM", "Zip": "15239-2604", "Leadman": "30", "MuniName": "PLUM", "MWD": "1900011", "MWD2": 1900011, "NewAddress": "440 PRESQUE ISLE DR" }, "geometry": { "type": "Point", "coordinates": [ -79.715111487972848, 40.470899424404386 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1059, "OBJECTID": 1062, "Muni": 190, "LocName": "OBLOCK JR. HIGH SCHOOL GYM", "Prefix": " ", "House": "440", "Fraction": " ", "Street": "PRESQUE ISLE", "Suffix1": "DR", "Suffix2": " ", "City": "PLUM", "Zip": "15239-2604", "Leadman": "30", "MuniName": "PLUM", "MWD": "1900012", "MWD2": 1900012, "NewAddress": "440 PRESQUE ISLE DR" }, "geometry": { "type": "Point", "coordinates": [ -79.714918325975475, 40.470836291856763 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1060, "OBJECTID": 1063, "Muni": 190, "LocName": "OBLOCK JR HIGH CAFE REAR ENT", "Prefix": " ", "House": "313", "Fraction": " ", "Street": "HOLIDAY PARK", "Suffix1": "DR", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15239-236", "Leadman": "30", "MuniName": "PLUM", "MWD": "1900013", "MWD2": 1900013, "NewAddress": "313 HOLIDAY PARK DR" }, "geometry": { "type": "Point", "coordinates": [ -79.714837708066185, 40.470509171332594 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1061, "OBJECTID": 1064, "Muni": 190, "LocName": "OBLOCK JR HIGH CAFE REAR ENT", "Prefix": " ", "House": "313", "Fraction": " ", "Street": "HOLIDAY PARK", "Suffix1": "DR", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15239-236", "Leadman": "30", "MuniName": "PLUM", "MWD": "1900014", "MWD2": 1900014, "NewAddress": "313 HOLIDAY PARK DR" }, "geometry": { "type": "Point", "coordinates": [ -79.714926434401292, 40.470336632798443 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1062, "OBJECTID": 1065, "Muni": 190, "LocName": "REGENCY PARK SCHOOL-ROOM #6", "Prefix": " ", "House": "418", "Fraction": " ", "Street": "UNITY CENTER", "Suffix1": "RD", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15239-134", "Leadman": "30", "MuniName": "PLUM", "MWD": "1900017", "MWD2": 1900017, "NewAddress": "418 UNITY CENTER RD" }, "geometry": { "type": "Point", "coordinates": [ -79.775155052764219, 40.483884454514808 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1063, "OBJECTID": 1066, "Muni": 190, "LocName": "PIVAK SCHOOL", "Prefix": " ", "House": "100", "Fraction": " ", "Street": "SCHOOL", "Suffix1": "RD", "Suffix2": " ", "City": "PLUM", "Zip": "15239-1455", "Leadman": "30", "MuniName": "PLUM", "MWD": "1900018", "MWD2": 1900018, "NewAddress": "100 SCHOOL RD" }, "geometry": { "type": "Point", "coordinates": [ -79.753500727627483, 40.493881367049994 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1064, "OBJECTID": 1067, "Muni": 190, "LocName": "PLUM SENIOR HIGH LARGE GYM ENT", "Prefix": " ", "House": "900", "Fraction": " ", "Street": "ELICKER", "Suffix1": "RD", "Suffix2": " ", "City": "PLUM", "Zip": "15239-1026", "Leadman": "30", "MuniName": "PLUM", "MWD": "1900019", "MWD2": 1900019, "NewAddress": "900 ELICKER RD" }, "geometry": { "type": "Point", "coordinates": [ -79.766660733027493, 40.507413680926533 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1065, "OBJECTID": 1068, "Muni": 190, "LocName": "PIVAK SCHOOL CAFETERIA", "Prefix": " ", "House": "100", "Fraction": " ", "Street": "SCHOOL", "Suffix1": "RD", "Suffix2": " ", "City": "PLUM", "Zip": "15239-1455", "Leadman": "30", "MuniName": "PLUM", "MWD": "1900020", "MWD2": 1900020, "NewAddress": "100 SCHOOL RD" }, "geometry": { "type": "Point", "coordinates": [ -79.753618184836313, 40.494007653712991 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1066, "OBJECTID": 1069, "Muni": 190, "LocName": "PIVAK SCHOOL CAFETERIA", "Prefix": " ", "House": "100", "Fraction": " ", "Street": "SCHOOL", "Suffix1": "RD", "Suffix2": " ", "City": "PLUM", "Zip": "15239-1455", "Leadman": "30", "MuniName": "PLUM", "MWD": "1900021", "MWD2": 1900021, "NewAddress": "100 SCHOOL RD" }, "geometry": { "type": "Point", "coordinates": [ -79.753704761770393, 40.494092959578907 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1067, "OBJECTID": 1070, "Muni": 191, "LocName": "VIGILANTE HOSE COMPANY #1", "Prefix": " ", "House": "1800", "Fraction": " ", "Street": "ROMINE", "Suffix1": "AVE", "Suffix2": " ", "City": "MCKEESPORT", "Zip": "15133-3347", "Leadman": "22", "MuniName": "PORT VUE", "MWD": "1910001", "MWD2": 1910001, "NewAddress": "1800 ROMINE AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.865256934998683, 40.335803503664955 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1068, "OBJECTID": 1071, "Muni": 191, "LocName": "MUNICIPAL BLDG-DOWNSTAIRS", "Prefix": " ", "House": "1191", "Fraction": " ", "Street": "ROMINE", "Suffix1": "AVE", "Suffix2": " ", "City": "MCKEESPORT", "Zip": "15133-3515", "Leadman": "22", "MuniName": "PORT VUE", "MWD": "1910002", "MWD2": 1910002, "NewAddress": "1191 ROMINE AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.870820735187451, 40.342148667307782 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1069, "OBJECTID": 1072, "Muni": 191, "LocName": "PORT VUE METHODIST CHURCH", "Prefix": " ", "House": "1565", "Fraction": " ", "Street": "WASHINGTON", "Suffix1": "BLVD", "Suffix2": " ", "City": "MCKEESPORT", "Zip": "15133-3728", "Leadman": "22", "MuniName": "PORT VUE", "MWD": "1910003", "MWD2": 1910003, "NewAddress": "1565 WASHINGTON BLVD" }, "geometry": { "type": "Point", "coordinates": [ -79.879784945394917, 40.332810218732831 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1070, "OBJECTID": 1073, "Muni": 191, "LocName": "MUNICIPAL BLDG-DOWNSTAIRS", "Prefix": " ", "House": "1191", "Fraction": " ", "Street": "ROMINE", "Suffix1": "AVE", "Suffix2": " ", "City": "MCKEESPORT", "Zip": "15133-3515", "Leadman": "22", "MuniName": "PORT VUE", "MWD": "1910004", "MWD2": 1910004, "NewAddress": "1191 ROMINE AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.870612407331478, 40.342239505760894 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1071, "OBJECTID": 1074, "Muni": 192, "LocName": "APOSTOLIC FAITH CHURCH DINING HALL", "Prefix": " ", "House": "44", "Fraction": " ", "Street": "MILLER", "Suffix1": "AVE", "Suffix2": " ", "City": "RANKIN", "Zip": "15104-1020", "Leadman": "32", "MuniName": "RANKIN", "MWD": "1920100", "MWD2": 1920100, "NewAddress": "44 MILLER AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.88446421405034, 40.416129605360595 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1072, "OBJECTID": 1075, "Muni": 192, "LocName": "RANKIN BORO BLDG.", "Prefix": " ", "House": "320", "Fraction": " ", "Street": "HAWKINS", "Suffix1": "AVE", "Suffix2": " ", "City": "BRADDOCK", "Zip": "15104-2119", "Leadman": "32", "MuniName": "RANKIN", "MWD": "1920200", "MWD2": 1920200, "NewAddress": "320 HAWKINS AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.867882626955108, 40.41010727162444 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1073, "OBJECTID": 1076, "Muni": 192, "LocName": "RANKIN VFD", "Prefix": " ", "House": "320", "Fraction": " ", "Street": "HAWKINS", "Suffix1": "AVE", "Suffix2": " ", "City": "RANKIN", "Zip": "15104-1154", "Leadman": "32", "MuniName": "RANKIN", "MWD": "1920300", "MWD2": 1920300, "NewAddress": "320 HAWKINS AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.880556608480831, 40.41291925776062 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1074, "OBJECTID": 1077, "Muni": 193, "LocName": "MT TROY VOL FIRE CO BALLROOM", "Prefix": " ", "House": "33", "Fraction": " ", "Street": "LONSDALE", "Suffix1": "ST", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15212-1360", "Leadman": "15", "MuniName": "RESERVE", "MWD": "1930100", "MWD2": 1930100, "NewAddress": "33 LONSDALE ST" }, "geometry": { "type": "Point", "coordinates": [ -79.982547129323137, 40.474170499479023 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1075, "OBJECTID": 1078, "Muni": 193, "LocName": "MT TROY VOL FIRE CO BALLROOM", "Prefix": " ", "House": "33", "Fraction": " ", "Street": "LONSDALE", "Suffix1": "ST", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15212-1360", "Leadman": "15", "MuniName": "RESERVE", "MWD": "1930200", "MWD2": 1930200, "NewAddress": "33 LONSDALE ST" }, "geometry": { "type": "Point", "coordinates": [ -79.982583383559174, 40.474215803251283 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1076, "OBJECTID": 1079, "Muni": 193, "LocName": "RESERVE TWP EMS AUTHORITY", "Prefix": " ", "House": "3441", "Fraction": " ", "Street": "MOUNT TROY", "Suffix1": "RD", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15212-1107", "Leadman": "15", "MuniName": "RESERVE", "MWD": "1930300", "MWD2": 1930300, "NewAddress": "3441 MOUNT TROY RD" }, "geometry": { "type": "Point", "coordinates": [ -79.992057779911164, 40.486771753510574 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1077, "OBJECTID": 1080, "Muni": 193, "LocName": "SPRING GARDEN VOL FIRE CO", "Prefix": " ", "House": "3367", "Fraction": " ", "Street": "SPRING GARDEN", "Suffix1": "RD", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15212-1253", "Leadman": "15", "MuniName": "RESERVE", "MWD": "1930400", "MWD2": 1930400, "NewAddress": "3367 SPRING GARDEN RD" }, "geometry": { "type": "Point", "coordinates": [ -79.995669902727471, 40.480490555082241 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1078, "OBJECTID": 1081, "Muni": 194, "LocName": "RICHLAND TOWNSHIP MUNICIPAL BUILDING", "Prefix": " ", "House": "4019", "Fraction": " ", "Street": "DICKEY", "Suffix1": "RD", "Suffix2": " ", "City": "GIBSONIA", "Zip": "15044-9605", "Leadman": "43", "MuniName": "RICHLAND", "MWD": "1940001", "MWD2": 1940001, "NewAddress": "4019 DICKEY RD" }, "geometry": { "type": "Point", "coordinates": [ -79.952137055131601, 40.642508688278497 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1079, "OBJECTID": 1082, "Muni": 194, "LocName": "ST THOMAS IN THE FIELDS CHURCH", "Prefix": " ", "House": "4106", "Fraction": " ", "Street": "ST THOMAS", "Suffix1": "DR", "Suffix2": " ", "City": "GIBSONIA", "Zip": "15044-6214", "Leadman": "43", "MuniName": "RICHLAND", "MWD": "1940002", "MWD2": 1940002, "NewAddress": "4106 ST THOMAS DR" }, "geometry": { "type": "Point", "coordinates": [ -79.939484578867294, 40.644446037281 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1080, "OBJECTID": 1083, "Muni": 194, "LocName": "PINE RICHLAND YOUTH CENTER", "Prefix": " ", "House": "5554", "Fraction": " ", "Street": "COMMUNITY CENTER", "Suffix1": "DR", "Suffix2": " ", "City": "GIBSONIA", "Zip": "15044-9713", "Leadman": "43", "MuniName": "RICHLAND", "MWD": "1940003", "MWD2": 1940003, "NewAddress": "5554 COMMUNITY CENTER DR" }, "geometry": { "type": "Point", "coordinates": [ -79.939008821615388, 40.632117783463059 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1081, "OBJECTID": 1084, "Muni": 194, "LocName": "PINE RICHLAND YOUTH CENTER", "Prefix": " ", "House": "5554", "Fraction": " ", "Street": "COMMUNITY CENTER", "Suffix1": "DR", "Suffix2": " ", "City": "GIBSONIA", "Zip": "15044-9808", "Leadman": "43", "MuniName": "RICHLAND", "MWD": "1940004", "MWD2": 1940004, "NewAddress": "5554 COMMUNITY CENTER DR" }, "geometry": { "type": "Point", "coordinates": [ -79.938894225066846, 40.632045224079803 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1082, "OBJECTID": 1085, "Muni": 194, "LocName": "NORTHERN TIER REGIONAL LIBRARY UP LEVEL", "Prefix": " ", "House": "4015", "Fraction": " ", "Street": "DICKEY", "Suffix1": "RD", "Suffix2": " ", "City": "GIBSONIA", "Zip": "15044-9205", "Leadman": "43", "MuniName": "RICHLAND", "MWD": "1940005", "MWD2": 1940005, "NewAddress": "4015 DICKEY RD" }, "geometry": { "type": "Point", "coordinates": [ -79.95260110150393, 40.64178497221063 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1083, "OBJECTID": 1086, "Muni": 194, "LocName": "TRINITY EVANGELICAL LUTHERAN CHURCH", "Prefix": " ", "House": "3832", "Fraction": " ", "Street": "GIBSONIA", "Suffix1": "RD", "Suffix2": " ", "City": "GIBSONIA", "Zip": "15044-9205", "Leadman": "43", "MuniName": "RICHLAND", "MWD": "1940006", "MWD2": 1940006, "NewAddress": "3832 GIBSONIA RD" }, "geometry": { "type": "Point", "coordinates": [ -79.964608595077067, 40.63156377595331 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1084, "OBJECTID": 1087, "Muni": 194, "LocName": "TRINITY EVANGELICAL LUTHERAN CH.", "Prefix": " ", "House": "3832", "Fraction": " ", "Street": "GIBSONIA", "Suffix1": "RD", "Suffix2": " ", "City": "GIBSONIA", "Zip": "15044-6214", "Leadman": "43", "MuniName": "RICHLAND", "MWD": "1940007", "MWD2": 1940007, "NewAddress": "3832 GIBSONIA RD" }, "geometry": { "type": "Point", "coordinates": [ -79.965302680495327, 40.631395714133021 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1085, "OBJECTID": 1088, "Muni": 194, "LocName": "ST BARNABAS RETIREMENT VILLAGE BLDG C", "Prefix": " ", "House": "5850", "Fraction": " ", "Street": "MERIDAN", "Suffix1": "RD", "Suffix2": " ", "City": "GIBSONIA", "Zip": "15044-6214", "Leadman": "43", "MuniName": "RICHLAND", "MWD": "1940008", "MWD2": 1940008, "NewAddress": "5850 MERIDAN RD" }, "geometry": { "type": "Point", "coordinates": [ -79.95902358173467, 40.653327720101721 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1086, "OBJECTID": 1089, "Muni": 195, "LocName": "BURKETT SCHOOL", "Prefix": " ", "House": "5501", "Fraction": " ", "Street": "STEUBENVILLE", "Suffix1": "PIKE", "Suffix2": " ", "City": "MC KEES ROCKS", "Zip": "15136-1413", "Leadman": "51", "MuniName": "ROBINSON", "MWD": "1950001", "MWD2": 1950001, "NewAddress": "5501 STEUBENVILLE PIKE" }, "geometry": { "type": "Point", "coordinates": [ -80.127694320518401, 40.450024819684735 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1087, "OBJECTID": 1090, "Muni": 195, "LocName": "MONTOUR HIGH SCHOOL", "Prefix": " ", "House": "223", "Fraction": " ", "Street": "CLEVER", "Suffix1": "RD", "Suffix2": " ", "City": "MC KEES ROCKS", "Zip": "15136-4012", "Leadman": "51", "MuniName": "ROBINSON", "MWD": "1950002", "MWD2": 1950002, "NewAddress": "223 CLEVER RD" }, "geometry": { "type": "Point", "coordinates": [ -80.117511828180611, 40.467103549224525 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1088, "OBJECTID": 1091, "Muni": 195, "LocName": "GROVETON FIRE HALL", "Prefix": " ", "House": "4596", "Fraction": " ", "Street": "HAYES", "Suffix1": "AVE", "Suffix2": " ", "City": "CORAOPOLIS", "Zip": "15108-3359", "Leadman": "51", "MuniName": "ROBINSON", "MWD": "1950003", "MWD2": 1950003, "NewAddress": "4596 HAYES AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.141846317548982, 40.507869321127174 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1089, "OBJECTID": 1092, "Muni": 195, "LocName": "HOLY TRINITY SCHOOL", "Prefix": " ", "House": "5718", "Fraction": " ", "Street": "STEUBENVILLE", "Suffix1": "PIKE", "Suffix2": " ", "City": "MC KEES ROCKS", "Zip": "15136-1311", "Leadman": "51", "MuniName": "ROBINSON", "MWD": "1950004", "MWD2": 1950004, "NewAddress": "5718 STEUBENVILLE PIKE" }, "geometry": { "type": "Point", "coordinates": [ -80.136374197850344, 40.452339433004582 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1090, "OBJECTID": 1093, "Muni": 195, "LocName": "FOREST GROVE ELEMENTARY SCHOOL GYM", "Prefix": " ", "House": "1", "Fraction": " ", "Street": "FOREST GROVE", "Suffix1": "RD", "Suffix2": " ", "City": "CORAOPOLIS", "Zip": "15108-3485", "Leadman": "51", "MuniName": "ROBINSON", "MWD": "1950005", "MWD2": 1950005, "NewAddress": "1 FOREST GROVE RD" }, "geometry": { "type": "Point", "coordinates": [ -80.13572056721884, 40.485272927892019 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1091, "OBJECTID": 1094, "Muni": 195, "LocName": "HOLY TRINITY SCHOOL", "Prefix": " ", "House": "5718", "Fraction": " ", "Street": "STEUBENVILLE", "Suffix1": "PIKE", "Suffix2": " ", "City": "MC KEES ROCKS", "Zip": "15136-1311", "Leadman": "51", "MuniName": "ROBINSON", "MWD": "1950006", "MWD2": 1950006, "NewAddress": "5718 STEUBENVILLE PIKE" }, "geometry": { "type": "Point", "coordinates": [ -80.136469982586547, 40.45247038881466 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1092, "OBJECTID": 1095, "Muni": 195, "LocName": "MONTOUR HIGH SCHOOL", "Prefix": " ", "House": "223", "Fraction": " ", "Street": "CLEVER", "Suffix1": "RD", "Suffix2": " ", "City": "MC KEES ROCKS", "Zip": "15136-4012", "Leadman": "51", "MuniName": "ROBINSON", "MWD": "1950007", "MWD2": 1950007, "NewAddress": "223 CLEVER RD" }, "geometry": { "type": "Point", "coordinates": [ -80.117947638820141, 40.466899836910621 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1093, "OBJECTID": 1096, "Muni": 195, "LocName": "BURKETT SCHOOL MAIN LOBBY", "Prefix": " ", "House": "5501", "Fraction": " ", "Street": "STEUBENVILLE", "Suffix1": "PIKE", "Suffix2": " ", "City": "MC KEES ROCKS", "Zip": "15136-1413", "Leadman": "51", "MuniName": "ROBINSON", "MWD": "1950008", "MWD2": 1950008, "NewAddress": "5501 STEUBENVILLE PIKE" }, "geometry": { "type": "Point", "coordinates": [ -80.127344667309728, 40.449892008155039 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1094, "OBJECTID": 1097, "Muni": 195, "LocName": "FOREST GROVE ELEM SCHOOL GYM", "Prefix": " ", "House": "1", "Fraction": " ", "Street": "FOREST GROVE", "Suffix1": "RD", "Suffix2": " ", "City": "CORAOPOLIS", "Zip": "15108-3485", "Leadman": "51", "MuniName": "ROBINSON", "MWD": "1950009", "MWD2": 1950009, "NewAddress": "1 FOREST GROVE RD" }, "geometry": { "type": "Point", "coordinates": [ -80.135956648741058, 40.485169103643948 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1095, "OBJECTID": 1098, "Muni": 196, "LocName": "BERKLY HLS FIRE RR SIDE ENT NEW BAY ADD", "Prefix": " ", "House": "235", "Fraction": " ", "Street": "SIEBERT", "Suffix1": "RD", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15237-3738", "Leadman": "27", "MuniName": "ROSS", "MWD": "1960101", "MWD2": 1960101, "NewAddress": "235 SIEBERT RD" }, "geometry": { "type": "Point", "coordinates": [ -80.006784261338566, 40.529599581616296 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1096, "OBJECTID": 1099, "Muni": 196, "LocName": "ROSS MUNICIPAL BLDG", "Prefix": " ", "House": "1000", "Fraction": " ", "Street": "ROSS MUNICIPAL", "Suffix1": "DR", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15209-1344", "Leadman": "27", "MuniName": "ROSS", "MWD": "1960102", "MWD2": 1960102, "NewAddress": "1000 ROSS MUNICIPAL DR" }, "geometry": { "type": "Point", "coordinates": [ -80.006234416614404, 40.516025738489034 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1097, "OBJECTID": 1100, "Muni": 196, "LocName": "ROSS MUNICIPAL BLDG", "Prefix": " ", "House": "1000", "Fraction": " ", "Street": "ROSS MUNICIPAL", "Suffix1": "DR", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15209-1344", "Leadman": "27", "MuniName": "ROSS", "MWD": "1960103", "MWD2": 1960103, "NewAddress": "1000 ROSS MUNICIPAL DR" }, "geometry": { "type": "Point", "coordinates": [ -80.006199664593154, 40.516242171752232 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1098, "OBJECTID": 1101, "Muni": 196, "LocName": "MCKNIGHT UNITED METHODIST CHURCH", "Prefix": " ", "House": "600", "Fraction": " ", "Street": "FOX", "Suffix1": "DR", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15237-3687", "Leadman": "27", "MuniName": "ROSS", "MWD": "1960104", "MWD2": 1960104, "NewAddress": "600 FOX DR" }, "geometry": { "type": "Point", "coordinates": [ -80.002429802217236, 40.519353987979088 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1099, "OBJECTID": 1102, "Muni": 196, "LocName": "N H CH OF CHRIST FELLOWSHIP RM", "Prefix": " ", "House": "797", "Fraction": " ", "Street": "THOMPSON RUN", "Suffix1": "RD", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15237-3979", "Leadman": "27", "MuniName": "ROSS", "MWD": "1960201", "MWD2": 1960201, "NewAddress": "797 THOMPSON RUN RD" }, "geometry": { "type": "Point", "coordinates": [ -79.998727576379991, 40.551979993853919 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1100, "OBJECTID": 1103, "Muni": 196, "LocName": "BERKELEY HILLS LUTHERAN CHURCH", "Prefix": " ", "House": "517", "Fraction": " ", "Street": "SANGREE", "Suffix1": "RD", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15237-3949", "Leadman": "27", "MuniName": "ROSS", "MWD": "1960202", "MWD2": 1960202, "NewAddress": "517 SANGREE RD" }, "geometry": { "type": "Point", "coordinates": [ -80.000640803552699, 40.533931775750304 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1101, "OBJECTID": 1104, "Muni": 196, "LocName": "BERKELEY HILLS LUTHERN CHURCH", "Prefix": " ", "House": "517", "Fraction": " ", "Street": "SANGREE", "Suffix1": "RD", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15237-3949", "Leadman": "27", "MuniName": "ROSS", "MWD": "1960203", "MWD2": 1960203, "NewAddress": "517 SANGREE RD" }, "geometry": { "type": "Point", "coordinates": [ -80.000468961737042, 40.533988537251211 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1102, "OBJECTID": 1105, "Muni": 196, "LocName": "NORTH HILL JR HIGH SCHOOL GYM", "Prefix": " ", "House": "55", "Fraction": " ", "Street": "ROCHESTER", "Suffix1": "RD", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15229-1141", "Leadman": "27", "MuniName": "ROSS", "MWD": "1960301", "MWD2": 1960301, "NewAddress": "55 ROCHESTER RD" }, "geometry": { "type": "Point", "coordinates": [ -80.026091428517489, 40.523776520098451 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1103, "OBJECTID": 1106, "Muni": 196, "LocName": "NORTH HILLS JR HIGH SCHOOL GYM", "Prefix": " ", "House": "55", "Fraction": " ", "Street": "ROCHESTER", "Suffix1": "RD", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15229-1141", "Leadman": "27", "MuniName": "ROSS", "MWD": "1960302", "MWD2": 1960302, "NewAddress": "55 ROCHESTER RD" }, "geometry": { "type": "Point", "coordinates": [ -80.025612153326279, 40.523600938710437 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1104, "OBJECTID": 1107, "Muni": 196, "LocName": "NORTH HILLS JR HIGH SCHOOL GYM", "Prefix": " ", "House": "55", "Fraction": " ", "Street": "ROCHESTER", "Suffix1": "RD", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15229-1141", "Leadman": "27", "MuniName": "ROSS", "MWD": "1960303", "MWD2": 1960303, "NewAddress": "55 ROCHESTER RD" }, "geometry": { "type": "Point", "coordinates": [ -80.025537934361822, 40.523796216766961 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1105, "OBJECTID": 1108, "Muni": 196, "LocName": "NORTH HILLS JR HIGH SCHOOL GYM", "Prefix": " ", "House": "55", "Fraction": " ", "Street": "ROCHESTER", "Suffix1": "RD", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15229-1141", "Leadman": "27", "MuniName": "ROSS", "MWD": "1960304", "MWD2": 1960304, "NewAddress": "55 ROCHESTER RD" }, "geometry": { "type": "Point", "coordinates": [ -80.025169094686547, 40.52415586831976 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1106, "OBJECTID": 1109, "Muni": 196, "LocName": "HIGHCLIFF SCHOOL", "Prefix": " ", "House": "156", "Fraction": " ", "Street": "PEONY", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15229-1075", "Leadman": "27", "MuniName": "ROSS", "MWD": "1960401", "MWD2": 1960401, "NewAddress": "156 PEONY AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.055965712318837, 40.524707417793728 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1107, "OBJECTID": 1110, "Muni": 196, "LocName": "HICHCLIFF SCHOOL", "Prefix": " ", "House": "156", "Fraction": " ", "Street": "PEONY", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15229-1075", "Leadman": "27", "MuniName": "ROSS", "MWD": "1960402", "MWD2": 1960402, "NewAddress": "156 PEONY AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.05575158031931, 40.524757119389356 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1108, "OBJECTID": 1111, "Muni": 196, "LocName": "ST TERESA SHOPPOL HALL", "Prefix": " ", "House": "1000", "Fraction": " ", "Street": "AVILA", "Suffix1": "CT", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15237-2127", "Leadman": "27", "MuniName": "ROSS", "MWD": "1960403", "MWD2": 1960403, "NewAddress": "1000 AVILA CT" }, "geometry": { "type": "Point", "coordinates": [ -80.038849320100113, 40.53878299962215 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1109, "OBJECTID": 1112, "Muni": 196, "LocName": "PERRYTOWN PLACE COM RM RR ENT", "Prefix": " ", "House": "101", "Fraction": " ", "Street": "HIGHLAND PINES", "Suffix1": "DR", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15237", "Leadman": "27", "MuniName": "ROSS", "MWD": "1960404", "MWD2": 1960404, "NewAddress": "101 HIGHLAND PINES DR" }, "geometry": { "type": "Point", "coordinates": [ -80.038868061048035, 40.548427741723984 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1110, "OBJECTID": 1113, "Muni": 196, "LocName": "ST TERESA-SHOPPOL HALL", "Prefix": " ", "House": "1000", "Fraction": " ", "Street": "AVILA", "Suffix1": "CT", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15237-2127", "Leadman": "27", "MuniName": "ROSS", "MWD": "1960501", "MWD2": 1960501, "NewAddress": "1000 AVILA CT" }, "geometry": { "type": "Point", "coordinates": [ -80.038849320100113, 40.53878299962215 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1111, "OBJECTID": 1114, "Muni": 196, "LocName": "ST TERESA SHOPPOL HALL", "Prefix": " ", "House": "1000", "Fraction": " ", "Street": "AVILA", "Suffix1": "CT", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15237-2127", "Leadman": "27", "MuniName": "ROSS", "MWD": "1960502", "MWD2": 1960502, "NewAddress": "1000 AVILA CT" }, "geometry": { "type": "Point", "coordinates": [ -80.038849320100113, 40.53878299962215 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1112, "OBJECTID": 1115, "Muni": 196, "LocName": "PERRYTOWN PLACE COM RM RR ENT", "Prefix": " ", "House": "101", "Fraction": " ", "Street": "HIGHLAND PINES", "Suffix1": "DR", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15237", "Leadman": "27", "MuniName": "ROSS", "MWD": "1960503", "MWD2": 1960503, "NewAddress": "101 HIGHLAND PINES DR" }, "geometry": { "type": "Point", "coordinates": [ -80.039014928033623, 40.54845431114655 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1113, "OBJECTID": 1116, "Muni": 196, "LocName": "ST TERESA-SHOPPOL HALL", "Prefix": " ", "House": "1000", "Fraction": " ", "Street": "AVILA", "Suffix1": "CT", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15237-2127", "Leadman": "27", "MuniName": "ROSS", "MWD": "1960504", "MWD2": 1960504, "NewAddress": "1000 AVILA CT" }, "geometry": { "type": "Point", "coordinates": [ -80.038849320100113, 40.53878299962215 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1114, "OBJECTID": 1117, "Muni": 196, "LocName": "MT. ASSISI-SCHOOL GYM", "Prefix": " ", "House": "934", "Fraction": " ", "Street": "FOREST", "Suffix1": "AVE", "Suffix2": " ", "City": "BELLVUE", "Zip": "15202-1171", "Leadman": "27", "MuniName": "ROSS", "MWD": "1960601", "MWD2": 1960601, "NewAddress": "934 FOREST AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.049875270219729, 40.507306465682468 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1115, "OBJECTID": 1118, "Muni": 196, "LocName": "MT. ASSISI-SCHOOL GYM", "Prefix": " ", "House": "934", "Fraction": " ", "Street": "FOREST", "Suffix1": "AVE", "Suffix2": " ", "City": "BELLVUE", "Zip": "15202-1171", "Leadman": "27", "MuniName": "ROSS", "MWD": "1960602", "MWD2": 1960602, "NewAddress": "934 FOREST AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.050124389562541, 40.507174294152115 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1116, "OBJECTID": 1119, "Muni": 196, "LocName": "SEVILLE VOLUNTEER FIRE CO", "Prefix": " ", "House": "124", "Fraction": " ", "Street": "ENGER", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15214-1005", "Leadman": "27", "MuniName": "ROSS", "MWD": "1960604", "MWD2": 1960604, "NewAddress": "124 ENGER AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.040390890277976, 40.495676159447306 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1117, "OBJECTID": 1120, "Muni": 196, "LocName": "ROSS MUNICIPAL BLDG", "Prefix": " ", "House": "1000", "Fraction": " ", "Street": "ROSS MUNICIPAL", "Suffix1": "DR", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15209-1344", "Leadman": "27", "MuniName": "ROSS", "MWD": "1960701", "MWD2": 1960701, "NewAddress": "1000 ROSS MUNICIPAL DR" }, "geometry": { "type": "Point", "coordinates": [ -80.006308341154607, 40.516556822254628 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1118, "OBJECTID": 1121, "Muni": 196, "LocName": "KEATING VOLUNTEER FIRE CO.", "Prefix": " ", "House": "39", "Fraction": " ", "Street": "WEST VIEW", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15229-2238", "Leadman": "27", "MuniName": "ROSS", "MWD": "1960702", "MWD2": 1960702, "NewAddress": "39 WEST VIEW AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.021015801585108, 40.500965284882163 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1119, "OBJECTID": 1122, "Muni": 196, "LocName": "KEATING VOLUNTEER FIRE CO.", "Prefix": " ", "House": "39", "Fraction": " ", "Street": "WEST VIEW", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15229-2238", "Leadman": "27", "MuniName": "ROSS", "MWD": "1960703", "MWD2": 1960703, "NewAddress": "39 WEST VIEW AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.02087922177158, 40.501043881533001 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1120, "OBJECTID": 1123, "Muni": 196, "LocName": "SEVILLE VOLUNTEER FIRE CO", "Prefix": " ", "House": "124", "Fraction": " ", "Street": "ENGER", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15214-1005", "Leadman": "27", "MuniName": "ROSS", "MWD": "1960704", "MWD2": 1960704, "NewAddress": "124 ENGER AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.040459462300547, 40.495758489746876 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1121, "OBJECTID": 1124, "Muni": 196, "LocName": "CORBETT TOWERS", "Prefix": " ", "House": "175", "Fraction": " ", "Street": "CORBETT", "Suffix1": "CT", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15237-3033", "Leadman": "27", "MuniName": "ROSS", "MWD": "1960802", "MWD2": 1960802, "NewAddress": "175 CORBETT CT" }, "geometry": { "type": "Point", "coordinates": [ -80.020749438185305, 40.546804150188827 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1122, "OBJECTID": 1125, "Muni": 196, "LocName": "N H CH OF CHRIST SUNDAY SCH RM", "Prefix": " ", "House": "797", "Fraction": " ", "Street": "THOMPSON RUN", "Suffix1": "RD", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15237-3979", "Leadman": "27", "MuniName": "ROSS", "MWD": "1960901", "MWD2": 1960901, "NewAddress": "797 THOMPSON RUN RD" }, "geometry": { "type": "Point", "coordinates": [ -79.998652025566642, 40.551871719582799 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1123, "OBJECTID": 1126, "Muni": 196, "LocName": "MCINTYRE ELEMENTARY SCHOOL GYM", "Prefix": " ", "House": "200", "Fraction": " ", "Street": "MCINTYRE", "Suffix1": "RD", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15237-4035", "Leadman": "27", "MuniName": "ROSS", "MWD": "1960903", "MWD2": 1960903, "NewAddress": "200 MCINTYRE RD" }, "geometry": { "type": "Point", "coordinates": [ -80.003920303528091, 40.549150266261826 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1124, "OBJECTID": 1127, "Muni": 197, "LocName": "OLD SCHOOL BUILDING", "Prefix": " ", "House": " ", "Fraction": " ", "Street": "KINGS", "Suffix1": "HWY", "Suffix2": " ", "City": "CARNEGIE", "Zip": "15106", "Leadman": "18", "MuniName": "ROSSLYN FARM", "MWD": "1970001", "MWD2": 1970001, "NewAddress": " KINGS HWY" }, "geometry": { "type": "Point", "coordinates": [ -80.091566187448976, 40.423166261400922 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1125, "OBJECTID": 1128, "Muni": 198, "LocName": "POLISH AMERICAN CITIZENS CLUB SOCIAL HALL", "Prefix": " ", "House": "811", "Fraction": " ", "Street": "PAUL", "Suffix1": "ST", "Suffix2": " ", "City": "CARNEGIE", "Zip": "15106-3543", "Leadman": "26", "MuniName": "SCOTT", "MWD": "1980101", "MWD2": 1980101, "NewAddress": "811 PAUL ST" }, "geometry": { "type": "Point", "coordinates": [ -80.090609623102779, 40.396406262376253 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1126, "OBJECTID": 1129, "Muni": 198, "LocName": "POLISH AMERICAN CITIZENS CLUB SOCIAL HALL", "Prefix": " ", "House": "811", "Fraction": " ", "Street": "PAUL", "Suffix1": "ST", "Suffix2": " ", "City": "CARNEGIE", "Zip": "15106-3543", "Leadman": "26", "MuniName": "SCOTT", "MWD": "1980102", "MWD2": 1980102, "NewAddress": "811 PAUL ST" }, "geometry": { "type": "Point", "coordinates": [ -80.09062356577914, 40.396499152861651 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1127, "OBJECTID": 1130, "Muni": 198, "LocName": "SCOTT PARK COMMUNITY BLDG", "Prefix": " ", "House": "301", "Fraction": " ", "Street": "LINDSAY", "Suffix1": "RD", "Suffix2": " ", "City": "CARNEGIE", "Zip": "15106", "Leadman": "26", "MuniName": "SCOTT", "MWD": "1980201", "MWD2": 1980201, "NewAddress": "301 LINDSAY RD" }, "geometry": { "type": "Point", "coordinates": [ -80.083730643929428, 40.387167058335145 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1128, "OBJECTID": 1131, "Muni": 198, "LocName": "SCOTT PARK COMMUNITY BLDG", "Prefix": " ", "House": "301", "Fraction": " ", "Street": "LINDSAY", "Suffix1": "RD", "Suffix2": " ", "City": "CARNEGIE", "Zip": "15106", "Leadman": "26", "MuniName": "SCOTT", "MWD": "1980202", "MWD2": 1980202, "NewAddress": "301 LINDSAY RD" }, "geometry": { "type": "Point", "coordinates": [ -80.084110879426277, 40.386793386677795 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1129, "OBJECTID": 1132, "Muni": 198, "LocName": "VANADIUM WOODS VILLAGE COMMUNITY RM", "Prefix": " ", "House": "50", "Fraction": " ", "Street": "VANADIUM", "Suffix1": "RD", "Suffix2": " ", "City": "SCOTT", "Zip": "15017-3042", "Leadman": "26", "MuniName": "SCOTT", "MWD": "1980301", "MWD2": 1980301, "NewAddress": "50 VANADIUM RD" }, "geometry": { "type": "Point", "coordinates": [ -80.093719950868106, 40.374437286031046 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1130, "OBJECTID": 1133, "Muni": 198, "LocName": "VANADIUM WOODS VILLAGE COMMUNITY RM", "Prefix": " ", "House": "50", "Fraction": " ", "Street": "VANADIUM", "Suffix1": "RD", "Suffix2": " ", "City": "SCOTT", "Zip": "15017-3042", "Leadman": "26", "MuniName": "SCOTT", "MWD": "1980302", "MWD2": 1980302, "NewAddress": "50 VANADIUM RD" }, "geometry": { "type": "Point", "coordinates": [ -80.093418004938741, 40.374282000759131 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1131, "OBJECTID": 1134, "Muni": 198, "LocName": "OUR LADY OF GRACE CHURCH", "Prefix": " ", "House": "310", "Fraction": " ", "Street": "KANE", "Suffix1": "BLVD", "Suffix2": " ", "City": "SCOTT", "Zip": "15243-1430", "Leadman": "26", "MuniName": "SCOTT", "MWD": "1980401", "MWD2": 1980401, "NewAddress": "310 KANE BLVD" }, "geometry": { "type": "Point", "coordinates": [ -80.085074587742412, 40.373280517415523 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1132, "OBJECTID": 1135, "Muni": 198, "LocName": "OUR LADY OF GRACE CHURCH HALL", "Prefix": " ", "House": "310", "Fraction": " ", "Street": "KANE", "Suffix1": "BLVD", "Suffix2": " ", "City": "SCOTT", "Zip": "15243-1430", "Leadman": "26", "MuniName": "SCOTT", "MWD": "1980402", "MWD2": 1980402, "NewAddress": "310 KANE BLVD" }, "geometry": { "type": "Point", "coordinates": [ -80.084770006364877, 40.372864769015635 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1133, "OBJECTID": 1136, "Muni": 198, "LocName": "SCOTT TWP MUNI BLDG 1ST FL", "Prefix": " ", "House": "301", "Fraction": " ", "Street": "LINDSAY", "Suffix1": "RD", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15239-2209", "Leadman": "26", "MuniName": "SCOTT", "MWD": "1980501", "MWD2": 1980501, "NewAddress": "301 LINDSAY RD" }, "geometry": { "type": "Point", "coordinates": [ -80.088689381370969, 40.395622183717869 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1134, "OBJECTID": 1137, "Muni": 198, "LocName": "CHARTIERS VALLEY INTERMED SCH", "Prefix": " ", "House": "2030", "Fraction": " ", "Street": "SWALLOW HILL", "Suffix1": "RD", "Suffix2": " ", "City": "SCOTT", "Zip": "15220-1627", "Leadman": "26", "MuniName": "SCOTT", "MWD": "1980502", "MWD2": 1980502, "NewAddress": "2030 SWALLOW HILL RD" }, "geometry": { "type": "Point", "coordinates": [ -80.078561605866014, 40.396479423926856 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1135, "OBJECTID": 1138, "Muni": 198, "LocName": "CONVENANT PRESBYTERIAN CHURCH", "Prefix": " ", "House": "1630", "Fraction": " ", "Street": "GREENTREE", "Suffix1": "RD", "Suffix2": " ", "City": "SCOTT", "Zip": "15220-1910", "Leadman": "26", "MuniName": "SCOTT", "MWD": "1980601", "MWD2": 1980601, "NewAddress": "1630 GREENTREE RD" }, "geometry": { "type": "Point", "coordinates": [ -80.064666389206337, 40.400759427255437 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1136, "OBJECTID": 1139, "Muni": 198, "LocName": "CONVENANT PRESBYTERIAN CHURCH", "Prefix": " ", "House": "1630", "Fraction": " ", "Street": "GREENTREE", "Suffix1": "RD", "Suffix2": " ", "City": "SCOTT", "Zip": "15220-1910", "Leadman": "26", "MuniName": "SCOTT", "MWD": "1980602", "MWD2": 1980602, "NewAddress": "1630 GREENTREE RD" }, "geometry": { "type": "Point", "coordinates": [ -80.064566647113779, 40.400805885863754 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1137, "OBJECTID": 1140, "Muni": 198, "LocName": "ST STEPHEN LUTHERAN CHURCH", "Prefix": " ", "House": "55", "Fraction": " ", "Street": "FORSYTHE", "Suffix1": "RD", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15220-1726", "Leadman": "26", "MuniName": "SCOTT", "MWD": "1980701", "MWD2": 1980701, "NewAddress": "55 FORSYTHE RD" }, "geometry": { "type": "Point", "coordinates": [ -80.067062378866297, 40.400202903350419 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1138, "OBJECTID": 1141, "Muni": 198, "LocName": "ST STEPHEN LUTHERAN CHURCH", "Prefix": " ", "House": "55", "Fraction": " ", "Street": "FORSYTHE", "Suffix1": "RD", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15220-1726", "Leadman": "26", "MuniName": "SCOTT", "MWD": "1980702", "MWD2": 1980702, "NewAddress": "55 FORSYTHE RD" }, "geometry": { "type": "Point", "coordinates": [ -80.067084330766548, 40.400300447919321 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1139, "OBJECTID": 1142, "Muni": 198, "LocName": "OUR LADY OF VICTORY CHURCH", "Prefix": " ", "House": "1000", "Fraction": " ", "Street": "LINDSAY", "Suffix1": "RD", "Suffix2": " ", "City": "CARNEGIE", "Zip": "15106", "Leadman": "26", "MuniName": "SCOTT", "MWD": "1980801", "MWD2": 1980801, "NewAddress": "1000 LINDSAY RD" }, "geometry": { "type": "Point", "coordinates": [ -80.075404079753469, 40.385513729281101 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1140, "OBJECTID": 1143, "Muni": 198, "LocName": "OUR LADY OF VICTORY CHURCH", "Prefix": " ", "House": "1000", "Fraction": " ", "Street": "LINDSAY", "Suffix1": "RD", "Suffix2": " ", "City": "CARNEGIE", "Zip": "15106", "Leadman": "26", "MuniName": "SCOTT", "MWD": "1980802", "MWD2": 1980802, "NewAddress": "1000 LINDSAY RD" }, "geometry": { "type": "Point", "coordinates": [ -80.075003566337088, 40.385442389855818 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1141, "OBJECTID": 1144, "Muni": 198, "LocName": "SS SIMON & JUDE SCHOOL GYM", "Prefix": " ", "House": "1625", "Fraction": " ", "Street": "GREENTREE", "Suffix1": "RD", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15220-1909", "Leadman": "26", "MuniName": "SCOTT", "MWD": "1980901", "MWD2": 1980901, "NewAddress": "1625 GREENTREE RD" }, "geometry": { "type": "Point", "coordinates": [ -80.063356365186493, 40.399970177905658 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1142, "OBJECTID": 1145, "Muni": 198, "LocName": "SS SIMON & JUDE SCHOOL GYM", "Prefix": " ", "House": "1625", "Fraction": " ", "Street": "GREENTREE", "Suffix1": "RD", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15220-1909", "Leadman": "26", "MuniName": "SCOTT", "MWD": "1980902", "MWD2": 1980902, "NewAddress": "1625 GREENTREE RD" }, "geometry": { "type": "Point", "coordinates": [ -80.062892487016441, 40.399941645614454 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1143, "OBJECTID": 1146, "Muni": 199, "LocName": "ST STEPHENS CHURCH", "Prefix": " ", "House": "405", "Fraction": " ", "Street": "FREDERICK", "Suffix1": "AVE", "Suffix2": " ", "City": "SEWICKLEY", "Zip": "15143-1529", "Leadman": "37", "MuniName": "SEWICKLEY", "MWD": "1990100", "MWD2": 1990100, "NewAddress": "405 FREDERICK AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.18306235149349, 40.538840848483531 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1144, "OBJECTID": 1147, "Muni": 199, "LocName": "ST STEPHENS CHURCH", "Prefix": " ", "House": "405", "Fraction": " ", "Street": "FREDERICK", "Suffix1": "AVE", "Suffix2": " ", "City": "SEWICKLEY", "Zip": "15143-1529", "Leadman": "37", "MuniName": "SEWICKLEY", "MWD": "1990201", "MWD2": 1990201, "NewAddress": "405 FREDERICK AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.183231404801958, 40.538806982850232 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1145, "OBJECTID": 1148, "Muni": 199, "LocName": "ST STEPHENS CHURCH", "Prefix": " ", "House": "405", "Fraction": " ", "Street": "FREDERICK", "Suffix1": "AVE", "Suffix2": " ", "City": "SEWICKLEY", "Zip": "15143-1529", "Leadman": "37", "MuniName": "SEWICKLEY", "MWD": "1990202", "MWD2": 1990202, "NewAddress": "405 FREDERICK AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.183088692650415, 40.53873203822539 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1146, "OBJECTID": 1149, "Muni": 199, "LocName": "ST STEPHENS CHURCH", "Prefix": " ", "House": "405", "Fraction": " ", "Street": "FREDERICK", "Suffix1": "AVE", "Suffix2": " ", "City": "SEWICKLEY", "Zip": "15143-1529", "Leadman": "37", "MuniName": "SEWICKLEY", "MWD": "1990300", "MWD2": 1990300, "NewAddress": "405 FREDERICK AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.183273652069772, 40.538719488847804 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1147, "OBJECTID": 1150, "Muni": 200, "LocName": "BORO FIRE HALL", "Prefix": " ", "House": "0", "Fraction": " ", "Street": "COUNTRY CLUB", "Suffix1": "DR", "Suffix2": " ", "City": "SEWICKLEY", "Zip": "15143", "Leadman": "37", "MuniName": "SEWICKLEY HT", "MWD": "2000001", "MWD2": 2000001, "NewAddress": "0 COUNTRY CLUB DR" }, "geometry": { "type": "Point", "coordinates": [ -80.164764837146777, 40.560670297138337 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1148, "OBJECTID": 1151, "Muni": 201, "LocName": "SEWICKLEY HILL MUNI BLDG 1ST FLR", "Prefix": " ", "House": "349", "Fraction": " ", "Street": "MAGEE", "Suffix1": "RD", "Suffix2": " ", "City": "SEWICKLEY", "Zip": "15143-9185", "Leadman": "37", "MuniName": "SEWICKLEY HL", "MWD": "2010001", "MWD2": 2010001, "NewAddress": "349 MAGEE RD" }, "geometry": { "type": "Point", "coordinates": [ -80.123086196758905, 40.561883866804614 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1149, "OBJECTID": 1152, "Muni": 202, "LocName": "CHERRY CITY VOL. FIRE CO.", "Prefix": " ", "House": "309", "Fraction": " ", "Street": "DAVIS", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15209-1803", "Leadman": "15", "MuniName": "SHALER", "MWD": "2020101", "MWD2": 2020101, "NewAddress": "309 DAVIS AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.959033692347916, 40.494676552316157 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1150, "OBJECTID": 1153, "Muni": 202, "LocName": "CHERRY CITY VOL FIRE CO.", "Prefix": " ", "House": "309", "Fraction": " ", "Street": "DAVIS", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15209-1803", "Leadman": "15", "MuniName": "SHALER", "MWD": "2020102", "MWD2": 2020102, "NewAddress": "309 DAVIS AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.958912116757588, 40.49465942482886 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1151, "OBJECTID": 1154, "Muni": 202, "LocName": "SHALER CREST HOUSING ASSOC", "Prefix": " ", "House": "272", "Fraction": " ", "Street": "MOUNT VERNON", "Suffix1": "DR", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15223-1640", "Leadman": "15", "MuniName": "SHALER", "MWD": "2020103", "MWD2": 2020103, "NewAddress": "272 MOUNT VERNON DR" }, "geometry": { "type": "Point", "coordinates": [ -79.954870051279315, 40.495622327770882 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1152, "OBJECTID": 1155, "Muni": 202, "LocName": "MT. ALVERNIA, SCOTUS HALL", "Prefix": " ", "House": "146", "Fraction": " ", "Street": "HAWTHORNE", "Suffix1": "RD", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15209-1916", "Leadman": "15", "MuniName": "SHALER", "MWD": "2020104", "MWD2": 2020104, "NewAddress": "146 HAWTHORNE RD" }, "geometry": { "type": "Point", "coordinates": [ -79.970248973998196, 40.492841449008772 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1153, "OBJECTID": 1156, "Muni": 202, "LocName": "CHERRY CITY VOL. FIRE CO.", "Prefix": " ", "House": "309", "Fraction": " ", "Street": "DAVIS", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15209-1803", "Leadman": "15", "MuniName": "SHALER", "MWD": "2020105", "MWD2": 2020105, "NewAddress": "309 DAVIS AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.959154313612132, 40.494664523525081 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1154, "OBJECTID": 1157, "Muni": 202, "LocName": "BAUERSTOWN VOLUNTEER FIRE CO.", "Prefix": " ", "House": "15", "Fraction": " ", "Street": "WIBLE RUN", "Suffix1": "RD", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15209-1551", "Leadman": "15", "MuniName": "SHALER", "MWD": "2020201", "MWD2": 2020201, "NewAddress": "15 WIBLE RUN RD" }, "geometry": { "type": "Point", "coordinates": [ -79.977462436464592, 40.49895836732982 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1155, "OBJECTID": 1158, "Muni": 202, "LocName": "SHALER AREA SR HI-AUDITORIUM LOBBY", "Prefix": " ", "House": "381", "Fraction": " ", "Street": "WIBLE RUN", "Suffix1": "RD", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15209-1133", "Leadman": "41", "MuniName": "SHALER", "MWD": "2020202", "MWD2": 2020202, "NewAddress": "381 WIBLE RUN RD" }, "geometry": { "type": "Point", "coordinates": [ -79.974019373987318, 40.515161514866705 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1156, "OBJECTID": 1159, "Muni": 202, "LocName": "BAUERSTOWN VOLUNTEER FIRE CO.", "Prefix": " ", "House": "15", "Fraction": " ", "Street": "WIBLE RUN", "Suffix1": "RD", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15209-1551", "Leadman": "15", "MuniName": "SHALER", "MWD": "2020203", "MWD2": 2020203, "NewAddress": "15 WIBLE RUN RD" }, "geometry": { "type": "Point", "coordinates": [ -79.977530839505903, 40.499085052044293 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1157, "OBJECTID": 1160, "Muni": 202, "LocName": "MARZOLF ELEM SCHOOL-FACULTY RM.", "Prefix": " ", "House": "101", "Fraction": " ", "Street": "MARZOLF ROAD", "Suffix1": "EXT", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15209-1119", "Leadman": "15", "MuniName": "SHALER", "MWD": "2020204", "MWD2": 2020204, "NewAddress": "101 MARZOLF ROAD EXT" }, "geometry": { "type": "Point", "coordinates": [ -79.966563609932294, 40.513463860124155 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1158, "OBJECTID": 1161, "Muni": 202, "LocName": "UNDERCLIFF V. F. C.", "Prefix": " ", "House": "700", "Fraction": " ", "Street": "MOUNT ROYAL", "Suffix1": "BLVD", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15223-1208", "Leadman": "15", "MuniName": "SHALER", "MWD": "2020205", "MWD2": 2020205, "NewAddress": "700 MOUNT ROYAL BLVD" }, "geometry": { "type": "Point", "coordinates": [ -79.958677817763245, 40.513960264911432 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1159, "OBJECTID": 1162, "Muni": 202, "LocName": "BURCHFIELD SCH-UPPER LEVEL GYM", "Prefix": " ", "House": "1500", "Fraction": " ", "Street": "BURCHFIELD", "Suffix1": "RD", "Suffix2": " ", "City": "ALLISON PARK", "Zip": "15101-4000", "Leadman": "41", "MuniName": "SHALER", "MWD": "2020301", "MWD2": 2020301, "NewAddress": "1500 BURCHFIELD RD" }, "geometry": { "type": "Point", "coordinates": [ -79.943167976414998, 40.547405739376067 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1160, "OBJECTID": 1163, "Muni": 202, "LocName": "BURCHFIELD SCH-UPPER LEVEL GYM", "Prefix": " ", "House": "1500", "Fraction": " ", "Street": "BURCHFIELD", "Suffix1": "RD", "Suffix2": " ", "City": "ALLISON PARK", "Zip": "15101-4000", "Leadman": "41", "MuniName": "SHALER", "MWD": "2020302", "MWD2": 2020302, "NewAddress": "1500 BURCHFIELD RD" }, "geometry": { "type": "Point", "coordinates": [ -79.94301147843484, 40.547498648862906 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1161, "OBJECTID": 1164, "Muni": 202, "LocName": "BURCHFIELD SCH-UPPER LEVEL GYM", "Prefix": " ", "House": "1500", "Fraction": " ", "Street": "BURCHFIELD", "Suffix1": "RD", "Suffix2": " ", "City": "ALLISON PARK", "Zip": "15101-4000", "Leadman": "41", "MuniName": "SHALER", "MWD": "2020303", "MWD2": 2020303, "NewAddress": "1500 BURCHFIELD RD" }, "geometry": { "type": "Point", "coordinates": [ -79.943133382934477, 40.547514856906353 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1162, "OBJECTID": 1165, "Muni": 202, "LocName": "BURCHFIELD SCH-UPPER LEVEL GYM", "Prefix": " ", "House": "1500", "Fraction": " ", "Street": "BURCHFIELD", "Suffix1": "RD", "Suffix2": " ", "City": "ALLISON PARK", "Zip": "15101-4000", "Leadman": "41", "MuniName": "SHALER", "MWD": "2020304", "MWD2": 2020304, "NewAddress": "1500 BURCHFIELD RD" }, "geometry": { "type": "Point", "coordinates": [ -79.943242543925805, 40.54756569615526 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1163, "OBJECTID": 1166, "Muni": 202, "LocName": "BURCHFIELD SCH-UPPER LEVEL GYM", "Prefix": " ", "House": "1500", "Fraction": " ", "Street": "BURCHFIELD", "Suffix1": "RD", "Suffix2": " ", "City": "ALLISON PARK", "Zip": "15101-4000", "Leadman": "41", "MuniName": "SHALER", "MWD": "2020305", "MWD2": 2020305, "NewAddress": "1500 BURCHFIELD RD" }, "geometry": { "type": "Point", "coordinates": [ -79.943098358879183, 40.547610754534858 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1164, "OBJECTID": 1167, "Muni": 202, "LocName": "GLENSHAW VALLEY PRESBY CH", "Prefix": " ", "House": "1520", "Fraction": " ", "Street": "BUTLER PLANK", "Suffix1": "RD", "Suffix2": " ", "City": "GLENSHAW", "Zip": "15116-2318", "Leadman": "41", "MuniName": "SHALER", "MWD": "2020401", "MWD2": 2020401, "NewAddress": "1520 BUTLER PLANK RD" }, "geometry": { "type": "Point", "coordinates": [ -79.957095177602795, 40.529376835416436 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1165, "OBJECTID": 1168, "Muni": 202, "LocName": "GLENSHAW PRESB CH-PENN AVE-PORTICO ENT", "Prefix": " ", "House": "300", "Fraction": " ", "Street": "GLENN", "Suffix1": "AVE", "Suffix2": " ", "City": "GLENSHAW", "Zip": "15116-2410", "Leadman": "41", "MuniName": "SHALER", "MWD": "2020402", "MWD2": 2020402, "NewAddress": "300 GLENN AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.956940609828493, 40.522121236336631 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1166, "OBJECTID": 1169, "Muni": 202, "LocName": "ELFINWILD VOL FIRE SOCIAL HALL", "Prefix": " ", "House": "2807", "Fraction": " ", "Street": "MOUNT ROYAL", "Suffix1": "BLVD", "Suffix2": " ", "City": "GLENSHAW", "Zip": "15116-1649", "Leadman": "41", "MuniName": "SHALER", "MWD": "2020403", "MWD2": 2020403, "NewAddress": "2807 MOUNT ROYAL BLVD" }, "geometry": { "type": "Point", "coordinates": [ -79.972698565952086, 40.541764659641778 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1167, "OBJECTID": 1170, "Muni": 202, "LocName": "ELFINWILD VOL FIRE SOCIAL HALL", "Prefix": " ", "House": "2807", "Fraction": " ", "Street": "MOUNT ROYAL", "Suffix1": "BLVD", "Suffix2": " ", "City": "GLENSHAW", "Zip": "15116-1649", "Leadman": "41", "MuniName": "SHALER", "MWD": "2020404", "MWD2": 2020404, "NewAddress": "2807 MOUNT ROYAL BLVD" }, "geometry": { "type": "Point", "coordinates": [ -79.972780883437821, 40.541953080064694 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1168, "OBJECTID": 1171, "Muni": 202, "LocName": "GLENSHAW PRESB CH-PENN AVE-PORTICO ENT", "Prefix": " ", "House": "300", "Fraction": " ", "Street": "GLENN", "Suffix1": "AVE", "Suffix2": " ", "City": "GLENSHAW", "Zip": "15116-2410", "Leadman": "41", "MuniName": "SHALER", "MWD": "2020405", "MWD2": 2020405, "NewAddress": "300 GLENN AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.956774579224614, 40.522169546858478 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1169, "OBJECTID": 1172, "Muni": 202, "LocName": "JEFFERY ELEM SCH MULTI-PURPOSE ROOM", "Prefix": " ", "House": "201", "Fraction": " ", "Street": "WETZEL", "Suffix1": "RD", "Suffix2": " ", "City": "GLENSHAW", "Zip": "15116-2236", "Leadman": "41", "MuniName": "SHALER", "MWD": "2020501", "MWD2": 2020501, "NewAddress": "201 WETZEL RD" }, "geometry": { "type": "Point", "coordinates": [ -79.968437554764861, 40.524026735023277 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1170, "OBJECTID": 1173, "Muni": 202, "LocName": "SHALER AREA JR HIGH-AUDITORIUM LOBBY", "Prefix": " ", "House": "700", "Fraction": " ", "Street": "SCOTT", "Suffix1": "AVE", "Suffix2": " ", "City": "GLENSHAW", "Zip": "15116-1530", "Leadman": "41", "MuniName": "SHALER", "MWD": "2020502", "MWD2": 2020502, "NewAddress": "700 SCOTT AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.982749025022201, 40.540013009746971 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1171, "OBJECTID": 1174, "Muni": 202, "LocName": "JEFFERY ELEM SCH MULTI-PURPOSE ROOM", "Prefix": " ", "House": "201", "Fraction": " ", "Street": "WETZEL", "Suffix1": "RD", "Suffix2": " ", "City": "GLENSHAW", "Zip": "15116-2236", "Leadman": "41", "MuniName": "SHALER", "MWD": "2020503", "MWD2": 2020503, "NewAddress": "201 WETZEL RD" }, "geometry": { "type": "Point", "coordinates": [ -79.967324809631904, 40.523907044529082 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1172, "OBJECTID": 1175, "Muni": 202, "LocName": "SHALER AREA SR HI-AUDITORIUM LOBBY", "Prefix": " ", "House": "381", "Fraction": " ", "Street": "WIBLE RUN", "Suffix1": "RD", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15209-1133", "Leadman": "41", "MuniName": "SHALER", "MWD": "2020504", "MWD2": 2020504, "NewAddress": "381 WIBLE RUN RD" }, "geometry": { "type": "Point", "coordinates": [ -79.974715626934497, 40.515506826483012 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1173, "OBJECTID": 1176, "Muni": 202, "LocName": "SHALER ELEM SCHOOL CAFE REAR ENT #9", "Prefix": " ", "House": "700", "Fraction": " ", "Street": "SCOTT", "Suffix1": "AVE", "Suffix2": " ", "City": "GLENSHAW", "Zip": "15116-1529", "Leadman": "41", "MuniName": "SHALER", "MWD": "2020505", "MWD2": 2020505, "NewAddress": "700 SCOTT AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.983026568132317, 40.540412296478415 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1174, "OBJECTID": 1177, "Muni": 202, "LocName": "SHALER AREA MIDDLE SCHOOL 1ST FL", "Prefix": " ", "House": "700", "Fraction": " ", "Street": "SCOTT", "Suffix1": "AVE", "Suffix2": " ", "City": "GLENSHAW", "Zip": "15116-1530", "Leadman": "41", "MuniName": "SHALER", "MWD": "2020601", "MWD2": 2020601, "NewAddress": "700 SCOTT AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.982768687510884, 40.539565028651438 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1175, "OBJECTID": 1178, "Muni": 202, "LocName": "ELFINWILD VOL FIRE SOCIAL HALL", "Prefix": " ", "House": "2807", "Fraction": " ", "Street": "MOUNT ROYAL", "Suffix1": "BLVD", "Suffix2": " ", "City": "GLENSHAW", "Zip": "15116-1649", "Leadman": "41", "MuniName": "SHALER", "MWD": "2020602", "MWD2": 2020602, "NewAddress": "2807 MOUNT ROYAL BLVD" }, "geometry": { "type": "Point", "coordinates": [ -79.972715051787333, 40.542054623195554 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1176, "OBJECTID": 1179, "Muni": 202, "LocName": "SHALER ELEM SCHOOL CAFE REAR ENT #9", "Prefix": " ", "House": "700", "Fraction": " ", "Street": "SCOTT", "Suffix1": "AVE", "Suffix2": " ", "City": "GLENSHAW", "Zip": "15116-1529", "Leadman": "41", "MuniName": "SHALER", "MWD": "2020603", "MWD2": 2020603, "NewAddress": "700 SCOTT AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.982513745971218, 40.540406420627527 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1177, "OBJECTID": 1180, "Muni": 202, "LocName": "BURCHFIELD SCH-UPPER LEVEL GYM", "Prefix": " ", "House": "1500", "Fraction": " ", "Street": "BURCHFIELD", "Suffix1": "RD", "Suffix2": " ", "City": "ALLISON PARK", "Zip": "15101-4000", "Leadman": "41", "MuniName": "SHALER", "MWD": "2020604", "MWD2": 2020604, "NewAddress": "1500 BURCHFIELD RD" }, "geometry": { "type": "Point", "coordinates": [ -79.943018604932178, 40.547397988259824 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1178, "OBJECTID": 1181, "Muni": 202, "LocName": "SHALER ELEM SCHOOL CAFE REAR ENT #9", "Prefix": " ", "House": "700", "Fraction": " ", "Street": "SCOTT", "Suffix1": "AVE", "Suffix2": " ", "City": "GLENSHAW", "Zip": "15116-1529", "Leadman": "41", "MuniName": "SHALER", "MWD": "2020605", "MWD2": 2020605, "NewAddress": "700 SCOTT AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.982808567254892, 40.540443138263029 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1179, "OBJECTID": 1182, "Muni": 202, "LocName": "SHARPSHILL VOLUNTEER FIRE CO.", "Prefix": " ", "House": "503", "Fraction": " ", "Street": "BERNER", "Suffix1": "ST", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15215-1205", "Leadman": "15", "MuniName": "SHALER", "MWD": "2020701", "MWD2": 2020701, "NewAddress": "503 BERNER ST" }, "geometry": { "type": "Point", "coordinates": [ -79.938613085446832, 40.502315711790295 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1180, "OBJECTID": 1183, "Muni": 202, "LocName": "UNDERCLIFF V. F. C.", "Prefix": " ", "House": "700", "Fraction": " ", "Street": "MOUNT ROYAL", "Suffix1": "BLVD", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15223-1208", "Leadman": "15", "MuniName": "SHALER", "MWD": "2020702", "MWD2": 2020702, "NewAddress": "700 MOUNT ROYAL BLVD" }, "geometry": { "type": "Point", "coordinates": [ -79.958761475533166, 40.51417579326661 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1181, "OBJECTID": 1184, "Muni": 202, "LocName": "SHALER VILLA VOLUNTEER FIRE CO", "Prefix": " ", "House": "958", "Fraction": " ", "Street": "SAXONBURG", "Suffix1": "BLVD", "Suffix2": " ", "City": "GLENSHAW", "Zip": "15116-2716", "Leadman": "15", "MuniName": "SHALER", "MWD": "2020703", "MWD2": 2020703, "NewAddress": "958 SAXONBURG BLVD" }, "geometry": { "type": "Point", "coordinates": [ -79.944355703032841, 40.515258401442722 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1182, "OBJECTID": 1185, "Muni": 202, "LocName": "SHALER VILLA VOLUNTEER FIRE CO.", "Prefix": " ", "House": "958", "Fraction": " ", "Street": "SAXONBURG", "Suffix1": "BLVD", "Suffix2": " ", "City": "GLENSHAW", "Zip": "15116-2716", "Leadman": "15", "MuniName": "SHALER", "MWD": "2020704", "MWD2": 2020704, "NewAddress": "958 SAXONBURG BLVD" }, "geometry": { "type": "Point", "coordinates": [ -79.944574403572716, 40.5151024420177 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1183, "OBJECTID": 1186, "Muni": 203, "LocName": "MADONNA OF JERUSALEM CH-SOCIAL HALL", "Prefix": " ", "House": "201", "Fraction": " ", "Street": "9TH", "Suffix1": "ST", "Suffix2": " ", "City": "SHARPSBURG", "Zip": "15215-2304", "Leadman": "38", "MuniName": "SHARPSBURG", "MWD": "2030001", "MWD2": 2030001, "NewAddress": "201 9TH ST" }, "geometry": { "type": "Point", "coordinates": [ -79.93397763206859, 40.495326277950284 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1184, "OBJECTID": 1187, "Muni": 203, "LocName": "THE CENTER-FIRST FLOOR", "Prefix": " ", "House": "209", "Fraction": " ", "Street": "13TH", "Suffix1": "ST", "Suffix2": " ", "City": "SHARPSBURG", "Zip": "15215-2418", "Leadman": "38", "MuniName": "SHARPSBURG", "MWD": "2030002", "MWD2": 2030002, "NewAddress": "209 13TH ST" }, "geometry": { "type": "Point", "coordinates": [ -79.92987116476958, 40.495500690870855 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1185, "OBJECTID": 1188, "Muni": 203, "LocName": "SHARPSBURG MUNI BLDG COUNCIL CHAMBERS", "Prefix": " ", "House": "1611", "Fraction": " ", "Street": "MAIN", "Suffix1": "ST", "Suffix2": " ", "City": "SHARPSBURG", "Zip": "15215-2609", "Leadman": "38", "MuniName": "SHARPSBURG", "MWD": "2030003", "MWD2": 2030003, "NewAddress": "1611 MAIN ST" }, "geometry": { "type": "Point", "coordinates": [ -79.924955681524935, 40.494517317096829 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1186, "OBJECTID": 1189, "Muni": 204, "LocName": "HUNTING RIDGE MEETING HOUSE", "Prefix": " ", "House": "401", "Fraction": " ", "Street": "MEETING HOUSE", "Suffix1": "RD", "Suffix2": " ", "City": "BRIDGEVILLE", "Zip": "15017-1112", "Leadman": "49", "MuniName": "S FAYETTE", "MWD": "2040004", "MWD2": 2040004, "NewAddress": "401 MEETING HOUSE RD" }, "geometry": { "type": "Point", "coordinates": [ -80.127334784422501, 40.328016427021339 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1187, "OBJECTID": 1190, "Muni": 205, "LocName": "SOUTH PARK HI RR ENT #17 BAND RM", "Prefix": " ", "House": "2005", "Fraction": " ", "Street": "EAGLE RIDGE", "Suffix1": "DR", "Suffix2": " ", "City": "SOUTH PARK", "Zip": "15129-9289", "Leadman": "40", "MuniName": "SOUTH PARK", "MWD": "2050001", "MWD2": 2050001, "NewAddress": "2005 EAGLE RIDGE DR" }, "geometry": { "type": "Point", "coordinates": [ -79.991777243463133, 40.300137175130153 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1188, "OBJECTID": 1191, "Muni": 205, "LocName": "BROUGHTON VOLUNTEER FIRE CO.", "Prefix": " ", "House": "1030", "Fraction": " ", "Street": "COCHRANS MILL", "Suffix1": "RD", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15236-3608", "Leadman": "34", "MuniName": "SOUTH PARK", "MWD": "2050002", "MWD2": 2050002, "NewAddress": "1030 COCHRANS MILL RD" }, "geometry": { "type": "Point", "coordinates": [ -79.983282082713657, 40.321334955267254 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1189, "OBJECTID": 1192, "Muni": 205, "LocName": "BROUGHTON VOLUNTEER FIRE CO.", "Prefix": " ", "House": "1030", "Fraction": " ", "Street": "COCHRANS MILL", "Suffix1": "RD", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15236-3608", "Leadman": "34", "MuniName": "SOUTH PARK", "MWD": "2050005", "MWD2": 2050005, "NewAddress": "1030 COCHRANS MILL RD" }, "geometry": { "type": "Point", "coordinates": [ -79.983240513920506, 40.321578876612548 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1190, "OBJECTID": 1193, "Muni": 205, "LocName": "SOUTH PARK MIDDLE SCHOOL", "Prefix": " ", "House": "2500", "Fraction": " ", "Street": "STEWART", "Suffix1": "RD", "Suffix2": " ", "City": "SOUTH PARK", "Zip": "15129-9212", "Leadman": "39", "MuniName": "SOUTH PARK", "MWD": "2050006", "MWD2": 2050006, "NewAddress": "2500 STEWART RD" }, "geometry": { "type": "Point", "coordinates": [ -80.013198420178497, 40.294572798976716 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1191, "OBJECTID": 1194, "Muni": 205, "LocName": "SOUTH PARK MUNICIPAL BLDG-COM RM", "Prefix": " ", "House": "2575", "Fraction": " ", "Street": "BROWNSVILLE", "Suffix1": "RD", "Suffix2": " ", "City": "SOUTH PARK", "Zip": "15129-8523", "Leadman": "40", "MuniName": "SOUTH PARK", "MWD": "2050007", "MWD2": 2050007, "NewAddress": "2575 BROWNSVILLE RD" }, "geometry": { "type": "Point", "coordinates": [ -79.996254722583515, 40.29189282905282 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1192, "OBJECTID": 1195, "Muni": 205, "LocName": "BROUGHTON VOLUNTEER FIRE CO", "Prefix": " ", "House": "1030", "Fraction": " ", "Street": "COCHRANS MILL", "Suffix1": "RD", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15236-3608", "Leadman": "34", "MuniName": "SOUTH PARK", "MWD": "2050008", "MWD2": 2050008, "NewAddress": "1030 COCHRANS MILL RD" }, "geometry": { "type": "Point", "coordinates": [ -79.983532195127054, 40.321694786659442 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1193, "OBJECTID": 1196, "Muni": 205, "LocName": "SOUTH PRK HI RR ENT #17 MUSIC RM", "Prefix": " ", "House": "2005", "Fraction": " ", "Street": "EAGLE RIDGE", "Suffix1": "DR", "Suffix2": " ", "City": "SOUTH PARK", "Zip": "15129-9289", "Leadman": "40", "MuniName": "SOUTH PARK", "MWD": "2050009", "MWD2": 2050009, "NewAddress": "2005 EAGLE RIDGE DR" }, "geometry": { "type": "Point", "coordinates": [ -79.991682420451326, 40.300374933635851 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1194, "OBJECTID": 1197, "Muni": 205, "LocName": "SOUTH PARK MUNICIPAL BLDG", "Prefix": " ", "House": "2575", "Fraction": " ", "Street": "BROWNSVILLE", "Suffix1": "RD", "Suffix2": " ", "City": "SOUTH PARK", "Zip": "15129-8523", "Leadman": "40", "MuniName": "SOUTH PARK", "MWD": "2050010", "MWD2": 2050010, "NewAddress": "2575 BROWNSVILLE RD" }, "geometry": { "type": "Point", "coordinates": [ -79.995528904496638, 40.291688349333739 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1195, "OBJECTID": 1198, "Muni": 205, "LocName": "SOUTH PARK MIDDLE SCHOOL", "Prefix": " ", "House": "2500", "Fraction": " ", "Street": "STEWART", "Suffix1": "RD", "Suffix2": " ", "City": "SOUTH PARK", "Zip": "15129-9212", "Leadman": "39", "MuniName": "SOUTH PARK", "MWD": "2050012", "MWD2": 2050012, "NewAddress": "2500 STEWART RD" }, "geometry": { "type": "Point", "coordinates": [ -80.013284412740944, 40.29483695138849 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1196, "OBJECTID": 1199, "Muni": 207, "LocName": "BORO BUILDING", "Prefix": " ", "House": "325", "Fraction": " ", "Street": "SCHOOL", "Suffix1": "ST", "Suffix2": " ", "City": "SPRINGDALE", "Zip": "15144-1343", "Leadman": "45", "MuniName": "SPRINGDAL BR", "MWD": "2070001", "MWD2": 2070001, "NewAddress": "325 SCHOOL ST" }, "geometry": { "type": "Point", "coordinates": [ -79.778367718677075, 40.542118082179584 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1197, "OBJECTID": 1200, "Muni": 207, "LocName": "SRPINGDALE OPEN BIBLE CHURCH 1ST FL", "Prefix": " ", "House": "401", "Fraction": " ", "Street": "COLFAX", "Suffix1": "ST", "Suffix2": " ", "City": "SPRINGDALE", "Zip": "15144-1209", "Leadman": "45", "MuniName": "SPRINGDAL BR", "MWD": "2070002", "MWD2": 2070002, "NewAddress": "401 COLFAX ST" }, "geometry": { "type": "Point", "coordinates": [ -79.784459855252607, 40.543585562999461 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1198, "OBJECTID": 1201, "Muni": 207, "LocName": "SPRINGDALE MANOR", "Prefix": " ", "House": "504", "Fraction": " ", "Street": "PITTSBURGH", "Suffix1": "ST", "Suffix2": " ", "City": "SPRINGDALE", "Zip": "15144-1442", "Leadman": "45", "MuniName": "SPRINGDAL BR", "MWD": "2070003", "MWD2": 2070003, "NewAddress": "504 PITTSBURGH ST" }, "geometry": { "type": "Point", "coordinates": [ -79.786114661871139, 40.541010614656074 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1199, "OBJECTID": 1202, "Muni": 207, "LocName": "SPRINGDALE MANOR", "Prefix": " ", "House": "504", "Fraction": " ", "Street": "PITTSBURGH", "Suffix1": "ST", "Suffix2": " ", "City": "SPRINGDALE", "Zip": "15144-1442", "Leadman": "45", "MuniName": "SPRINGDAL BR", "MWD": "2070004", "MWD2": 2070004, "NewAddress": "504 PITTSBURGH ST" }, "geometry": { "type": "Point", "coordinates": [ -79.786077934813974, 40.540874427676329 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1200, "OBJECTID": 1203, "Muni": 208, "LocName": "SPRINGDALE TWP MEETING ROOM", "Prefix": " ", "House": "100", "Fraction": " ", "Street": "PLATE", "Suffix1": "DR", "Suffix2": " ", "City": "HARWICK", "Zip": "15049-8987", "Leadman": "45", "MuniName": "SPRINGDAL TP", "MWD": "2080001", "MWD2": 2080001, "NewAddress": "100 PLATE DR" }, "geometry": { "type": "Point", "coordinates": [ -79.805813746238059, 40.554727055043884 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1201, "OBJECTID": 1204, "Muni": 209, "LocName": "MOTHER SORROW SOC HL LL KITCH ENT", "Prefix": " ", "House": "10", "Fraction": " ", "Street": "DESIDERIO", "Suffix1": "WAY", "Suffix2": " ", "City": "MC KEES ROCKS", "Zip": "15136-2169", "Leadman": "50", "MuniName": "STOWE", "MWD": "2090100", "MWD2": 2090100, "NewAddress": "10 DESIDERIO WAY" }, "geometry": { "type": "Point", "coordinates": [ -80.066538194880536, 40.475805350451573 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1202, "OBJECTID": 1205, "Muni": 209, "LocName": "MOTHER SORROW SOC HL LL KITCH ENT", "Prefix": " ", "House": "10", "Fraction": " ", "Street": "DESIDERIO", "Suffix1": "WAY", "Suffix2": " ", "City": "MC KEES ROCKS", "Zip": "15136-2169", "Leadman": "50", "MuniName": "STOWE", "MWD": "2090201", "MWD2": 2090201, "NewAddress": "10 DESIDERIO WAY" }, "geometry": { "type": "Point", "coordinates": [ -80.066573861730276, 40.475673028989 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1203, "OBJECTID": 1206, "Muni": 209, "LocName": "PLEASANT RIDGE CONF. RM 139", "Prefix": " ", "House": "251", "Fraction": " ", "Street": "JEFFERSON", "Suffix1": "DR", "Suffix2": " ", "City": "MC KEES ROCKS", "Zip": "15136-3767", "Leadman": "50", "MuniName": "STOWE", "MWD": "2090202", "MWD2": 2090202, "NewAddress": "251 JEFFERSON DR" }, "geometry": { "type": "Point", "coordinates": [ -80.076257731387855, 40.480130062566722 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1204, "OBJECTID": 1207, "Muni": 209, "LocName": "PRESTON VFD", "Prefix": " ", "House": "369", "Fraction": " ", "Street": "HELEN", "Suffix1": "ST", "Suffix2": " ", "City": "MC KEES ROCKS", "Zip": "15136-255", "Leadman": "50", "MuniName": "STOWE", "MWD": "2090300", "MWD2": 2090300, "NewAddress": "369 HELEN ST" }, "geometry": { "type": "Point", "coordinates": [ -80.059017634283705, 40.475916717455199 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1205, "OBJECTID": 1208, "Muni": 209, "LocName": "RECON MANUFACTURING OFFICE", "Prefix": " ", "House": "1400", "Fraction": " ", "Street": "FLEMING", "Suffix1": "AVE", "Suffix2": " ", "City": "MCKEES ROCKS", "Zip": "15136", "Leadman": "50", "MuniName": "STOWE", "MWD": "2090401", "MWD2": 2090401, "NewAddress": "1400 FLEMING AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.072773467749997, 40.486158636883246 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1206, "OBJECTID": 1209, "Muni": 209, "LocName": "RESIDENCE GARAGE", "Prefix": " ", "House": "106", "Fraction": " ", "Street": "HOMER", "Suffix1": "CIR", "Suffix2": " ", "City": "MC KEES ROCKS", "Zip": "15136-2040", "Leadman": "50", "MuniName": "STOWE", "MWD": "2090402", "MWD2": 2090402, "NewAddress": "106 HOMER CIR" }, "geometry": { "type": "Point", "coordinates": [ -80.085889033514832, 40.489258528683855 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1207, "OBJECTID": 1210, "Muni": 209, "LocName": "STOWE VFD", "Prefix": " ", "House": "548", "Fraction": " ", "Street": "BROADWAY", "Suffix1": "AVE", "Suffix2": " ", "City": "MC KEES ROCKS", "Zip": "15136-2227", "Leadman": "50", "MuniName": "STOWE", "MWD": "2090500", "MWD2": 2090500, "NewAddress": "548 BROADWAY AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.070991342237221, 40.470887047364592 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1208, "OBJECTID": 1211, "Muni": 209, "LocName": "STOWE VFD", "Prefix": " ", "House": "548", "Fraction": " ", "Street": "BROADWAY", "Suffix1": "AVE", "Suffix2": " ", "City": "MC KEES ROCKS", "Zip": "15136-2227", "Leadman": "50", "MuniName": "STOWE", "MWD": "2090600", "MWD2": 2090600, "NewAddress": "548 BROADWAY AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.070862630416613, 40.470773704288071 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1209, "OBJECTID": 1212, "Muni": 209, "LocName": "STOWE VFD", "Prefix": " ", "House": "548", "Fraction": " ", "Street": "BROADWAY", "Suffix1": "AVE", "Suffix2": " ", "City": "MC KEES ROCKS", "Zip": "15136-2227", "Leadman": "50", "MuniName": "STOWE", "MWD": "2090700", "MWD2": 2090700, "NewAddress": "548 BROADWAY AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.070781374529886, 40.470765030155341 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1210, "OBJECTID": 1213, "Muni": 209, "LocName": "AUTOMOBILE SHOWROOM", "Prefix": " ", "House": "612", "Fraction": " ", "Street": "BROADWAY", "Suffix1": "AVE", "Suffix2": " ", "City": "MC KEES ROCKS", "Zip": "15136-3008", "Leadman": "50", "MuniName": "STOWE", "MWD": "2090800", "MWD2": 2090800, "NewAddress": "612 BROADWAY AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.071702446041613, 40.471374578718297 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1211, "OBJECTID": 1214, "Muni": 209, "LocName": "STO ROX SENIOR HIGH SCHOOL", "Prefix": "N", "House": "1105", "Fraction": " ", "Street": "VALLEY", "Suffix1": "RD", "Suffix2": " ", "City": "POTTSTOWN", "Zip": "19464-2821", "Leadman": "50", "MuniName": "STOWE", "MWD": "2090900", "MWD2": 2090900, "NewAddress": "1105 VALLEY RD" }, "geometry": { "type": "Point", "coordinates": [ -80.074038125554537, 40.471112413053596 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1212, "OBJECTID": 1215, "Muni": 210, "LocName": "CALVARY APOSTOLIC CHURCH", "Prefix": " ", "House": "2464", "Fraction": " ", "Street": "WOODSTOCK", "Suffix1": "AVE", "Suffix2": " ", "City": "SWISSVALE", "Zip": "15218-2631", "Leadman": "31", "MuniName": "SWISSVALE", "MWD": "2100001", "MWD2": 2100001, "NewAddress": "2464 WOODSTOCK AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.879538237648475, 40.416040071724098 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1213, "OBJECTID": 1216, "Muni": 210, "LocName": "MUNICIPAL BLDG", "Prefix": " ", "House": "7560", "Fraction": " ", "Street": "ROSLYN", "Suffix1": "ST", "Suffix2": " ", "City": "SWISSVALE", "Zip": "15218-2556", "Leadman": "31", "MuniName": "SWISSVALE", "MWD": "2100002", "MWD2": 2100002, "NewAddress": "7560 ROSLYN ST" }, "geometry": { "type": "Point", "coordinates": [ -79.884165735387541, 40.420444364975459 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1214, "OBJECTID": 1217, "Muni": 210, "LocName": "MUNICIPAL BLDG", "Prefix": " ", "House": "7560", "Fraction": " ", "Street": "ROSLYN", "Suffix1": "ST", "Suffix2": " ", "City": "SWISSVALE", "Zip": "15218-2556", "Leadman": "31", "MuniName": "SWISSVALE", "MWD": "2100003", "MWD2": 2100003, "NewAddress": "7560 ROSLYN ST" }, "geometry": { "type": "Point", "coordinates": [ -79.884195123814862, 40.420547639164326 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1215, "OBJECTID": 1218, "Muni": 210, "LocName": "WOODLAND HILLS JR HIGH WEST", "Prefix": " ", "House": "7600", "Fraction": " ", "Street": "EVANS", "Suffix1": "ST", "Suffix2": " ", "City": "SWISSVALE", "Zip": "15218-2223", "Leadman": "31", "MuniName": "SWISSVALE", "MWD": "2100004", "MWD2": 2100004, "NewAddress": "7600 EVANS ST" }, "geometry": { "type": "Point", "coordinates": [ -79.876887971427493, 40.419715765087332 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1216, "OBJECTID": 1219, "Muni": 210, "LocName": "WOODLAND HILLS JR HIGH WEST", "Prefix": " ", "House": "7600", "Fraction": " ", "Street": "EVANS", "Suffix1": "ST", "Suffix2": " ", "City": "SWISSVALE", "Zip": "15218-2223", "Leadman": "31", "MuniName": "SWISSVALE", "MWD": "2100005", "MWD2": 2100005, "NewAddress": "7600 EVANS ST" }, "geometry": { "type": "Point", "coordinates": [ -79.876887971427493, 40.419715765087332 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1217, "OBJECTID": 1220, "Muni": 210, "LocName": "SWISSVALE V F C 1ST FLOOR", "Prefix": " ", "House": "7400", "Fraction": " ", "Street": "IRVINE", "Suffix1": "ST", "Suffix2": " ", "City": "SWISSVALE", "Zip": "15218-2520", "Leadman": "31", "MuniName": "SWISSVALE", "MWD": "2100006", "MWD2": 2100006, "NewAddress": "7400 IRVINE ST" }, "geometry": { "type": "Point", "coordinates": [ -79.889392517217274, 40.420704705669742 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1218, "OBJECTID": 1221, "Muni": 210, "LocName": "SWISSVALE SENIOR CITIZEN CENTER", "Prefix": " ", "House": "7350", "Fraction": " ", "Street": "MCCLURE", "Suffix1": "AVE", "Suffix2": " ", "City": "SWISSVALE", "Zip": "15218-2344", "Leadman": "31", "MuniName": "SWISSVALE", "MWD": "2100007", "MWD2": 2100007, "NewAddress": "7350 MCCLURE AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.891128903877146, 40.422627567937582 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1219, "OBJECTID": 1222, "Muni": 210, "LocName": "SWISSVALE SR CITIZEN CENTER", "Prefix": " ", "House": "7350", "Fraction": " ", "Street": "MCCLURE", "Suffix1": "AVE", "Suffix2": " ", "City": "SWISSVALE", "Zip": "15218-2344", "Leadman": "31", "MuniName": "SWISSVALE", "MWD": "2100008", "MWD2": 2100008, "NewAddress": "7350 MCCLURE AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.891254421588712, 40.422603796763461 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1220, "OBJECTID": 1223, "Muni": 210, "LocName": "SWISSVALE TOWERS", "Prefix": " ", "House": "1826", "Fraction": " ", "Street": "MONONGAHELA", "Suffix1": "AVE", "Suffix2": " ", "City": "SWISSVALE", "Zip": "15218-2357", "Leadman": "31", "MuniName": "SWISSVALE", "MWD": "2100009", "MWD2": 2100009, "NewAddress": "1826 MONONGAHELA AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.891070756071514, 40.422538346561836 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1221, "OBJECTID": 1224, "Muni": 210, "LocName": "SWISSVALE VOL FIRE CO 1ST FLOOR", "Prefix": " ", "House": "7400", "Fraction": " ", "Street": "IRVINE", "Suffix1": "ST", "Suffix2": " ", "City": "SWISSVALE", "Zip": "15218-2520", "Leadman": "31", "MuniName": "SWISSVALE", "MWD": "2100010", "MWD2": 2100010, "NewAddress": "7400 IRVINE ST" }, "geometry": { "type": "Point", "coordinates": [ -79.889411481638902, 40.420621844250981 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1222, "OBJECTID": 1225, "Muni": 210, "LocName": "WILKINS SCHOOL 1ST FL ENT", "Prefix": " ", "House": "7604", "Fraction": " ", "Street": "CHARLESTON", "Suffix1": "AVE", "Suffix2": " ", "City": "SWISSVALE", "Zip": "15218", "Leadman": "31", "MuniName": "SWISSVALE", "MWD": "2100011", "MWD2": 2100011, "NewAddress": "7604 CHARLESTON AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.892916710941577, 40.430308877771139 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1223, "OBJECTID": 1226, "Muni": 211, "LocName": "HIGHLAND HOSE CO 1ST FLOOR", "Prefix": "E", "House": "403", "Fraction": " ", "Street": "8TH", "Suffix1": "AVE", "Suffix2": " ", "City": "TARENTUM", "Zip": "15084-1514", "Leadman": "44", "MuniName": "TARENTUM", "MWD": "2110101", "MWD2": 2110101, "NewAddress": "403 8TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.753068497718246, 40.604646681593429 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1224, "OBJECTID": 1227, "Muni": 211, "LocName": "HIGHLAND HOSE CO", "Prefix": "E", "House": "403", "Fraction": " ", "Street": "8TH", "Suffix1": "AVE", "Suffix2": " ", "City": "TARENTUM", "Zip": "15084-1514", "Leadman": "44", "MuniName": "TARENTUM", "MWD": "2110102", "MWD2": 2110102, "NewAddress": "403 8TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.75301727052036, 40.604572830526848 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1225, "OBJECTID": 1228, "Muni": 211, "LocName": "TARENTUM BORO BUILDING", "Prefix": " ", "House": "318", "Fraction": " ", "Street": "2ND", "Suffix1": "AVE", "Suffix2": " ", "City": "TARENTUM", "Zip": "15084-1804", "Leadman": "44", "MuniName": "TARENTUM", "MWD": "2110200", "MWD2": 2110200, "NewAddress": "318 2ND AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.751841081521874, 40.600841419831482 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1226, "OBJECTID": 1229, "Muni": 211, "LocName": "HOLY MARTYRS PARISH SOCIAL HALL", "Prefix": "W", "House": "344", "Fraction": " ", "Street": "9TH", "Suffix1": "AVE", "Suffix2": " ", "City": "TARENTUM", "Zip": "15084-1244", "Leadman": "44", "MuniName": "TARENTUM", "MWD": "2110301", "MWD2": 2110301, "NewAddress": "344 9TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.765418994828437, 40.600072726028806 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1227, "OBJECTID": 1230, "Muni": 211, "LocName": "HOLY MARTYRS PARISH CHURCH HALL", "Prefix": "W", "House": "344", "Fraction": " ", "Street": "9TH", "Suffix1": "AVE", "Suffix2": " ", "City": "TARENTUM", "Zip": "15084-1244", "Leadman": "44", "MuniName": "TARENTUM", "MWD": "2110302", "MWD2": 2110302, "NewAddress": "344 9TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.765385083983361, 40.600116959499402 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1228, "OBJECTID": 1231, "Muni": 212, "LocName": "THORNBURG SCHOOL", "Prefix": " ", "House": "600", "Fraction": " ", "Street": "HAMILTON", "Suffix1": "RD", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15205", "Leadman": "18", "MuniName": "THORNBURG", "MWD": "2120001", "MWD2": 2120001, "NewAddress": "600 HAMILTON RD" }, "geometry": { "type": "Point", "coordinates": [ -80.083232825220634, 40.432293365312518 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1229, "OBJECTID": 1232, "Muni": 212, "LocName": "PENNSBURY VILLAGE COMM BLDG", "Prefix": " ", "House": "1041", "Fraction": " ", "Street": "PENNSBURY", "Suffix1": "BLVD", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15205-1643", "Leadman": "18", "MuniName": "THORNBURG", "MWD": "2120002", "MWD2": 2120002, "NewAddress": "1041 PENNSBURY BLVD" }, "geometry": { "type": "Point", "coordinates": [ -80.099828526063007, 40.428690679396482 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1230, "OBJECTID": 1233, "Muni": 213, "LocName": "PRIVATE RESIDENCE", "Prefix": " ", "House": "175", "Fraction": " ", "Street": "STEWART", "Suffix1": "ST", "Suffix2": " ", "City": "TRAFFORD", "Zip": "15085-1818", "Leadman": "33", "MuniName": "TRAFFORD", "MWD": "2130001", "MWD2": 2130001, "NewAddress": "175 STEWART ST" }, "geometry": { "type": "Point", "coordinates": [ -79.768626543554944, 40.381083361220469 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1231, "OBJECTID": 1234, "Muni": 214, "LocName": "ELECTRIC HEIGHTS HOUSING ASSOC", "Prefix": " ", "House": "76", "Fraction": " ", "Street": "HARPER", "Suffix1": "DR", "Suffix2": " ", "City": "TURTLE CREEK", "Zip": "15145-1501", "Leadman": "53", "MuniName": "TURTLE CREEK", "MWD": "2140101", "MWD2": 2140101, "NewAddress": "76 HARPER DR" }, "geometry": { "type": "Point", "coordinates": [ -79.813187260141291, 40.413817973655604 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1232, "OBJECTID": 1235, "Muni": 214, "LocName": "PROPEL EAST SCHOOL-ENTRANCE", "Prefix": " ", "House": "1611", "Fraction": " ", "Street": "MONROEVILLE", "Suffix1": "AVE", "Suffix2": " ", "City": "TURTLE CREEK", "Zip": "15145", "Leadman": "53", "MuniName": "TURTLE CREEK", "MWD": "2140102", "MWD2": 2140102, "NewAddress": "1611 MONROEVILLE AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.815452196391746, 40.409348613129644 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1233, "OBJECTID": 1236, "Muni": 214, "LocName": "BORO BLDG.", "Prefix": " ", "House": "125", "Fraction": " ", "Street": "MONROEVILLE", "Suffix1": "AVE", "Suffix2": " ", "City": "TURTLE CREEK", "Zip": "15145-1862", "Leadman": "53", "MuniName": "TURTLE CREEK", "MWD": "2140201", "MWD2": 2140201, "NewAddress": "125 MONROEVILLE AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.824534452057335, 40.405568380248539 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1234, "OBJECTID": 1237, "Muni": 214, "LocName": "WOLVARENA STADIUM VISITOR LOCKER ROOM", "Prefix": " ", "House": "1025", "Fraction": " ", "Street": "LYNN", "Suffix1": "AVE", "Suffix2": " ", "City": "TURTLE CREEK", "Zip": "15145-1862", "Leadman": "53", "MuniName": "TURTLE CREEK", "MWD": "2140202", "MWD2": 2140202, "NewAddress": "1025 LYNN AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.81974162772535, 40.405297026305917 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1235, "OBJECTID": 1238, "Muni": 214, "LocName": "JOHN FRASER HALL", "Prefix": " ", "House": "500", "Fraction": " ", "Street": "HUNTER", "Suffix1": "ST", "Suffix2": " ", "City": "TURTLE CREEK", "Zip": "15145-2060", "Leadman": "53", "MuniName": "TURTLE CREEK", "MWD": "2140301", "MWD2": 2140301, "NewAddress": "500 HUNTER ST" }, "geometry": { "type": "Point", "coordinates": [ -79.828578794932525, 40.406293558884201 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1236, "OBJECTID": 1239, "Muni": 214, "LocName": "ELETRIC HEIGHTS UNITED METHODIST CH", "Prefix": " ", "House": "601", "Fraction": " ", "Street": "JAMES", "Suffix1": "ST", "Suffix2": " ", "City": "TURTLE CREEK", "Zip": "15145-1510", "Leadman": "53", "MuniName": "TURTLE CREEK", "MWD": "2140302", "MWD2": 2140302, "NewAddress": "601 JAMES ST" }, "geometry": { "type": "Point", "coordinates": [ -79.818600436510394, 40.413103757561544 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1237, "OBJECTID": 1240, "Muni": 215, "LocName": "TWP BLDG-LIBRARY MULTI PUR RM", "Prefix": " ", "House": "1820", "Fraction": " ", "Street": "MCLAUGHLIN RUN", "Suffix1": "RD", "Suffix2": " ", "City": "UPPER ST CLAIR", "Zip": "15241-2332", "Leadman": "47", "MuniName": "UP ST CLAIR", "MWD": "2150101", "MWD2": 2150101, "NewAddress": "1820 MCLAUGHLIN RUN RD" }, "geometry": { "type": "Point", "coordinates": [ -80.074119000077303, 40.33545099200758 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1238, "OBJECTID": 1241, "Muni": 215, "LocName": "BAKER ELEMENTARY SCHOOL GYM", "Prefix": " ", "House": "2300", "Fraction": " ", "Street": "MORTON ROAD UPPER", "Suffix1": "ST", "Suffix2": " ", "City": "UPPER ST CLAIR", "Zip": "15241-3302", "Leadman": "47", "MuniName": "UP ST CLAIR", "MWD": "2150102", "MWD2": 2150102, "NewAddress": "2300 MORTON ROAD UPPER ST" }, "geometry": { "type": "Point", "coordinates": [ -80.09638517724666, 40.335365141284029 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1239, "OBJECTID": 1242, "Muni": 215, "LocName": "FORT COUCH MIDDLE SCHOOL", "Prefix": " ", "House": "515", "Fraction": " ", "Street": "FORT COUCH", "Suffix1": "RD", "Suffix2": " ", "City": "UPPER ST CLAIR", "Zip": "15241-2018", "Leadman": "47", "MuniName": "UP ST CLAIR", "MWD": "2150103", "MWD2": 2150103, "NewAddress": "515 FORT COUCH RD" }, "geometry": { "type": "Point", "coordinates": [ -80.064921744681882, 40.354520440037703 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1240, "OBJECTID": 1243, "Muni": 215, "LocName": "FORT COUCH MIDDLE SCHOOL", "Prefix": " ", "House": "515", "Fraction": " ", "Street": "FORT COUCH", "Suffix1": "RD", "Suffix2": " ", "City": "UPPER ST CLAIR", "Zip": "15241-2018", "Leadman": "47", "MuniName": "UP ST CLAIR", "MWD": "2150104", "MWD2": 2150104, "NewAddress": "515 FORT COUCH RD" }, "geometry": { "type": "Point", "coordinates": [ -80.064454784889818, 40.353878992322215 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1241, "OBJECTID": 1244, "Muni": 215, "LocName": "FORT COUCH MIDDLE SCHOOL", "Prefix": " ", "House": "515", "Fraction": " ", "Street": "FORT COUCH", "Suffix1": "RD", "Suffix2": " ", "City": "UPPER ST CLAIR", "Zip": "15241-2018", "Leadman": "47", "MuniName": "UP ST CLAIR", "MWD": "2150201", "MWD2": 2150201, "NewAddress": "515 FORT COUCH RD" }, "geometry": { "type": "Point", "coordinates": [ -80.064112738144217, 40.353445300494691 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1242, "OBJECTID": 1245, "Muni": 215, "LocName": "WESTMINSTER PRESBYTERIAN CHURCH", "Prefix": " ", "House": "2040", "Fraction": " ", "Street": "WASHINGTON ROAD UPPER", "Suffix1": "ST", "Suffix2": " ", "City": "UPPER ST CLAIR", "Zip": "15241-1543", "Leadman": "47", "MuniName": "UP ST CLAIR", "MWD": "2150202", "MWD2": 2150202, "NewAddress": "2040 WASHINGTON ROAD UPPER ST" }, "geometry": { "type": "Point", "coordinates": [ -80.065823203882672, 40.33976420557498 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1243, "OBJECTID": 1246, "Muni": 215, "LocName": "FORT COUCH MIDDLE SCHOOL", "Prefix": " ", "House": "515", "Fraction": " ", "Street": "FORT COUCH", "Suffix1": "RD", "Suffix2": " ", "City": "UPPER ST CLAIR", "Zip": "15241-2018", "Leadman": "47", "MuniName": "UP ST CLAIR", "MWD": "2150203", "MWD2": 2150203, "NewAddress": "515 FORT COUCH RD" }, "geometry": { "type": "Point", "coordinates": [ -80.064623385443483, 40.3542160358083 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1244, "OBJECTID": 1247, "Muni": 215, "LocName": "FORT COUCH MIDDLE SCHOOL", "Prefix": " ", "House": "515", "Fraction": " ", "Street": "FORT COUCH", "Suffix1": "RD", "Suffix2": " ", "City": "UPPER ST CLAIR", "Zip": "15241-2018", "Leadman": "47", "MuniName": "UP ST CLAIR", "MWD": "2150204", "MWD2": 2150204, "NewAddress": "515 FORT COUCH RD" }, "geometry": { "type": "Point", "coordinates": [ -80.064732422148253, 40.35472448797077 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1245, "OBJECTID": 1248, "Muni": 215, "LocName": "REC. CENTER", "Prefix": " ", "House": "1770", "Fraction": " ", "Street": "MCLAUGHLIN RUN", "Suffix1": "RD", "Suffix2": " ", "City": "UPPER ST CLAIR", "Zip": "15241-2332", "Leadman": "47", "MuniName": "UP ST CLAIR", "MWD": "2150301", "MWD2": 2150301, "NewAddress": "1770 MCLAUGHLIN RUN RD" }, "geometry": { "type": "Point", "coordinates": [ -80.073881059963639, 40.335153148809084 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1246, "OBJECTID": 1249, "Muni": 215, "LocName": "ST LOUISE DE MARILLAC CH BISHOP LE", "Prefix": " ", "House": "320", "Fraction": " ", "Street": "MCMURRAY ROAD UPPER", "Suffix1": "ST", "Suffix2": " ", "City": "UPPER ST CLAIR", "Zip": "15241-1616", "Leadman": "47", "MuniName": "UP ST CLAIR", "MWD": "2150302", "MWD2": 2150302, "NewAddress": "320 MCMURRAY ROAD UPPER ST" }, "geometry": { "type": "Point", "coordinates": [ -80.072110465599621, 40.316643892262327 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1247, "OBJECTID": 1250, "Muni": 215, "LocName": "REC. CENTER", "Prefix": " ", "House": "1770", "Fraction": " ", "Street": "MCLAUGHLIN RUN", "Suffix1": "RD", "Suffix2": " ", "City": "UPPER ST CLAIR", "Zip": "15241-2332", "Leadman": "47", "MuniName": "UP ST CLAIR", "MWD": "2150303", "MWD2": 2150303, "NewAddress": "1770 MCLAUGHLIN RUN RD" }, "geometry": { "type": "Point", "coordinates": [ -80.074147676229458, 40.335239486867138 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1248, "OBJECTID": 1251, "Muni": 215, "LocName": "BAKER ELEMENTARY SCHOOL GYM", "Prefix": " ", "House": "2300", "Fraction": " ", "Street": "MORTON ROAD UPPER", "Suffix1": "ST", "Suffix2": " ", "City": "UPPER ST CLAIR", "Zip": "15241-3302", "Leadman": "47", "MuniName": "UP ST CLAIR", "MWD": "2150401", "MWD2": 2150401, "NewAddress": "2300 MORTON ROAD UPPER ST" }, "geometry": { "type": "Point", "coordinates": [ -80.096443384287511, 40.33568284007228 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1249, "OBJECTID": 1252, "Muni": 215, "LocName": "BOYCE MIDDLE SCHOOL GYM", "Prefix": " ", "House": "1500", "Fraction": " ", "Street": "BOYCE ROAD UPPER", "Suffix1": "ST", "Suffix2": " ", "City": "UPPER ST CLAIR", "Zip": "15241-2903", "Leadman": "47", "MuniName": "UP ST CLAIR", "MWD": "2150402", "MWD2": 2150402, "NewAddress": "1500 BOYCE ROAD UPPER ST" }, "geometry": { "type": "Point", "coordinates": [ -80.095070106213896, 40.316396046248158 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1250, "OBJECTID": 1253, "Muni": 215, "LocName": "BOYCE SCHOOL", "Prefix": " ", "House": "1500", "Fraction": " ", "Street": "BOYCE ROAD UPPER", "Suffix1": "ST", "Suffix2": " ", "City": "UPPER ST CLAIR", "Zip": "15241-2903", "Leadman": "47", "MuniName": "UP ST CLAIR", "MWD": "2150403", "MWD2": 2150403, "NewAddress": "1500 BOYCE ROAD UPPER ST" }, "geometry": { "type": "Point", "coordinates": [ -80.094686300744115, 40.316540761219493 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1251, "OBJECTID": 1254, "Muni": 215, "LocName": "BOYCE SCHOOL", "Prefix": " ", "House": "1500", "Fraction": " ", "Street": "BOYCE ROAD UPPER", "Suffix1": "ST", "Suffix2": " ", "City": "UPPER ST CLAIR", "Zip": "15241-2903", "Leadman": "47", "MuniName": "UP ST CLAIR", "MWD": "2150404", "MWD2": 2150404, "NewAddress": "1500 BOYCE ROAD UPPER ST" }, "geometry": { "type": "Point", "coordinates": [ -80.094224507063856, 40.316454904034217 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1252, "OBJECTID": 1255, "Muni": 215, "LocName": "WESLEY INSTITUTE", "Prefix": " ", "House": "243", "Fraction": " ", "Street": "JOHNSTON", "Suffix1": "RD", "Suffix2": " ", "City": "UPPER SAINT CLAIR", "Zip": "15241-2534", "Leadman": "47", "MuniName": "UP ST CLAIR", "MWD": "2150501", "MWD2": 2150501, "NewAddress": "243 JOHNSTON RD" }, "geometry": { "type": "Point", "coordinates": [ -80.080252492054626, 40.319897269106903 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1253, "OBJECTID": 1256, "Muni": 215, "LocName": "WESLEY INSTITUTE", "Prefix": " ", "House": "243", "Fraction": " ", "Street": "JOHNSTON", "Suffix1": "RD", "Suffix2": " ", "City": "UPPER SAINT CLAIR", "Zip": "15241-2534", "Leadman": "47", "MuniName": "UP ST CLAIR", "MWD": "2150502", "MWD2": 2150502, "NewAddress": "243 JOHNSTON RD" }, "geometry": { "type": "Point", "coordinates": [ -80.079736784061069, 40.320217838920705 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1254, "OBJECTID": 1257, "Muni": 215, "LocName": "BOYCE SCHOOL GYM", "Prefix": " ", "House": "1500", "Fraction": " ", "Street": "BOYCE ROAD UPPER", "Suffix1": "ST", "Suffix2": " ", "City": "UPPER ST CLAIR", "Zip": "15241-2903", "Leadman": "47", "MuniName": "UP ST CLAIR", "MWD": "2150503", "MWD2": 2150503, "NewAddress": "1500 BOYCE ROAD UPPER ST" }, "geometry": { "type": "Point", "coordinates": [ -80.095003748270472, 40.316724794159491 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1255, "OBJECTID": 1258, "Muni": 216, "LocName": "NEW BORO BLDG", "Prefix": "E", "House": "736", "Fraction": " ", "Street": "RAILROAD", "Suffix1": "AVE", "Suffix2": " ", "City": "VERONA", "Zip": "15147-1115", "Leadman": "56", "MuniName": "VERONA", "MWD": "2160001", "MWD2": 2160001, "NewAddress": "736 RAILROAD AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.844556776625325, 40.505838997402897 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1256, "OBJECTID": 1259, "Muni": 216, "LocName": "VERONA UNITED PRESBYTERIAN CHURCH", "Prefix": " ", "House": "566", "Fraction": " ", "Street": "SOUTH", "Suffix1": "AVE", "Suffix2": " ", "City": "VERONA", "Zip": "15147-1243", "Leadman": "56", "MuniName": "VERONA", "MWD": "2160002", "MWD2": 2160002, "NewAddress": "566 SOUTH AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.836476906639206, 40.504348200456469 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1257, "OBJECTID": 1260, "Muni": 216, "LocName": "VOLUNTEER FIRE CO.", "Prefix": " ", "House": "465", "Fraction": " ", "Street": "PARKER", "Suffix1": "ST", "Suffix2": " ", "City": "VERONA", "Zip": "15147-1413", "Leadman": "56", "MuniName": "VERONA", "MWD": "2160003", "MWD2": 2160003, "NewAddress": "465 PARKER ST" }, "geometry": { "type": "Point", "coordinates": [ -79.839786467603659, 40.507973799852721 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1258, "OBJECTID": 1261, "Muni": 217, "LocName": "BORO BLDG.", "Prefix": " ", "House": "5100", "Fraction": " ", "Street": "WALNUT", "Suffix1": "ST", "Suffix2": " ", "City": "MCKEESPORT", "Zip": "15132-6322", "Leadman": "25", "MuniName": "VERSAILLES", "MWD": "2170001", "MWD2": 2170001, "NewAddress": "5100 WALNUT ST" }, "geometry": { "type": "Point", "coordinates": [ -79.830980195691311, 40.315197993211775 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1259, "OBJECTID": 1262, "Muni": 217, "LocName": "VERSAILLES APTS.-REC ROOM-REAR ENT.", "Prefix": " ", "House": "4626", "Fraction": " ", "Street": "WALNUT", "Suffix1": "ST", "Suffix2": " ", "City": "MCKEESPORT", "Zip": "15132-6239", "Leadman": "25", "MuniName": "VERSAILLES", "MWD": "2170002", "MWD2": 2170002, "NewAddress": "4626 WALNUT ST" }, "geometry": { "type": "Point", "coordinates": [ -79.834392256807732, 40.31847813630467 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1260, "OBJECTID": 1263, "Muni": 218, "LocName": "MUNICIPAL BLDG.", "Prefix": " ", "House": "413", "Fraction": " ", "Street": "WALL", "Suffix1": "AVE", "Suffix2": " ", "City": "WALL", "Zip": "15148-1379", "Leadman": "33", "MuniName": "WALL", "MWD": "2180001", "MWD2": 2180001, "NewAddress": "413 WALL AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.790744678774075, 40.393886168291999 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1261, "OBJECTID": 1264, "Muni": 219, "LocName": "DEER LAKES COM CH OF NAZARENE", "Prefix": " ", "House": "1839", "Fraction": " ", "Street": "SAXONBURG", "Suffix1": "BLVD", "Suffix2": " ", "City": "TARENTUM", "Zip": "15084-2618", "Leadman": "43", "MuniName": "WEST DEER", "MWD": "2190005", "MWD2": 2190005, "NewAddress": "1839 SAXONBURG BLVD" }, "geometry": { "type": "Point", "coordinates": [ -79.850335351950704, 40.636670828321172 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1262, "OBJECTID": 1265, "Muni": 219, "LocName": "WEST DEER TWP. SR. CITIZEN CENTER", "Prefix": " ", "House": "4834", "Fraction": " ", "Street": "ROUTE 910", "Suffix1": " ", "Suffix2": " ", "City": "GIBSONIA", "Zip": "15044", "Leadman": "43", "MuniName": "WEST DEER", "MWD": "2190007", "MWD2": 2190007, "NewAddress": "4834 ROUTE 910" }, "geometry": { "type": "Point", "coordinates": [ -79.881748544588049, 40.58413687408413 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1263, "OBJECTID": 1266, "Muni": 220, "LocName": "BORO BLDG.", "Prefix": " ", "House": "800", "Fraction": " ", "Street": "5TH", "Suffix1": "ST", "Suffix2": " ", "City": "WEST ELIZABETH", "Zip": "15088", "Leadman": "46", "MuniName": "W ELIZABETH", "MWD": "2200001", "MWD2": 2200001, "NewAddress": "800 5TH ST" }, "geometry": { "type": "Point", "coordinates": [ -79.897214391081704, 40.271852381938466 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1264, "OBJECTID": 1267, "Muni": 221, "LocName": "FOREST AVE ENT NEW BORO BLDG", "Prefix": "W", "House": "456", "Fraction": " ", "Street": "8TH", "Suffix1": "AVE", "Suffix2": " ", "City": "HOMESTEAD", "Zip": "15120-1030", "Leadman": "20", "MuniName": "W HOMESTEAD", "MWD": "2210001", "MWD2": 2210001, "NewAddress": "456 8TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.917340902212388, 40.401167085965035 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1265, "OBJECTID": 1268, "Muni": 221, "LocName": "WEST HOMESTEAD VFD", "Prefix": "W", "House": "447", "Fraction": " ", "Street": "8TH", "Suffix1": "AVE", "Suffix2": " ", "City": "HOMESTEAD", "Zip": "15120-1323", "Leadman": "20", "MuniName": "W HOMESTEAD", "MWD": "2210002", "MWD2": 2210002, "NewAddress": "447 8TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.917782868881702, 40.402113829530371 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1266, "OBJECTID": 1269, "Muni": 221, "LocName": "WEST HOMESTEAD VFD", "Prefix": "W", "House": "447", "Fraction": " ", "Street": "8TH", "Suffix1": "AVE", "Suffix2": " ", "City": "HOMESTEAD", "Zip": "15120-1030", "Leadman": "20", "MuniName": "W HOMESTEAD", "MWD": "2210003", "MWD2": 2210003, "NewAddress": "447 8TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.917985400288387, 40.402108689197874 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1267, "OBJECTID": 1270, "Muni": 222, "LocName": "HOMEVILLE VFC BANQUET HALL", "Prefix": " ", "House": "3900", "Fraction": " ", "Street": "GREENSPRINGS", "Suffix1": "AVE", "Suffix2": " ", "City": "WEST MIFFLIN", "Zip": "15122-1757", "Leadman": "24", "MuniName": "WEST MIFFLIN", "MWD": "2220001", "MWD2": 2220001, "NewAddress": "3900 GREENSPRINGS AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.883675172576289, 40.391212366038722 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1268, "OBJECTID": 1271, "Muni": 222, "LocName": "HOMEVILLE VFC BANQUET HALL", "Prefix": " ", "House": "3900", "Fraction": " ", "Street": "GREENSPRINGS", "Suffix1": "AVE", "Suffix2": " ", "City": "WEST MIFFLIN", "Zip": "15122-1757", "Leadman": "24", "MuniName": "WEST MIFFLIN", "MWD": "2220002", "MWD2": 2220002, "NewAddress": "3900 GREENSPRINGS AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.883717122439961, 40.391395866804807 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1269, "OBJECTID": 1272, "Muni": 222, "LocName": "HOMEVILLE SCHOOL-GYM", "Prefix": " ", "House": "4315", "Fraction": " ", "Street": "ELIZA", "Suffix1": "ST", "Suffix2": " ", "City": "WEST MIFFLIN", "Zip": "15122-2040", "Leadman": "24", "MuniName": "WEST MIFFLIN", "MWD": "2220003", "MWD2": 2220003, "NewAddress": "4315 ELIZA ST" }, "geometry": { "type": "Point", "coordinates": [ -79.874593548011291, 40.388364571726946 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1270, "OBJECTID": 1273, "Muni": 222, "LocName": "MON VIEW HEIGHTS CORP.", "Prefix": " ", "House": "1", "Fraction": " ", "Street": "MIDWAY", "Suffix1": "DR", "Suffix2": " ", "City": "WEST MIFFLIN", "Zip": "15122-1573", "Leadman": "24", "MuniName": "WEST MIFFLIN", "MWD": "2220004", "MWD2": 2220004, "NewAddress": "1 MIDWAY DR" }, "geometry": { "type": "Point", "coordinates": [ -79.884813011778931, 40.397903890324166 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1271, "OBJECTID": 1274, "Muni": 222, "LocName": "W MIFFLIN HI SCH AUD LOBBY ENT", "Prefix": " ", "House": "91", "Fraction": " ", "Street": "COMMONWEALTH", "Suffix1": "AVE", "Suffix2": " ", "City": "WEST MIFFLIN", "Zip": "15122-2310", "Leadman": "24", "MuniName": "WEST MIFFLIN", "MWD": "2220005", "MWD2": 2220005, "NewAddress": "91 COMMONWEALTH AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.874342591063709, 40.382180829273096 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1272, "OBJECTID": 1275, "Muni": 222, "LocName": "HOMEVILLE VOL FIRE CO 1ST FL", "Prefix": " ", "House": "3900", "Fraction": " ", "Street": "GREENSPRINGS", "Suffix1": "AVE", "Suffix2": " ", "City": "WEST MIFFLIN", "Zip": "15122-1757", "Leadman": "24", "MuniName": "WEST MIFFLIN", "MWD": "2220006", "MWD2": 2220006, "NewAddress": "3900 GREENSPRINGS AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.88377884796158, 40.391251912332997 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1273, "OBJECTID": 1276, "Muni": 222, "LocName": "HOLY TRINITY CHURCH", "Prefix": " ", "House": "529", "Fraction": " ", "Street": "GRANT", "Suffix1": "AVE", "Suffix2": "EX", "City": "WEST MIFFLIN", "Zip": "15122-3830", "Leadman": "24", "MuniName": "WEST MIFFLIN", "MWD": "2220007", "MWD2": 2220007, "NewAddress": "529 GRANT AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.865835097001437, 40.370448407492468 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1274, "OBJECTID": 1277, "Muni": 222, "LocName": "RIVERVIEW HOMES INC,ADMIN BLDG", "Prefix": " ", "House": "321", "Fraction": " ", "Street": "UTAH", "Suffix1": "AVE", "Suffix2": " ", "City": "WEST MIFFLIN", "Zip": "15122-4067", "Leadman": "24", "MuniName": "WEST MIFFLIN", "MWD": "2220008", "MWD2": 2220008, "NewAddress": "321 UTAH AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.862423243811278, 40.360344132959447 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1275, "OBJECTID": 1278, "Muni": 222, "LocName": "NEW EMERSON ELEM SCH 1ST FL", "Prefix": " ", "House": "1922", "Fraction": " ", "Street": "PENNSYLVANIA", "Suffix1": "AVE", "Suffix2": " ", "City": "WEST MIFFLIN", "Zip": "15122-3954", "Leadman": "24", "MuniName": "WEST MIFFLIN", "MWD": "2220009", "MWD2": 2220009, "NewAddress": "1922 PENNSYLVANIA AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.864844492770942, 40.363173484414418 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1276, "OBJECTID": 1279, "Muni": 222, "LocName": "WEST MIFFLIN #3 SOCIAL HALL 1ST FL", "Prefix": " ", "House": "3722", "Fraction": " ", "Street": "RODEO", "Suffix1": "DR", "Suffix2": " ", "City": "WEST MIFFLIN", "Zip": "15122-2635", "Leadman": "24", "MuniName": "WEST MIFFLIN", "MWD": "2220010", "MWD2": 2220010, "NewAddress": "3722 RODEO DR" }, "geometry": { "type": "Point", "coordinates": [ -79.915049486253778, 40.353387074035105 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1277, "OBJECTID": 1280, "Muni": 222, "LocName": "ASSEMBLY OF GOD GYM", "Prefix": " ", "House": "44", "Fraction": " ", "Street": "ADAMS", "Suffix1": "AVE", "Suffix2": " ", "City": "WEST MIFFLIN", "Zip": "15122-2777", "Leadman": "24", "MuniName": "WEST MIFFLIN", "MWD": "2220011", "MWD2": 2220011, "NewAddress": "44 ADAMS AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.908483197151824, 40.355054283033837 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1278, "OBJECTID": 1281, "Muni": 222, "LocName": "CLARA E BARTON SCHOOL", "Prefix": " ", "House": "764", "Fraction": " ", "Street": "BEVERLY", "Suffix1": "DR", "Suffix2": " ", "City": "WEST MIFFLIN", "Zip": "15122-3235", "Leadman": "24", "MuniName": "WEST MIFFLIN", "MWD": "2220012", "MWD2": 2220012, "NewAddress": "764 BEVERLY DR" }, "geometry": { "type": "Point", "coordinates": [ -79.921487061870195, 40.342571379764664 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1279, "OBJECTID": 1282, "Muni": 222, "LocName": "ST AGNES SCHOOL", "Prefix": " ", "House": "622", "Fraction": " ", "Street": "SAINT AGNES", "Suffix1": "LN", "Suffix2": " ", "City": "WEST MIFFLIN", "Zip": "15122-2925", "Leadman": "24", "MuniName": "WEST MIFFLIN", "MWD": "2220013", "MWD2": 2220013, "NewAddress": "622 SAINT AGNES LN" }, "geometry": { "type": "Point", "coordinates": [ -79.877964218626062, 40.368655932333148 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1280, "OBJECTID": 1283, "Muni": 222, "LocName": "THOMPSON RUN ATHLETIC ASSN", "Prefix": " ", "House": "4901", "Fraction": " ", "Street": "BALL", "Suffix1": "AVE", "Suffix2": " ", "City": "WEST MIFFLIN", "Zip": "15122-1335", "Leadman": "24", "MuniName": "WEST MIFFLIN", "MWD": "2220014", "MWD2": 2220014, "NewAddress": "4901 BALL AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.897536248353774, 40.37291492291093 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1281, "OBJECTID": 1284, "Muni": 222, "LocName": "HOMEVILLE SCHOOL-GYM", "Prefix": " ", "House": "4315", "Fraction": " ", "Street": "ELIZA", "Suffix1": "ST", "Suffix2": " ", "City": "WEST MIFFLIN", "Zip": "15122-2040", "Leadman": "24", "MuniName": "WEST MIFFLIN", "MWD": "2220015", "MWD2": 2220015, "NewAddress": "4315 ELIZA ST" }, "geometry": { "type": "Point", "coordinates": [ -79.874679547785803, 40.388268275133271 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1282, "OBJECTID": 1285, "Muni": 130, "LocName": "St HEDWIG CHURCH", "Prefix": "S", "House": "105", "Fraction": " ", "Street": "5TH", "Suffix1": "ST", "Suffix2": " ", "City": "Duquesne", "Zip": "15110", "Leadman": "23", "MuniName": "Duquesne", "MWD": "1300202", "MWD2": 1300202, "NewAddress": "105 5TH ST" }, "geometry": { "type": "Point", "coordinates": [ -79.849277158053198, 40.371048507438537 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1283, "OBJECTID": 1286, "Muni": 109, "LocName": "SHANNONPIN COUNTRY CLUB MEETING RM", "Prefix": " ", "House": "1", "Fraction": " ", "Street": "WINDMERE", "Suffix1": "RD", "Suffix2": " ", "City": " ", "Zip": " ", "Leadman": "36", "MuniName": "BEN AVON", "MWD": "1090001", "MWD2": 1090001, "NewAddress": "1 WINDMERE RD" }, "geometry": { "type": "Point", "coordinates": [ -80.070549863970413, 40.514658152949309 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1284, "OBJECTID": 1287, "Muni": 113, "LocName": "NEW HOPE BAPTIST CHURCH", "Prefix": " ", "House": "445", "Fraction": " ", "Street": "6TH", "Suffix1": "ST", "Suffix2": " ", "City": "BRADDOCK", "Zip": "15104", "Leadman": "32", "MuniName": "BRADDOCK", "MWD": "1130300", "MWD2": 1130300, "NewAddress": "445 6TH ST" }, "geometry": { "type": "Point", "coordinates": [ -79.867367664940687, 40.404210847875099 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1285, "OBJECTID": 1288, "Muni": 125, "LocName": "THE PRESBYTERIAN CHURCH PRAISE HALL", "Prefix": " ", "House": "1201", "Fraction": " ", "Street": "5TH", "Suffix1": "AVE", "Suffix2": " ", "City": "CORAOPOLIS", "Zip": "15108", "Leadman": "51", "MuniName": "CORAOPOLIS", "MWD": "1250401", "MWD2": 1250401, "NewAddress": "1201 5TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.160860977100342, 40.516260745999517 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1286, "OBJECTID": 1289, "Muni": 125, "LocName": "CORAOPOLIS TOWERS", "Prefix": " ", "House": "951", "Fraction": " ", "Street": "FIRST", "Suffix1": "AVE", "Suffix2": " ", "City": "CORAOPOLIS", "Zip": "15108", "Leadman": "51", "MuniName": "CORAOPOLIS", "MWD": "1250402", "MWD2": 1250402, "NewAddress": "951 FIRST AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.162376767661399, 40.52091461017784 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1287, "OBJECTID": 1290, "Muni": 130, "LocName": "ST. PETER & PAUL BYZAN SOCIAL HALL", "Prefix": " ", "House": "701", "Fraction": " ", "Street": "FOSTER", "Suffix1": "AVE", "Suffix2": " ", "City": "DUQUESNE", "Zip": "15110", "Leadman": "23", "MuniName": "DUQUESNE", "MWD": "1300303", "MWD2": 1300303, "NewAddress": "701 FOSTER AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.849459447234793, 40.364968842412729 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1288, "OBJECTID": 1291, "Muni": 145, "LocName": "ORCHARD HILL CHURCH MOM & DADS MTG", "Prefix": " ", "House": "2551", "Fraction": " ", "Street": "BRANDT SCHOOL", "Suffix1": "RD", "Suffix2": " ", "City": "WEXFORD", "Zip": "15090", "Leadman": "42", "MuniName": "FRANKLIN PK", "MWD": "1450102", "MWD2": 1450102, "NewAddress": "2551 BRANDT SCHOOL RD" }, "geometry": { "type": "Point", "coordinates": [ -80.089957415333046, 40.608103681413887 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1289, "OBJECTID": 1292, "Muni": 145, "LocName": "ORCHARD HILL CHURCH LOBBY", "Prefix": " ", "House": "2551", "Fraction": " ", "Street": "BRANDT SCHOOL", "Suffix1": "RD", "Suffix2": " ", "City": "WEXFORD", "Zip": "15090", "Leadman": "42", "MuniName": "FRANKLIN PK", "MWD": "1450103", "MWD2": 1450103, "NewAddress": "2551 BRANDT SCHOOL RD" }, "geometry": { "type": "Point", "coordinates": [ -80.089776629612388, 40.607906501865472 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1290, "OBJECTID": 1293, "Muni": 179, "LocName": "ST. JOHNS LUTH CHURCH MILLER HALL", "Prefix": " ", "House": "715", "Fraction": " ", "Street": "LINCOLN", "Suffix1": "HWY", "Suffix2": " ", "City": "NORTH VERSAILLES", "Zip": "15137", "Leadman": "33", "MuniName": "N VERSAILLES", "MWD": "1790101", "MWD2": 1790101, "NewAddress": "715 LINCOLN HWY" }, "geometry": { "type": "Point", "coordinates": [ -79.806411170157944, 40.379253986987173 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1291, "OBJECTID": 1294, "Muni": 179, "LocName": "ST. HOHNS LUTH CHURCH MILLER HALL", "Prefix": " ", "House": "715", "Fraction": " ", "Street": "LINCOLN", "Suffix1": "HWY", "Suffix2": " ", "City": "NORTH VERSAILLES", "Zip": "15137", "Leadman": "33", "MuniName": "N VERSAILLES", "MWD": "1790102", "MWD2": 1790102, "NewAddress": "715 LINCOLN HWY" }, "geometry": { "type": "Point", "coordinates": [ -79.806369639138495, 40.379235653192843 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1292, "OBJECTID": 1295, "Muni": 188, "LocName": "LIGHTHOUSE CHURCH OF PITTSBURGH", "Prefix": " ", "House": "810", "Fraction": " ", "Street": "FISHER", "Suffix1": "ST", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15210", "Leadman": "10", "MuniName": "PITTSBURGH", "MWD": "1881609", "MWD2": 1881609, "NewAddress": "810 FISHER ST" }, "geometry": { "type": "Point", "coordinates": [ -79.974804694053091, 40.411008737016616 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1293, "OBJECTID": 1296, "Muni": 188, "LocName": "ST JOHN VIANNEY CATH. PARISH", "Prefix": " ", "House": "823", "Fraction": " ", "Street": "CLIMAX", "Suffix1": "ST", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15210", "Leadman": "11", "MuniName": "PITTSBURGH", "MWD": "1881811", "MWD2": 1881811, "NewAddress": "823 CLIMAX ST" }, "geometry": { "type": "Point", "coordinates": [ -79.993281343027917, 40.420169370436589 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1294, "OBJECTID": 1297, "Muni": 196, "LocName": "CHRIST EPISCOPAL CHURCH", "Prefix": " ", "House": "5910", "Fraction": " ", "Street": "BABCOCK", "Suffix1": "BLVD", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15237", "Leadman": "27", "MuniName": "ROSS", "MWD": "1960801", "MWD2": 1960801, "NewAddress": "5910 BABCOCK BLVD" }, "geometry": { "type": "Point", "coordinates": [ -80.024872600263578, 40.550343241237861 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1295, "OBJECTID": 1298, "Muni": 196, "LocName": "ROSS MUNI BLDG GYM", "Prefix": " ", "House": "1000", "Fraction": " ", "Street": "ROSS MUNICIPAL", "Suffix1": "DR", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15229", "Leadman": "27", "MuniName": "ROSS", "MWD": "1960803", "MWD2": 1960803, "NewAddress": "1000 ROSS MUNICIPAL DR" }, "geometry": { "type": "Point", "coordinates": [ -80.006587789882531, 40.515992661575112 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1296, "OBJECTID": 1299, "Muni": 196, "LocName": "CHRIST EPISCOPAL CHURCH", "Prefix": " ", "House": "5910", "Fraction": " ", "Street": "BABCOCK", "Suffix1": "BLVD", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15237", "Leadman": "27", "MuniName": "ROSS", "MWD": "1960902", "MWD2": 1960902, "NewAddress": "5910 BABCOCK BLVD" }, "geometry": { "type": "Point", "coordinates": [ -80.024946641670439, 40.550295622843606 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1297, "OBJECTID": 1300, "Muni": 204, "LocName": "FAIRVIEW VOL FIRE CO.", "Prefix": " ", "House": "3326", "Fraction": " ", "Street": "WASHINGTON", "Suffix1": "PIKE", "Suffix2": " ", "City": "BRIDGEVILLE", "Zip": "15017", "Leadman": "49", "MuniName": "S FAYETTE", "MWD": "2040001", "MWD2": 2040001, "NewAddress": "3326 WASHINGTON PIKE" }, "geometry": { "type": "Point", "coordinates": [ -80.125382693131897, 40.341082233648727 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1298, "OBJECTID": 1301, "Muni": 204, "LocName": "FAIRVIEW VOL FIRE CO", "Prefix": " ", "House": "3326", "Fraction": " ", "Street": "WASHINGTON", "Suffix1": "PIKE", "Suffix2": " ", "City": "BRIDGEVILLE", "Zip": "15017", "Leadman": "49", "MuniName": "S FAYETTE", "MWD": "2040008", "MWD2": 2040008, "NewAddress": "3326 WASHINGTON PIKE" }, "geometry": { "type": "Point", "coordinates": [ -80.125357289882629, 40.341008567936825 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1299, "OBJECTID": 1302, "Muni": 204, "LocName": "FAIRVIEW VOL FIRE CO", "Prefix": " ", "House": "3326", "Fraction": " ", "Street": "WASHINGTON", "Suffix1": "PIKE", "Suffix2": " ", "City": "BRIDGEVILLE", "Zip": "15017", "Leadman": "49", "MuniName": "S FAYETTE", "MWD": "2040012", "MWD2": 2040012, "NewAddress": "3326 WASHINGTON PIKE" }, "geometry": { "type": "Point", "coordinates": [ -80.125328794087693, 40.341009154567523 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1300, "OBJECTID": 1303, "Muni": 204, "LocName": "OAKRIDGE V.F.D.", "Prefix": " ", "House": "1214", "Fraction": " ", "Street": "OAKRIDGE", "Suffix1": "RD", "Suffix2": " ", "City": "OAKDALE", "Zip": "15071", "Leadman": "49", "MuniName": "S FAYETTE", "MWD": "2040002", "MWD2": 2040002, "NewAddress": "1214 OAKRIDGE RD" }, "geometry": { "type": "Point", "coordinates": [ -80.158573095439735, 40.376094293998428 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1301, "OBJECTID": 1304, "Muni": 204, "LocName": "S. FAYETTE HIGH SCHOOL GREEN RM", "Prefix": " ", "House": "3640", "Fraction": " ", "Street": "OLD OAKDALE", "Suffix1": "RD", "Suffix2": " ", "City": "MCDONALD", "Zip": "15057", "Leadman": "49", "MuniName": "S FAYETTE", "MWD": "2040003", "MWD2": 2040003, "NewAddress": "3640 OLD OAKDALE RD" }, "geometry": { "type": "Point", "coordinates": [ -80.171866081236814, 40.378045026257858 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1302, "OBJECTID": 1305, "Muni": 204, "LocName": "GLADDEN UP CHURCH FELLOWSHIP HALL", "Prefix": " ", "House": "755", "Fraction": " ", "Street": "MILLERS RUN", "Suffix1": "RD", "Suffix2": " ", "City": "MCDONALD", "Zip": "15057", "Leadman": "49", "MuniName": "S FAYETTE", "MWD": "2040005", "MWD2": 2040005, "NewAddress": "755 MILLERS RUN RD" }, "geometry": { "type": "Point", "coordinates": [ -80.175831678696483, 40.33943554015913 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1303, "OBJECTID": 1306, "Muni": 204, "LocName": "HUNTING RIDGE MEETING HOUSE", "Prefix": " ", "House": "401", "Fraction": " ", "Street": "MEETING HOUSE", "Suffix1": "RD", "Suffix2": " ", "City": "BRIDGEVILLE", "Zip": "15017", "Leadman": "49", "MuniName": "S FAYETTE", "MWD": "2040006", "MWD2": 2040006, "NewAddress": "401 MEETING HOUSE RD" }, "geometry": { "type": "Point", "coordinates": [ -80.127290731262022, 40.328184659124439 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1304, "OBJECTID": 1307, "Muni": 204, "LocName": "S. FAYETTE HIGH SCHOOL GREEN RM", "Prefix": " ", "House": "3640", "Fraction": " ", "Street": "OLD OAKDALE", "Suffix1": "RD", "Suffix2": " ", "City": "MCDONALD", "Zip": "15057", "Leadman": "49", "MuniName": "S FAYETTE", "MWD": "2040007", "MWD2": 2040007, "NewAddress": "3640 OLD OAKDALE RD" }, "geometry": { "type": "Point", "coordinates": [ -80.171838062734338, 40.37788176808499 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1305, "OBJECTID": 1308, "Muni": 204, "LocName": "VOL FIRE CO 1ST FLOOR", "Prefix": " ", "House": "3326", "Fraction": " ", "Street": "WASHINGTON", "Suffix1": "PIKE", "Suffix2": " ", "City": "CUDDY", "Zip": "15031", "Leadman": "49", "MuniName": "S FAYETTE", "MWD": "2040009", "MWD2": 2040009, "NewAddress": "3326 WASHINGTON PIKE" }, "geometry": { "type": "Point", "coordinates": [ -80.124868030548583, 40.341124013405874 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1306, "OBJECTID": 1309, "Muni": 204, "LocName": "S.FAYETTE TWP BUILDING COUNCIL CHAMBERS", "Prefix": " ", "House": "515", "Fraction": " ", "Street": "MILLERS RUN", "Suffix1": "RD", "Suffix2": " ", "City": "MORGAN", "Zip": "15064", "Leadman": "49", "MuniName": "S FAYETTE", "MWD": "2040011", "MWD2": 2040011, "NewAddress": "515 MILLERS RUN RD" }, "geometry": { "type": "Point", "coordinates": [ -80.142792063102689, 40.354727382697021 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1307, "OBJECTID": 1310, "Muni": 223, "LocName": "WEST VIEW ELEMENTARY SCHL GYM", "Prefix": " ", "House": "47", "Fraction": " ", "Street": "CHALFONTE", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15229", "Leadman": "27", "MuniName": "WEST VIEW", "MWD": "2230003", "MWD2": 2230003, "NewAddress": "47 CHALFONTE AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.032836483585072, 40.52115948248796 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1308, "OBJECTID": 1311, "Muni": 227, "LocName": "BRICKLAYERS & ALLIED CRAFTWORKERS", "Prefix": " ", "House": "100", "Fraction": " ", "Street": "KINGSTON", "Suffix1": "DR", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15235", "Leadman": "53", "MuniName": "WILKINS", "MWD": "2270103", "MWD2": 2270103, "NewAddress": "100 KINGSTON DR" }, "geometry": { "type": "Point", "coordinates": [ -79.809192639771453, 40.431149621792997 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1309, "OBJECTID": 1312, "Muni": 228, "LocName": "ST MARKS AME CHURCH", "Prefix": " ", "House": "1409", "Fraction": " ", "Street": "MONTIER", "Suffix1": "ST", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15221", "Leadman": "52", "MuniName": "WILKINSBURG", "MWD": "2280103", "MWD2": 2280103, "NewAddress": "1409 MONTIER ST" }, "geometry": { "type": "Point", "coordinates": [ -79.874690293106426, 40.444466706816392 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1310, "OBJECTID": 1313, "Muni": 228, "LocName": "TURNER SCHOOL", "Prefix": " ", "House": "1836", "Fraction": " ", "Street": "LAKETON", "Suffix1": "RD", "Suffix2": " ", "City": "WILKINSBURG", "Zip": "15221", "Leadman": "52", "MuniName": "WILKINSBURG", "MWD": "2280104", "MWD2": 2280104, "NewAddress": "1836 LAKETON RD" }, "geometry": { "type": "Point", "coordinates": [ -79.864686123733819, 40.449353322177004 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1311, "OBJECTID": 1314, "Muni": 228, "LocName": "TURNER SCHOOL", "Prefix": " ", "House": "1836", "Fraction": " ", "Street": "LAVETON", "Suffix1": "RD", "Suffix2": " ", "City": "WILKINSBURG", "Zip": "15221", "Leadman": "52", "MuniName": "WILKINSBURG", "MWD": "2280105", "MWD2": 2280105, "NewAddress": "1836 LAVETON RD" }, "geometry": { "type": "Point", "coordinates": [ -79.864514299980769, 40.449335532965513 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1312, "OBJECTID": 1315, "Muni": 204, "LocName": "HUNTING RIDGE MEETING HOUSE", "Prefix": " ", "House": "401", "Fraction": " ", "Street": "METTING HOUSE", "Suffix1": "RD", "Suffix2": " ", "City": "BRIDGEVILLE", "Zip": "15017", "Leadman": "49", "MuniName": "S FAYETTE", "MWD": "2040010", "MWD2": 2040010, "NewAddress": "401 METTING HOUSE RD" }, "geometry": { "type": "Point", "coordinates": [ -80.127464426931297, 40.328061562233835 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1313, "OBJECTID": 1316, "Muni": 183, "LocName": "OHIO TWP NATURE CTR COMMUNITY RM GROUND FL", "Prefix": " ", "House": "325", "Fraction": " ", "Street": "NICHOLSON", "Suffix1": "RD", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15237", "Leadman": "36", "MuniName": "OHIO", "MWD": "1830003", "MWD2": 1830003, "NewAddress": "325 NICHOLSON RD" }, "geometry": { "type": "Point", "coordinates": [ -80.10859284353262, 40.559731798223929 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1314, "OBJECTID": 1317, "Muni": 183, "LocName": "OHIO TWP NATURE CTR COMMUNITY RM GROUND FL", "Prefix": " ", "House": "325", "Fraction": " ", "Street": "NICHOLSON", "Suffix1": "RD", "Suffix2": " ", "City": "SEWICKLEY", "Zip": " ", "Leadman": "36", "MuniName": "OHIO", "MWD": "1830001", "MWD2": 1830001, "NewAddress": "325 NICHOLSON RD" }, "geometry": { "type": "Point", "coordinates": [ -80.10768925359956, 40.560353671264977 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1315, "OBJECTID": 1318, "Muni": 182, "LocName": "LIGHTHOUSE POINT", "Prefix": " ", "House": "500", "Fraction": " ", "Street": "CHAPEL", "Suffix1": "HBR", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15238", "Leadman": "38", "MuniName": "OHARA", "MWD": "1820101", "MWD2": 1820101, "NewAddress": "500 CHAPEL HBR" }, "geometry": { "type": "Point", "coordinates": [ -79.881905128319303, 40.485348588401649 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1316, "OBJECTID": 1319, "Muni": 172, "LocName": "MCCORMACK ELEM SCHOOL", "Prefix": " ", "House": "2801", "Fraction": " ", "Street": "BEAVER GRADE", "Suffix1": "RD", "Suffix2": " ", "City": "CORAOPOLIS", "Zip": "15108", "Leadman": "48", "MuniName": "MOON", "MWD": "1720006", "MWD2": 1720006, "NewAddress": "2801 BEAVER GRADE RD" }, "geometry": { "type": "Point", "coordinates": [ -80.174026148832112, 40.478923541209106 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1317, "OBJECTID": 1320, "Muni": 190, "LocName": "LONGWOOD AT OAKMONT WELLNESS CENTER", "Prefix": " ", "House": "500", "Fraction": " ", "Street": "ROUTE 909", "Suffix1": "RT", "Suffix2": " ", "City": "PLUM", "Zip": "15147", "Leadman": "30", "MuniName": "PLUM", "MWD": "1900003", "MWD2": 1900003, "NewAddress": "500 ROUTE 909 RT" }, "geometry": { "type": "Point", "coordinates": [ -79.807582824639681, 40.526788534554285 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1318, "OBJECTID": 1321, "Muni": 140, "LocName": "CENTER UNITED METHODIST CHURCH", "Prefix": " ", "House": "1575", "Fraction": " ", "Street": "DONNELLVILLE", "Suffix1": "RD", "Suffix2": " ", "City": "NATRONA HEIGHTS", "Zip": "15065", "Leadman": "44", "MuniName": "FAWN", "MWD": "1400002", "MWD2": 1400002, "NewAddress": "1575 DONNELLVILLE RD" }, "geometry": { "type": "Point", "coordinates": [ -79.745131845772065, 40.654383364825172 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1319, "OBJECTID": 1322, "Muni": 141, "LocName": "FINDLAY TWP ACTIVITY CTR 1ST FL", "Prefix": " ", "House": "310", "Fraction": " ", "Street": "MAIN", "Suffix1": "ST", "Suffix2": " ", "City": "CORAOPOLIS", "Zip": "15108", "Leadman": "48", "MuniName": "FINDLAY", "MWD": "1410002", "MWD2": 1410002, "NewAddress": "310 MAIN ST" }, "geometry": { "type": "Point", "coordinates": [ -80.245240323295505, 40.450251537593424 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1320, "OBJECTID": 0, "Muni": 188, "LocName": "MT WASHINGTON COM CTR 1ST FL", "Prefix": " ", "House": "122", "Fraction": " ", "Street": "VIRGINA", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15211-1914", "Leadman": "11", "MuniName": "PITTSBURGH", "MWD": "1881909", "MWD2": 1881909, "NewAddress": "122 VIRGINA AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.008029350878658, 40.430049236388413 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1, "OBJECTID": 1, "Muni": 101, "LocName": "ALEPPO TWP MUNICIPAL BUILDING", "Prefix": " ", "House": "100", "Fraction": " ", "Street": "NORTH", "Suffix1": "DR", "Suffix2": " ", "City": "SEWICKLEY", "Zip": "15143-2381", "Leadman": "37", "MuniName": "ALEPPO", "MWD": "1010001", "MWD2": 1010001, "NewAddress": "100 NORTH DR" }, "geometry": { "type": "Point", "coordinates": [ -80.139781259306176, 40.532234220291848 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 2, "OBJECTID": 2, "Muni": 102, "LocName": "ASPINWALL NEW BORO BLDG", "Prefix": " ", "House": "217", "Fraction": " ", "Street": "COMMERCIAL", "Suffix1": "AVE", "Suffix2": " ", "City": "ASPINWALL", "Zip": "15215-3024", "Leadman": "38", "MuniName": "ASPINWALL", "MWD": "1020001", "MWD2": 1020001, "NewAddress": "217 COMMERCIAL AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.904360989463896, 40.490386289149718 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 3, "OBJECTID": 3, "Muni": 102, "LocName": "#2 FIRE HOUSE STATION", "Prefix": " ", "House": "201", "Fraction": " ", "Street": "12TH", "Suffix1": "ST", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15215", "Leadman": "38", "MuniName": "ASPINWALL", "MWD": "1020002", "MWD2": 1020002, "NewAddress": "201 12TH ST" }, "geometry": { "type": "Point", "coordinates": [ -79.903777969855341, 40.499188858192205 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 4, "OBJECTID": 4, "Muni": 102, "LocName": "ST SCHOLASTICA PASTORIAL CENTER", "Prefix": " ", "House": "300", "Fraction": " ", "Street": "MAPLE", "Suffix1": "AVE", "Suffix2": " ", "City": "ASPINWALL", "Zip": "15215", "Leadman": "38", "MuniName": "ASPINWALL", "MWD": "1020003", "MWD2": 1020003, "NewAddress": "300 MAPLE AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.901020169873945, 40.491762263133708 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 5, "OBJECTID": 5, "Muni": 103, "LocName": "AVALON BORO BLDG", "Prefix": " ", "House": "640", "Fraction": " ", "Street": "CALIFORNIA", "Suffix1": "AVE", "Suffix2": " ", "City": "AVALON", "Zip": "15202-2499", "Leadman": "36", "MuniName": "AVALON", "MWD": "1030100", "MWD2": 1030100, "NewAddress": "640 CALIFORNIA AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.067717288546277, 40.500982726050985 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 6, "OBJECTID": 6, "Muni": 103, "LocName": "AVALON PUBLIC LIBRARY CONF. RM.", "Prefix": "S", "House": "317", "Fraction": " ", "Street": "HOME", "Suffix1": "AVE", "Suffix2": " ", "City": "AVALON", "Zip": "15202-2805", "Leadman": "36", "MuniName": "AVALON", "MWD": "1030201", "MWD2": 1030201, "NewAddress": "317 HOME AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.062793340437011, 40.497108422455391 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 7, "OBJECTID": 7, "Muni": 103, "LocName": "EPIPHANY CHURCH", "Prefix": "S", "House": "317", "Fraction": " ", "Street": "HOME", "Suffix1": "AVE", "Suffix2": " ", "City": "AVALON", "Zip": "15202-2805", "Leadman": "36", "MuniName": "AVALON", "MWD": "1030202", "MWD2": 1030202, "NewAddress": "317 HOME AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.061692308968759, 40.498097529979468 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 8, "OBJECTID": 8, "Muni": 103, "LocName": "GREENSTONE UNITED METHODIST CHURCH", "Prefix": " ", "House": "939", "Fraction": " ", "Street": "CALIFORNIA", "Suffix1": "AVE", "Suffix2": " ", "City": "AVALON", "Zip": "15202-3034", "Leadman": "36", "MuniName": "AVALON", "MWD": "1030302", "MWD2": 1030302, "NewAddress": "939 CALIFORNIA AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.062343630484435, 40.49917336331886 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 9, "OBJECTID": 9, "Muni": 103, "LocName": "GREENSTONE UNITED METHODIST CHURCH GYM", "Prefix": " ", "House": "939", "Fraction": " ", "Street": "CALIFORNIA", "Suffix1": "AVE", "Suffix2": " ", "City": "AVALON", "Zip": "15202-3034", "Leadman": "36", "MuniName": "AVALON", "MWD": "1030303", "MWD2": 1030303, "NewAddress": "939 CALIFORNIA AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.062343630484435, 40.49917336331886 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 10, "OBJECTID": 10, "Muni": 104, "LocName": "LAFFERTY CENTER", "Prefix": " ", "House": "330", "Fraction": " ", "Street": "JOSEPH", "Suffix1": "ST", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15227", "Leadman": "55", "MuniName": "BALDWIN BR", "MWD": "1040001", "MWD2": 1040001, "NewAddress": "330 JOSEPH ST" }, "geometry": { "type": "Point", "coordinates": [ -79.970546618819796, 40.395719039767464 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 11, "OBJECTID": 11, "Muni": 104, "LocName": "LAFFERTY CENTER", "Prefix": " ", "House": "330", "Fraction": " ", "Street": "JOSEPH", "Suffix1": "ST", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15227", "Leadman": "55", "MuniName": "BALDWIN BR", "MWD": "1040002", "MWD2": 1040002, "NewAddress": "330 JOSEPH ST" }, "geometry": { "type": "Point", "coordinates": [ -79.970546618819796, 40.395719039767464 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 12, "OBJECTID": 12, "Muni": 104, "LocName": "BALDWIN BORO BLDG", "Prefix": " ", "House": "3344", "Fraction": " ", "Street": "CHURCHVIEW", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15227", "Leadman": "55", "MuniName": "BALDWIN BR", "MWD": "1040003", "MWD2": 1040003, "NewAddress": "3344 CHURCHVIEW AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.95691532251297, 40.3833094893536 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 13, "OBJECTID": 13, "Muni": 104, "LocName": "OPTION INDEPENDENT FIRE CO", "Prefix": " ", "House": "825", "Fraction": " ", "Street": "STREETS RUN", "Suffix1": "RD", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15236", "Leadman": "34", "MuniName": "BALDWIN BR", "MWD": "1040005", "MWD2": 1040005, "NewAddress": "825 STREETS RUN RD" }, "geometry": { "type": "Point", "coordinates": [ -79.971819149739417, 40.348103461706039 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 14, "OBJECTID": 14, "Muni": 104, "LocName": "WALLACE BUILDING", "Prefix": " ", "House": "41", "Fraction": " ", "Street": "MACEK", "Suffix1": "DR", "Suffix2": " ", "City": "BALDWIN BORO", "Zip": "15227", "Leadman": "55", "MuniName": "BALDWIN BR", "MWD": "1040009", "MWD2": 1040009, "NewAddress": "41 MACEK DR" }, "geometry": { "type": "Point", "coordinates": [ -79.962643978923253, 40.356995218547382 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 15, "OBJECTID": 15, "Muni": 104, "LocName": "BORO BLDG", "Prefix": " ", "House": "3344", "Fraction": " ", "Street": "CHURCHVIEW", "Suffix1": "AVE", "Suffix2": " ", "City": "BALDWIN BORO", "Zip": "15227", "Leadman": "55", "MuniName": "BALDWIN BR", "MWD": "1040016", "MWD2": 1040016, "NewAddress": "3344 CHURCHVIEW AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.95705685680224, 40.383369847174855 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 16, "OBJECTID": 16, "Muni": 104, "LocName": "WALLACE BUILDING", "Prefix": " ", "House": "41", "Fraction": " ", "Street": "MACEK", "Suffix1": "DR", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15227", "Leadman": "55", "MuniName": "BALDWIN BR", "MWD": "1040018", "MWD2": 1040018, "NewAddress": "41 MACEK DR" }, "geometry": { "type": "Point", "coordinates": [ -79.962643978923253, 40.356995218547382 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 17, "OBJECTID": 17, "Muni": 105, "LocName": "MUNICIPAL BLDG UPPER LEVEL HL", "Prefix": " ", "House": "10", "Fraction": " ", "Street": "COMMUNITY PARK", "Suffix1": "DR", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15234-2402", "Leadman": "54", "MuniName": "BALDWIN TP", "MWD": "1050001", "MWD2": 1050001, "NewAddress": "10 COMMUNITY PARK DR" }, "geometry": { "type": "Point", "coordinates": [ -80.017597056879794, 40.379408146625281 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 18, "OBJECTID": 18, "Muni": 105, "LocName": "MUNICIPAL BLDG UPPER LEVEL", "Prefix": " ", "House": "10", "Fraction": " ", "Street": "COMMUNITY PARK", "Suffix1": "DR", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15234-2402", "Leadman": "54", "MuniName": "BALDWIN TP", "MWD": "1050002", "MWD2": 1050002, "NewAddress": "10 COMMUNITY PARK DR" }, "geometry": { "type": "Point", "coordinates": [ -80.017597056879794, 40.379408146625281 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 19, "OBJECTID": 19, "Muni": 107, "LocName": "ROOFERS LOCAL UNION #37 MEETING RM", "Prefix": " ", "House": "230", "Fraction": " ", "Street": "LINCOLN", "Suffix1": "AVE", "Suffix2": " ", "City": "BELLEVUE", "Zip": "15202-3827", "Leadman": "36", "MuniName": "BELLEVUE", "MWD": "1070101", "MWD2": 1070101, "NewAddress": "230 LINCOLN AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.048980567003056, 40.492507943049517 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 20, "OBJECTID": 20, "Muni": 107, "LocName": "NORTHMINSTER CHURCH", "Prefix": "N", "House": "45", "Fraction": " ", "Street": "FREMONT", "Suffix1": "AVE", "Suffix2": " ", "City": "BELLEVUE", "Zip": "15202-3217", "Leadman": "36", "MuniName": "BELLEVUE", "MWD": "1070102", "MWD2": 1070102, "NewAddress": "45 FREMONT AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.052528111453185, 40.495234805570838 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 21, "OBJECTID": 21, "Muni": 107, "LocName": "CENTER OF BELLEVUE", "Prefix": "N", "House": "2", "Fraction": " ", "Street": "SPRAGUE", "Suffix1": "AVE", "Suffix2": " ", "City": "BELLEVUE", "Zip": "15202", "Leadman": "36", "MuniName": "BELLEVUE", "MWD": "1070202", "MWD2": 1070202, "NewAddress": "2 SPRAGUE AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.056877364102263, 40.49690697858388 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 22, "OBJECTID": 22, "Muni": 107, "LocName": "BELLEVUE BORO FIRE HALL", "Prefix": " ", "House": "537", "Fraction": " ", "Street": "BAYNE", "Suffix1": "AVE", "Suffix2": " ", "City": "BELLEVUE", "Zip": "15202", "Leadman": "36", "MuniName": "BELLEVUE", "MWD": "1070301", "MWD2": 1070301, "NewAddress": "537 BAYNE AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.056283021783571, 40.496827491166144 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 23, "OBJECTID": 23, "Muni": 107, "LocName": "BELLEVUE BORO FIRE HALL", "Prefix": " ", "House": "537", "Fraction": " ", "Street": "BAYNE", "Suffix1": "AVE", "Suffix2": " ", "City": "BELLEVUE", "Zip": "15202-3120", "Leadman": "36", "MuniName": "BELLEVUE", "MWD": "1070302", "MWD2": 1070302, "NewAddress": "537 BAYNE AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.056378060872632, 40.49669346032141 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 24, "OBJECTID": 24, "Muni": 110, "LocName": "BETHEL PARK V.F.C. CLIFTION STATION", "Prefix": " ", "House": "1100", "Fraction": " ", "Street": "CLIFTON", "Suffix1": "RD", "Suffix2": " ", "City": "BETHEL PARK", "Zip": "15102", "Leadman": "39", "MuniName": "BETHEL PARK", "MWD": "1100201", "MWD2": 1100201, "NewAddress": "1100 CLIFTON RD" }, "geometry": { "type": "Point", "coordinates": [ -80.042334535764439, 40.296629234279465 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 25, "OBJECTID": 25, "Muni": 110, "LocName": "NEIL ARMSTRONG SCH GYM LWR LVL ENT", "Prefix": " ", "House": "5800", "Fraction": " ", "Street": "MURRAY", "Suffix1": "AVE", "Suffix2": " ", "City": "BETHEL PARK", "Zip": "15102-3448", "Leadman": "39", "MuniName": "BETHEL PARK", "MWD": "1100202", "MWD2": 1100202, "NewAddress": "5800 MURRAY AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.022815882677278, 40.306379687345817 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 26, "OBJECTID": 26, "Muni": 110, "LocName": "NEIL ARMSTRONG SCH GYM LWR LVL ENT", "Prefix": " ", "House": "5800", "Fraction": " ", "Street": "MURRAY", "Suffix1": "AVE", "Suffix2": " ", "City": "BETHEL PARK", "Zip": "15102-3448", "Leadman": "39", "MuniName": "BETHEL PARK", "MWD": "1100203", "MWD2": 1100203, "NewAddress": "5800 MURRAY AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.022815882677278, 40.306379687345817 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 27, "OBJECTID": 27, "Muni": 110, "LocName": "RUTHFRED LUTHERAN CHURCH", "Prefix": " ", "House": "3401", "Fraction": " ", "Street": "SOUTH PARK", "Suffix1": "RD", "Suffix2": " ", "City": "BETHEL PARK", "Zip": "15102", "Leadman": "39", "MuniName": "BETHEL PARK", "MWD": "1100302", "MWD2": 1100302, "NewAddress": "3401 SOUTH PARK RD" }, "geometry": { "type": "Point", "coordinates": [ -80.056620222926398, 40.321745207212466 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 28, "OBJECTID": 28, "Muni": 110, "LocName": "JOHN MCMILLAN PRESBYTERIAN CH", "Prefix": " ", "House": "875", "Fraction": " ", "Street": "CLIFTON", "Suffix1": "RD", "Suffix2": " ", "City": "BETHEL PARK", "Zip": "15102", "Leadman": "39", "MuniName": "BETHEL PARK", "MWD": "1100303", "MWD2": 1100303, "NewAddress": "875 CLIFTON RD" }, "geometry": { "type": "Point", "coordinates": [ -80.050620224845218, 40.301624551464542 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 29, "OBJECTID": 29, "Muni": 110, "LocName": "HAMILTON PRESBYTERIAN CHURCH", "Prefix": " ", "House": "4500", "Fraction": " ", "Street": "HAMILTON", "Suffix1": "RD", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15236-3370", "Leadman": "34", "MuniName": "BETHEL PARK", "MWD": "1100401", "MWD2": 1100401, "NewAddress": "4500 HAMILTON RD" }, "geometry": { "type": "Point", "coordinates": [ -80.012318469456801, 40.350723200331963 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 30, "OBJECTID": 30, "Muni": 110, "LocName": "BETHEL PARK V.F.C. MILFORD STATION", "Prefix": " ", "House": "2310", "Fraction": " ", "Street": "MILFORD", "Suffix1": "DR", "Suffix2": " ", "City": "BETHEL PARK", "Zip": "15102-2114", "Leadman": "39", "MuniName": "BETHEL PARK", "MWD": "1100502", "MWD2": 1100502, "NewAddress": "2310 MILFORD DR" }, "geometry": { "type": "Point", "coordinates": [ -80.033213675649932, 40.348842164787776 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 31, "OBJECTID": 31, "Muni": 110, "LocName": "SOUTH HILLS ASSEMBLY LRG LOBBY", "Prefix": " ", "House": "2725", "Fraction": " ", "Street": "BETHEL CHURCH", "Suffix1": "RD", "Suffix2": " ", "City": "BETHEL PARK", "Zip": "15102-2036", "Leadman": "39", "MuniName": "BETHEL PARK", "MWD": "1100503", "MWD2": 1100503, "NewAddress": "2725 BETHEL CHURCH RD" }, "geometry": { "type": "Point", "coordinates": [ -80.039018070627193, 40.341006086954657 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 32, "OBJECTID": 32, "Muni": 110, "LocName": "FIRST BETHEL UNITED METH CH FOUNDERS HALL", "Prefix": " ", "House": "5901", "Fraction": " ", "Street": "LIBRARY", "Suffix1": "RD", "Suffix2": " ", "City": "BETHEL PARK", "Zip": "15102", "Leadman": "39", "MuniName": "BETHEL PARK", "MWD": "1100602", "MWD2": 1100602, "NewAddress": "5901 LIBRARY RD" }, "geometry": { "type": "Point", "coordinates": [ -80.032117078296295, 40.307688918016218 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 33, "OBJECTID": 33, "Muni": 110, "LocName": "FIRST BETHEL UNITED METH CH FOUNDERS HALL", "Prefix": " ", "House": "5901", "Fraction": " ", "Street": "LIBRARY", "Suffix1": "RD", "Suffix2": " ", "City": "BETHEL PARK", "Zip": "15102", "Leadman": "39", "MuniName": "BETHEL PARK", "MWD": "1100603", "MWD2": 1100603, "NewAddress": "5901 LIBRARY RD" }, "geometry": { "type": "Point", "coordinates": [ -80.032085607840543, 40.307597217668153 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 34, "OBJECTID": 34, "Muni": 110, "LocName": "RUTHFRED LUTHERAN CHURCH", "Prefix": " ", "House": "3401", "Fraction": " ", "Street": "SOUTH PARK", "Suffix1": "RD", "Suffix2": " ", "City": "BETHEL PARK", "Zip": "15102", "Leadman": "39", "MuniName": "BETHEL PARK", "MWD": "1100701", "MWD2": 1100701, "NewAddress": "3401 SOUTH PARK RD" }, "geometry": { "type": "Point", "coordinates": [ -80.056620222926398, 40.321745207212466 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 35, "OBJECTID": 35, "Muni": 110, "LocName": "BETHEL PRESBY CHURCH AUD", "Prefix": " ", "House": "2999", "Fraction": " ", "Street": "BETHEL CHURCH", "Suffix1": "RD", "Suffix2": " ", "City": "BETHEL PARK", "Zip": "15102-1603", "Leadman": "39", "MuniName": "BETHEL PARK", "MWD": "1100702", "MWD2": 1100702, "NewAddress": "2999 BETHEL CHURCH RD" }, "geometry": { "type": "Point", "coordinates": [ -80.047914235674952, 40.33708279249111 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 36, "OBJECTID": 36, "Muni": 110, "LocName": "BETHEL PRESBY CHURCH AUD", "Prefix": " ", "House": "2999", "Fraction": " ", "Street": "BETHEL CHURCH", "Suffix1": "RD", "Suffix2": " ", "City": "BETHEL PARK", "Zip": "15102-1603", "Leadman": "39", "MuniName": "BETHEL PARK", "MWD": "1100703", "MWD2": 1100703, "NewAddress": "2999 BETHEL CHURCH RD" }, "geometry": { "type": "Point", "coordinates": [ -80.047914235674952, 40.33708279249111 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 37, "OBJECTID": 37, "Muni": 110, "LocName": "PATHFINDER SCHOOL", "Prefix": " ", "House": "50", "Fraction": " ", "Street": "DONATI", "Suffix1": "RD", "Suffix2": " ", "City": "BETHEL PARK", "Zip": "15102", "Leadman": "39", "MuniName": "BETHEL PARK", "MWD": "1100801", "MWD2": 1100801, "NewAddress": "50 DONATI RD" }, "geometry": { "type": "Point", "coordinates": [ -80.048486297846267, 40.341972539882107 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 38, "OBJECTID": 38, "Muni": 110, "LocName": "PATHFINDER SCHOOL", "Prefix": " ", "House": "50", "Fraction": " ", "Street": "DONATI", "Suffix1": "RD", "Suffix2": " ", "City": "BETHEL PARK", "Zip": "15102", "Leadman": "39", "MuniName": "BETHEL PARK", "MWD": "1100802", "MWD2": 1100802, "NewAddress": "50 DONATI RD" }, "geometry": { "type": "Point", "coordinates": [ -80.048486297846267, 40.341972539882107 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 39, "OBJECTID": 39, "Muni": 110, "LocName": "MUNICIPAL BLDG COUNCIL CHAMBERS", "Prefix": "W", "House": "5100", "Fraction": " ", "Street": "LIBRARY", "Suffix1": "AVE", "Suffix2": " ", "City": "BETHEL PARK", "Zip": "15102-2787", "Leadman": "39", "MuniName": "BETHEL PARK", "MWD": "1100803", "MWD2": 1100803, "NewAddress": "5100 LIBRARY AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.031408957486079, 40.332061363298187 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 40, "OBJECTID": 40, "Muni": 110, "LocName": "BETHEL PRESBY CHURCH RM 107", "Prefix": " ", "House": "2999", "Fraction": " ", "Street": "BETHEL CHURCH", "Suffix1": "RD", "Suffix2": " ", "City": "BETHEL PARK", "Zip": "15102-1603", "Leadman": "39", "MuniName": "BETHEL PARK", "MWD": "1100804", "MWD2": 1100804, "NewAddress": "2999 BETHEL CHURCH RD" }, "geometry": { "type": "Point", "coordinates": [ -80.047914235674952, 40.33708279249111 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 41, "OBJECTID": 41, "Muni": 110, "LocName": "WM PENN SCHOOL LIBRARY", "Prefix": " ", "House": "110", "Fraction": " ", "Street": "WOODLET", "Suffix1": "LN", "Suffix2": " ", "City": "BETHEL PARK", "Zip": "15102-2350", "Leadman": "39", "MuniName": "BETHEL PARK", "MWD": "1100902", "MWD2": 1100902, "NewAddress": "110 WOODLET LN" }, "geometry": { "type": "Point", "coordinates": [ -80.043400397037189, 40.298791931821206 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 42, "OBJECTID": 42, "Muni": 110, "LocName": "JOHN MCMILLAN UN PRESBYTERIAN CH (USA)", "Prefix": " ", "House": "1100", "Fraction": " ", "Street": "CLIFTON", "Suffix1": "RD", "Suffix2": " ", "City": "BETHEL PARK", "Zip": "15102", "Leadman": "39", "MuniName": "BETHEL PARK", "MWD": "1100903", "MWD2": 1100903, "NewAddress": "1100 CLIFTON RD" }, "geometry": { "type": "Point", "coordinates": [ -80.042334535764439, 40.296629234279465 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 43, "OBJECTID": 43, "Muni": 112, "LocName": "PIONEER HOSE CO", "Prefix": " ", "House": "124", "Fraction": " ", "Street": "MORGAN", "Suffix1": "ST", "Suffix2": " ", "City": "BRACKENRIDGE", "Zip": "15014-1415", "Leadman": "44", "MuniName": "BRACKENRIDGE", "MWD": "1120100", "MWD2": 1120100, "NewAddress": "124 MORGAN ST" }, "geometry": { "type": "Point", "coordinates": [ -79.738909852449055, 40.604387457150452 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 44, "OBJECTID": 44, "Muni": 112, "LocName": "PIONEER HOSE CO #1", "Prefix": " ", "House": "124", "Fraction": " ", "Street": "MORGAN", "Suffix1": "ST", "Suffix2": " ", "City": "BRACKENRIDGE", "Zip": "15014", "Leadman": "44", "MuniName": "BRACKENRIDGE", "MWD": "1120200", "MWD2": 1120200, "NewAddress": "124 MORGAN ST" }, "geometry": { "type": "Point", "coordinates": [ -79.738909852449055, 40.604387457150452 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 45, "OBJECTID": 45, "Muni": 112, "LocName": "PIONEER HOSE CO", "Prefix": " ", "House": "124", "Fraction": " ", "Street": "MORGAN", "Suffix1": "ST", "Suffix2": " ", "City": "BRACKENRIDGE", "Zip": "15014", "Leadman": "44", "MuniName": "BRACKENRIDGE", "MWD": "1120300", "MWD2": 1120300, "NewAddress": "124 MORGAN ST" }, "geometry": { "type": "Point", "coordinates": [ -79.739022915964966, 40.604355263059922 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 46, "OBJECTID": 46, "Muni": 113, "LocName": "LUNDINE APARTMENTS LOBBY", "Prefix": " ", "House": "125", "Fraction": " ", "Street": "COREY", "Suffix1": "AVE", "Suffix2": " ", "City": "BRADDOCK", "Zip": "15104", "Leadman": "32", "MuniName": "BRADDOCK", "MWD": "1130100", "MWD2": 1130100, "NewAddress": "125 COREY AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.870287148444973, 40.410647674951512 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 47, "OBJECTID": 47, "Muni": 113, "LocName": "BRADDOCK BORO BLDG COUNCIL CHAMBERS", "Prefix": " ", "House": "415", "Fraction": " ", "Street": "6TH", "Suffix1": "ST", "Suffix2": " ", "City": "BRADDOCK", "Zip": "15104", "Leadman": "32", "MuniName": "BRADDOCK", "MWD": "1130200", "MWD2": 1130200, "NewAddress": "415 6TH ST" }, "geometry": { "type": "Point", "coordinates": [ -79.868356379564375, 40.403788802504167 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 48, "OBJECTID": 48, "Muni": 114, "LocName": "BRADDOCK HILLS ELEM SCHOOL", "Prefix": " ", "House": "1300", "Fraction": " ", "Street": "BRINTON", "Suffix1": "RD", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15221", "Leadman": "31", "MuniName": "BRADDOCK HL", "MWD": "1140001", "MWD2": 1140001, "NewAddress": "1300 BRINTON RD" }, "geometry": { "type": "Point", "coordinates": [ -79.863452735012075, 40.421920184477045 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 49, "OBJECTID": 49, "Muni": 114, "LocName": "BRADDOCK HILLS SR. CENTER", "Prefix": " ", "House": "2794", "Fraction": " ", "Street": "COLUMBIA", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15221", "Leadman": "31", "MuniName": "BRADDOCK HL", "MWD": "1140002", "MWD2": 1140002, "NewAddress": "2794 COLUMBIA AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.868674711325795, 40.42412870179966 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 50, "OBJECTID": 50, "Muni": 115, "LocName": "BRADFORD WOODS COMM CHURCH", "Prefix": " ", "House": "4836", "Fraction": " ", "Street": "WEXFORD RUN", "Suffix1": "RD", "Suffix2": " ", "City": "BRADFORD WOODS", "Zip": "15015", "Leadman": "42", "MuniName": "BRADFORDWOOD", "MWD": "1150001", "MWD2": 1150001, "NewAddress": "4836 WEXFORD RUN RD" }, "geometry": { "type": "Point", "coordinates": [ -80.081036839167965, 40.634937780877046 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 51, "OBJECTID": 51, "Muni": 116, "LocName": "MOORE ELEMENTARY SCHOOL GYM", "Prefix": " ", "House": "3809", "Fraction": " ", "Street": "DALEWOOD", "Suffix1": "ST", "Suffix2": " ", "City": "BRENTWOOD", "Zip": "15227", "Leadman": "55", "MuniName": "BRENTWOOD", "MWD": "1160001", "MWD2": 1160001, "NewAddress": "3809 DALEWOOD ST" }, "geometry": { "type": "Point", "coordinates": [ -79.974516204651735, 40.368511977096261 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 52, "OBJECTID": 52, "Muni": 116, "LocName": "CONCORD LUTH CH ED BLD LWR LVL", "Prefix": " ", "House": "3109", "Fraction": " ", "Street": "BROWNSVILLE", "Suffix1": "RD", "Suffix2": " ", "City": "BRENTWOOD", "Zip": "15227-2429", "Leadman": "55", "MuniName": "BRENTWOOD", "MWD": "1160002", "MWD2": 1160002, "NewAddress": "3109 BROWNSVILLE RD" }, "geometry": { "type": "Point", "coordinates": [ -79.975192962912701, 40.380052310135589 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 53, "OBJECTID": 53, "Muni": 116, "LocName": "PRIVATE RESIDENCE GARAGE", "Prefix": " ", "House": "3209", "Fraction": " ", "Street": "WILLETT", "Suffix1": "RD", "Suffix2": " ", "City": "BRENTWOOD", "Zip": "15227-3043", "Leadman": "55", "MuniName": "BRENTWOOD", "MWD": "1160004", "MWD2": 1160004, "NewAddress": "3209 WILLETT RD" }, "geometry": { "type": "Point", "coordinates": [ -79.966899819639309, 40.380929874098584 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 54, "OBJECTID": 54, "Muni": 116, "LocName": "BORO BLDG", "Prefix": " ", "House": "3624", "Fraction": " ", "Street": "BROWNSVILLE", "Suffix1": "RD", "Suffix2": " ", "City": "BRENTWOOD", "Zip": "15227-3153", "Leadman": "55", "MuniName": "BRENTWOOD", "MWD": "1160006", "MWD2": 1160006, "NewAddress": "3624 BROWNSVILLE RD" }, "geometry": { "type": "Point", "coordinates": [ -79.971754404111806, 40.37505243721472 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 55, "OBJECTID": 55, "Muni": 116, "LocName": "MOORE ELEMENTARY SCHOOL GYM", "Prefix": " ", "House": "3809", "Fraction": " ", "Street": "DALEWOOD", "Suffix1": "ST", "Suffix2": " ", "City": "BRENTWOOD", "Zip": "15227", "Leadman": "55", "MuniName": "BRENTWOOD", "MWD": "1160009", "MWD2": 1160009, "NewAddress": "3809 DALEWOOD ST" }, "geometry": { "type": "Point", "coordinates": [ -79.974516204651735, 40.368511977096261 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 56, "OBJECTID": 56, "Muni": 117, "LocName": "BRIDGEVILLE VOL FIRE CO LOBBY", "Prefix": " ", "House": "370", "Fraction": " ", "Street": "COMMERCIAL", "Suffix1": "ST", "Suffix2": " ", "City": "BRIDGEVILLE", "Zip": "15017-2347", "Leadman": "47", "MuniName": "BRIDGEVILLE", "MWD": "1170001", "MWD2": 1170001, "NewAddress": "370 COMMERCIAL ST" }, "geometry": { "type": "Point", "coordinates": [ -80.106847292943414, 40.362136740881155 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 57, "OBJECTID": 57, "Muni": 117, "LocName": "BRIDGEVILLE VOL FIRE CO LOBBY", "Prefix": " ", "House": "370", "Fraction": " ", "Street": "COMMERCIAL", "Suffix1": "ST", "Suffix2": " ", "City": "BRIDGEVILLE", "Zip": "15017-2347", "Leadman": "47", "MuniName": "BRIDGEVILLE", "MWD": "1170002", "MWD2": 1170002, "NewAddress": "370 COMMERCIAL ST" }, "geometry": { "type": "Point", "coordinates": [ -80.106847292943414, 40.362136740881155 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 58, "OBJECTID": 58, "Muni": 118, "LocName": "CARNEGIE VOL FIRE & RESCUE AMB BAY", "Prefix": "W", "House": "201", "Fraction": " ", "Street": "MAIN", "Suffix1": "ST", "Suffix2": " ", "City": "CARNEGIE", "Zip": "15106-2621", "Leadman": "26", "MuniName": "CARNEGIE", "MWD": "1180101", "MWD2": 1180101, "NewAddress": "201 MAIN ST" }, "geometry": { "type": "Point", "coordinates": [ -80.090554150672844, 40.404773904490391 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 59, "OBJECTID": 59, "Muni": 118, "LocName": "CARNEGIE VOL FIRE & RESCUE AMB BAY", "Prefix": "W", "House": "201", "Fraction": " ", "Street": "MAIN", "Suffix1": "ST", "Suffix2": " ", "City": "CARNEGIE", "Zip": "15106-2621", "Leadman": "26", "MuniName": "CARNEGIE", "MWD": "1180104", "MWD2": 1180104, "NewAddress": "201 MAIN ST" }, "geometry": { "type": "Point", "coordinates": [ -80.090554150672844, 40.404773904490391 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 60, "OBJECTID": 60, "Muni": 118, "LocName": "CARNEGIE ELEMENTARY SCHOOL 1ST FL", "Prefix": " ", "House": "301", "Fraction": " ", "Street": "FRANKLIN", "Suffix1": "AVE", "Suffix2": " ", "City": "CARNEGIE", "Zip": "15106-3031", "Leadman": "26", "MuniName": "CARNEGIE", "MWD": "1180203", "MWD2": 1180203, "NewAddress": "301 FRANKLIN AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.081787396580012, 40.401379179138097 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 61, "OBJECTID": 61, "Muni": 118, "LocName": "CARNEGIE ELEMENTARY SCHOOL", "Prefix": " ", "House": "301", "Fraction": " ", "Street": "FRANKLIN", "Suffix1": "AVE", "Suffix2": " ", "City": "CARNEGIE", "Zip": "15106", "Leadman": "26", "MuniName": "CARNEGIE", "MWD": "1180204", "MWD2": 1180204, "NewAddress": "301 FRANKLIN AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.081787396580012, 40.401379179138097 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 62, "OBJECTID": 62, "Muni": 119, "LocName": "ST ANNES SCHOOL CAFETERIA", "Prefix": " ", "House": "4040", "Fraction": " ", "Street": "WILLOW", "Suffix1": "AVE", "Suffix2": " ", "City": "CASTLE SHANNON", "Zip": "15234", "Leadman": "54", "MuniName": "CASL SHANNON", "MWD": "1190004", "MWD2": 1190004, "NewAddress": "4040 WILLOW AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.029219354366973, 40.361892340114878 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 63, "OBJECTID": 63, "Muni": 119, "LocName": "ST ANNES SCHOOL GYM", "Prefix": " ", "House": "4040", "Fraction": " ", "Street": "WILLOW", "Suffix1": "AVE", "Suffix2": " ", "City": "CASTLE SHANNON", "Zip": "15234", "Leadman": "54", "MuniName": "CASL SHANNON", "MWD": "1190006", "MWD2": 1190006, "NewAddress": "4040 WILLOW AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.029219354366973, 40.361892340114878 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 64, "OBJECTID": 64, "Muni": 121, "LocName": "CHESWICK VOLUNTEER FIRE CO", "Prefix": " ", "House": "1411", "Fraction": " ", "Street": "SPRUCE", "Suffix1": "ST", "Suffix2": " ", "City": "CHESWICK", "Zip": "15024", "Leadman": "45", "MuniName": "CHESWICK", "MWD": "1210001", "MWD2": 1210001, "NewAddress": "1411 SPRUCE ST" }, "geometry": { "type": "Point", "coordinates": [ -79.799933741406036, 40.542827116953532 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 65, "OBJECTID": 65, "Muni": 121, "LocName": "CHESWICK VOLUNTEER FIRE CO", "Prefix": " ", "House": "1411", "Fraction": " ", "Street": "SPRUCE", "Suffix1": "ST", "Suffix2": " ", "City": "CHESWICK", "Zip": "15024", "Leadman": "45", "MuniName": "CHESWICK", "MWD": "1210002", "MWD2": 1210002, "NewAddress": "1411 SPRUCE ST" }, "geometry": { "type": "Point", "coordinates": [ -79.799933741406036, 40.542827116953532 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 66, "OBJECTID": 66, "Muni": 123, "LocName": "1ST UNITED METH CH RAMP DR", "Prefix": " ", "House": "500", "Fraction": " ", "Street": "THOMPSON", "Suffix1": "AVE", "Suffix2": " ", "City": "CLAIRTON", "Zip": "15025-1041", "Leadman": "21", "MuniName": "CLAIRTON", "MWD": "1230203", "MWD2": 1230203, "NewAddress": "500 THOMPSON AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.886103727606127, 40.28628828383291 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 67, "OBJECTID": 67, "Muni": 123, "LocName": "1ST UNITED METH CH RAMP DR", "Prefix": " ", "House": "500", "Fraction": " ", "Street": "THOMPSON", "Suffix1": "AVE", "Suffix2": " ", "City": "CLAIRTON", "Zip": "15025", "Leadman": "21", "MuniName": "CLAIRTON", "MWD": "1230301", "MWD2": 1230301, "NewAddress": "500 THOMPSON AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.8859572205631, 40.286711918626473 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 68, "OBJECTID": 68, "Muni": 123, "LocName": "1ST UN METHODIST CH RAMP DR", "Prefix": " ", "House": "500", "Fraction": " ", "Street": "THOMPSON", "Suffix1": "AVE", "Suffix2": " ", "City": "CLAIRTON", "Zip": "15025-1041", "Leadman": "21", "MuniName": "CLAIRTON", "MWD": "1230302", "MWD2": 1230302, "NewAddress": "500 THOMPSON AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.886103727606127, 40.28628828383291 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 69, "OBJECTID": 69, "Muni": 123, "LocName": "CLAIRTON MUNICIPAL BUILDING", "Prefix": " ", "House": "551", "Fraction": " ", "Street": "RAVENSBURG", "Suffix1": "BLVD", "Suffix2": " ", "City": "CLAIRTON", "Zip": "15025", "Leadman": "21", "MuniName": "CLAIRTON", "MWD": "1230402", "MWD2": 1230402, "NewAddress": "551 RAVENSBURG BLVD" }, "geometry": { "type": "Point", "coordinates": [ -79.894294992455301, 40.295923471279657 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 70, "OBJECTID": 70, "Muni": 123, "LocName": "CLAIRTON MUNICIPAL BUILDING", "Prefix": " ", "House": "551", "Fraction": " ", "Street": "RAVENSBURG", "Suffix1": "BLVD", "Suffix2": " ", "City": "CLAIRTON", "Zip": "15025-1239", "Leadman": "21", "MuniName": "CLAIRTON", "MWD": "1230403", "MWD2": 1230403, "NewAddress": "551 RAVENSBURG BLVD" }, "geometry": { "type": "Point", "coordinates": [ -79.894741735399734, 40.296270720164237 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 71, "OBJECTID": 71, "Muni": 124, "LocName": "COLLIER TWP MUNICIPAL BUILDING", "Prefix": " ", "House": "2418", "Fraction": " ", "Street": "HILLTOP", "Suffix1": "RD", "Suffix2": " ", "City": "PRESTO", "Zip": "15142", "Leadman": "49", "MuniName": "COLLIER", "MWD": "1240001", "MWD2": 1240001, "NewAddress": "2418 HILLTOP RD" }, "geometry": { "type": "Point", "coordinates": [ -80.132024905006446, 40.390809882865419 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 72, "OBJECTID": 72, "Muni": 124, "LocName": "RENNERDALE VOL FIRE CO 1ST FL HALL", "Prefix": " ", "House": "30", "Fraction": " ", "Street": "SUBURBAN", "Suffix1": "AVE", "Suffix2": " ", "City": "CARNEGIE", "Zip": "15106-1489", "Leadman": "49", "MuniName": "COLLIER", "MWD": "1240002", "MWD2": 1240002, "NewAddress": "30 SUBURBAN AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.14264749297358, 40.397699327123576 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 73, "OBJECTID": 73, "Muni": 124, "LocName": "CHARTIER VALLEY H S BLD 1 AUD LOB", "Prefix": " ", "House": "50", "Fraction": " ", "Street": "THOMS RUN", "Suffix1": "RD", "Suffix2": " ", "City": "BRIDGEVILLE", "Zip": "15017-2835", "Leadman": "49", "MuniName": "COLLIER", "MWD": "1240004", "MWD2": 1240004, "NewAddress": "50 THOMS RUN RD" }, "geometry": { "type": "Point", "coordinates": [ -80.132895794043264, 40.374332758708491 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 74, "OBJECTID": 74, "Muni": 125, "LocName": "CORAOPOLIS TOWERS", "Prefix": " ", "House": "951", "Fraction": " ", "Street": "1ST", "Suffix1": "AVE", "Suffix2": " ", "City": "CORAOPOLIS", "Zip": "15108-1424", "Leadman": "51", "MuniName": "CORAOPOLIS", "MWD": "1250200", "MWD2": 1250200, "NewAddress": "951 1ST AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.1625328875066, 40.521059876248422 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 75, "OBJECTID": 75, "Muni": 126, "LocName": "COMMUNITY CTR ELEV 2ND FL", "Prefix": " ", "House": "140", "Fraction": " ", "Street": "BRADFORD AVENUE SIDE", "Suffix1": "ENT", "Suffix2": " ", "City": "CRAFTON", "Zip": "15205-3050", "Leadman": "18", "MuniName": "CRAFTON", "MWD": "1260101", "MWD2": 1260101, "NewAddress": "140 BRADFORD AVENUE SIDE ENT" }, "geometry": { "type": "Point", "coordinates": [ -80.066819138276628, 40.434455721769005 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 76, "OBJECTID": 76, "Muni": 126, "LocName": "ST MATTHEWS CHURCH HALL", "Prefix": "E", "House": "45", "Fraction": " ", "Street": "STEUBEN", "Suffix1": "ST", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15205", "Leadman": "18", "MuniName": "CRAFTON", "MWD": "1260201", "MWD2": 1260201, "NewAddress": "45 STEUBEN ST" }, "geometry": { "type": "Point", "coordinates": [ -80.064924492721389, 40.438365845301483 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 77, "OBJECTID": 77, "Muni": 126, "LocName": "CRAFTON TOWERS REC RM", "Prefix": " ", "House": "1215", "Fraction": " ", "Street": "FOSTER", "Suffix1": "AVE", "Suffix2": " ", "City": "CRAFTON", "Zip": "15205-2771", "Leadman": "18", "MuniName": "CRAFTON", "MWD": "1260202", "MWD2": 1260202, "NewAddress": "1215 FOSTER AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.068150090973987, 40.440697268413309 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 78, "OBJECTID": 78, "Muni": 126, "LocName": "AMERICAN LEGION POST 145", "Prefix": " ", "House": "145", "Fraction": " ", "Street": "AMERICAN LEGION", "Suffix1": "PLZ", "Suffix2": " ", "City": "CRAFTON", "Zip": "15205", "Leadman": "18", "MuniName": "CRAFTON", "MWD": "1260301", "MWD2": 1260301, "NewAddress": "300 N LINWOOD AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.068060843767299, 40.435720708243828 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 79, "OBJECTID": 79, "Muni": 126, "LocName": "PRESBYTERIAN CH SUN SCH RM", "Prefix": " ", "House": "90", "Fraction": " ", "Street": "HAWTHORNE", "Suffix1": "AVE", "Suffix2": " ", "City": "CRAFTON", "Zip": "15205", "Leadman": "18", "MuniName": "CRAFTON", "MWD": "1260302", "MWD2": 1260302, "NewAddress": "90 HAWTHORNE AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.073011652175552, 40.429493141363587 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 80, "OBJECTID": 80, "Muni": 127, "LocName": "CRESCENT TWP BUILDING", "Prefix": " ", "House": "225", "Fraction": " ", "Street": "SPRING RUN", "Suffix1": "RD", "Suffix2": " ", "City": "CRESCENT", "Zip": "15046", "Leadman": "48", "MuniName": "CRESCENT", "MWD": "1270100", "MWD2": 1270100, "NewAddress": "225 SPRING RUN RD" }, "geometry": { "type": "Point", "coordinates": [ -80.22189445325111, 40.555385122465296 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 81, "OBJECTID": 81, "Muni": 127, "LocName": "CRESCENT TWP BUIDLING", "Prefix": " ", "House": "225", "Fraction": " ", "Street": "SPRING RUN", "Suffix1": "RD", "Suffix2": " ", "City": "CRESCENT", "Zip": "15046", "Leadman": "48", "MuniName": "CRESCENT", "MWD": "1270200", "MWD2": 1270200, "NewAddress": "225 SPRING RUN RD" }, "geometry": { "type": "Point", "coordinates": [ -80.22189445325111, 40.555385122465296 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 82, "OBJECTID": 82, "Muni": 128, "LocName": "DORMONT UNITED METHODIST CHURCH", "Prefix": " ", "House": "1641", "Fraction": " ", "Street": "POTOMAC", "Suffix1": "AVE", "Suffix2": " ", "City": "DORMONT", "Zip": "15216", "Leadman": "54", "MuniName": "DORMONT", "MWD": "1280001", "MWD2": 1280001, "NewAddress": "1641 POTOMAC AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.037387212253478, 40.398100707235947 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 83, "OBJECTID": 83, "Muni": 128, "LocName": "DORMONT PRESBY CHURCH ROOM 101", "Prefix": " ", "House": "2865", "Fraction": " ", "Street": "ESPY", "Suffix1": "AVE", "Suffix2": " ", "City": "DORMONT", "Zip": "15216", "Leadman": "54", "MuniName": "DORMONT", "MWD": "1280003", "MWD2": 1280003, "NewAddress": "2865 ESPY AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.034944554508783, 40.396412677961706 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 84, "OBJECTID": 84, "Muni": 128, "LocName": "DORMONT UNITED METHODIST CHURCH", "Prefix": " ", "House": "1641", "Fraction": " ", "Street": "POTOMAC", "Suffix1": "AVE", "Suffix2": " ", "City": "DORMONT", "Zip": "15216", "Leadman": "54", "MuniName": "DORMONT", "MWD": "1280004", "MWD2": 1280004, "NewAddress": "1641 POTOMAC AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.037387212253478, 40.398100707235947 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 85, "OBJECTID": 85, "Muni": 128, "LocName": "DORMONT PRESBY CHURCH ROOM 101", "Prefix": " ", "House": "2865", "Fraction": " ", "Street": "ESPY", "Suffix1": "AVE", "Suffix2": " ", "City": "DORMONT", "Zip": "15216", "Leadman": "54", "MuniName": "DORMONT", "MWD": "1280005", "MWD2": 1280005, "NewAddress": "2865 ESPY AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.034944554508783, 40.396412677961706 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 86, "OBJECTID": 86, "Muni": 129, "LocName": "DRAVOSBURG HOUSING ASSN SOCIAL RM", "Prefix": " ", "House": "42", "Fraction": " ", "Street": "SCOTT", "Suffix1": "DR", "Suffix2": " ", "City": "DRAVOSBURG", "Zip": "15034-1154", "Leadman": "22", "MuniName": "DRAVOSBURG", "MWD": "1290003", "MWD2": 1290003, "NewAddress": "42 SCOTT DR" }, "geometry": { "type": "Point", "coordinates": [ -79.893556735278963, 40.346487771594425 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 87, "OBJECTID": 87, "Muni": 130, "LocName": "MASONIC HALL", "Prefix": " ", "House": "1200", "Fraction": " ", "Street": "CLONMEL", "Suffix1": "ST", "Suffix2": " ", "City": "DUQUESNE", "Zip": "15110", "Leadman": "23", "MuniName": "DUQUESNE", "MWD": "1300101", "MWD2": 1300101, "NewAddress": "1200 CLONMEL ST" }, "geometry": { "type": "Point", "coordinates": [ -79.864053004436826, 40.382536968093852 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 88, "OBJECTID": 88, "Muni": 130, "LocName": "MASONIC HALL", "Prefix": " ", "House": "1200", "Fraction": " ", "Street": "CLONMEL", "Suffix1": "ST", "Suffix2": " ", "City": "DUQUESNE", "Zip": "15110", "Leadman": "23", "MuniName": "DUQUESNE", "MWD": "1300102", "MWD2": 1300102, "NewAddress": "1200 CLONMEL ST" }, "geometry": { "type": "Point", "coordinates": [ -79.864187773377068, 40.382813652618687 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 89, "OBJECTID": 89, "Muni": 130, "LocName": "CITY HALL AUX POLICE RM", "Prefix": "S", "House": "12", "Fraction": " ", "Street": "2ND", "Suffix1": "ST", "Suffix2": " ", "City": "DUQUESNE", "Zip": "15110-1148", "Leadman": "23", "MuniName": "DUQUESNE", "MWD": "1300103", "MWD2": 1300103, "NewAddress": "12 2ND ST" }, "geometry": { "type": "Point", "coordinates": [ -79.847004957348986, 40.372514951120543 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 90, "OBJECTID": 90, "Muni": 130, "LocName": "CITY HALL GARAGE", "Prefix": "S", "House": "12", "Fraction": " ", "Street": "2ND", "Suffix1": "ST", "Suffix2": " ", "City": "DUQUESNE", "Zip": "15110-1148", "Leadman": "23", "MuniName": "DUQUESNE", "MWD": "1300201", "MWD2": 1300201, "NewAddress": "12 2ND ST" }, "geometry": { "type": "Point", "coordinates": [ -79.847004957348986, 40.372514951120543 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 91, "OBJECTID": 91, "Muni": 130, "LocName": "ST HEDWIG CHURCH", "Prefix": "S", "House": "105", "Fraction": " ", "Street": "5TH", "Suffix1": "ST", "Suffix2": " ", "City": "DUQUESNE", "Zip": "15110-1813", "Leadman": "23", "MuniName": "DUQUESNE", "MWD": "1300203", "MWD2": 1300203, "NewAddress": "105 5TH ST" }, "geometry": { "type": "Point", "coordinates": [ -79.849054919905157, 40.371097295166557 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 92, "OBJECTID": 92, "Muni": 130, "LocName": "ST. PETER & PAUL BYZAN SOCIAL HALL", "Prefix": " ", "House": "701", "Fraction": " ", "Street": "FOSTER", "Suffix1": "AVE", "Suffix2": " ", "City": "DUQUESNE", "Zip": "15110", "Leadman": "23", "MuniName": "DUQUESNE", "MWD": "1300301", "MWD2": 1300301, "NewAddress": "701 FOSTER AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.849217959093423, 40.364622191516105 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 93, "OBJECTID": 93, "Muni": 130, "LocName": "MACEDONIA BAPTIST CHURCH 1ST FL", "Prefix": " ", "House": "17", "Fraction": " ", "Street": "COCHRAN", "Suffix1": "AVE", "Suffix2": " ", "City": "DUQUESNE", "Zip": "15110-1305", "Leadman": "23", "MuniName": "DUQUESNE", "MWD": "1300302", "MWD2": 1300302, "NewAddress": "17 COCHRAN AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.842851232601745, 40.366570318557891 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 94, "OBJECTID": 94, "Muni": 131, "LocName": "HOLY FAMILY R C CHURCH SOCIAL HALL", "Prefix": " ", "House": "787", "Fraction": " ", "Street": "FREEPORT", "Suffix1": "RD", "Suffix2": " ", "City": "CREIGHTON", "Zip": "15030-1028", "Leadman": "45", "MuniName": "EAST DEER", "MWD": "1310200", "MWD2": 1310200, "NewAddress": "787 FREEPORT RD" }, "geometry": { "type": "Point", "coordinates": [ -79.779304731699938, 40.580929021157694 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 95, "OBJECTID": 95, "Muni": 132, "LocName": "UNITED VOLUNTEER FIRE & RESCUE", "Prefix": " ", "House": "611", "Fraction": " ", "Street": "BROADWAY", "Suffix1": "ST", "Suffix2": " ", "City": "EAST MCKEESPORT", "Zip": "15035", "Leadman": "33", "MuniName": "E MCKEESPORT", "MWD": "1320001", "MWD2": 1320001, "NewAddress": "611 BROADWAY ST" }, "geometry": { "type": "Point", "coordinates": [ -79.804722404450231, 40.387679571009826 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 96, "OBJECTID": 96, "Muni": 132, "LocName": "E. MCKEESPORT SENIOR CITIZEN COM CTR", "Prefix": " ", "House": "539", "Fraction": " ", "Street": "CHICORA", "Suffix1": "ST", "Suffix2": " ", "City": "EAST MCKEESPORT", "Zip": "15035", "Leadman": "33", "MuniName": "E MCKEESPORT", "MWD": "1320002", "MWD2": 1320002, "NewAddress": "539 CHICORA ST" }, "geometry": { "type": "Point", "coordinates": [ -79.809123519534182, 40.382405488669455 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 97, "OBJECTID": 97, "Muni": 132, "LocName": "E. MCKEESPORT SENIOR CITIZEN COM CTR", "Prefix": " ", "House": "539", "Fraction": " ", "Street": "CHICORA", "Suffix1": "ST", "Suffix2": " ", "City": "EAST MCKEESPORT", "Zip": "15035", "Leadman": "33", "MuniName": "E MCKEESPORT", "MWD": "1320003", "MWD2": 1320003, "NewAddress": "539 CHICORA ST" }, "geometry": { "type": "Point", "coordinates": [ -79.809123519534182, 40.382405488669455 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 98, "OBJECTID": 98, "Muni": 134, "LocName": "BORO BLDG", "Prefix": " ", "House": "2", "Fraction": " ", "Street": "RACE", "Suffix1": "ST", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15218", "Leadman": "31", "MuniName": "EDGEWOOD", "MWD": "1340002", "MWD2": 1340002, "NewAddress": "2 RACE ST" }, "geometry": { "type": "Point", "coordinates": [ -79.884297148074609, 40.434289879041025 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 99, "OBJECTID": 99, "Muni": 134, "LocName": "BORO BLDG", "Prefix": " ", "House": "2", "Fraction": " ", "Street": "RACE", "Suffix1": "ST", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15218", "Leadman": "31", "MuniName": "EDGEWOOD", "MWD": "1340003", "MWD2": 1340003, "NewAddress": "2 RACE ST" }, "geometry": { "type": "Point", "coordinates": [ -79.884297148074609, 40.434289879041025 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 100, "OBJECTID": 100, "Muni": 137, "LocName": "BUENA VISTA VOL FIRE CO", "Prefix": " ", "House": "3333", "Fraction": " ", "Street": "STATION", "Suffix1": "ST", "Suffix2": " ", "City": "BUENA VISTA", "Zip": "15018", "Leadman": "46", "MuniName": "ELIZABETH TP", "MWD": "1370300", "MWD2": 1370300, "NewAddress": "3333 STATION ST" }, "geometry": { "type": "Point", "coordinates": [ -79.799491789325828, 40.275838350054087 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 101, "OBJECTID": 101, "Muni": 137, "LocName": "MT VERNON PRESBYTERIAN CHURCH", "Prefix": " ", "House": "2200", "Fraction": " ", "Street": "BUENA VISTA", "Suffix1": "RD", "Suffix2": " ", "City": "MCKEESPORT", "Zip": "15135", "Leadman": "46", "MuniName": "ELIZABETH TP", "MWD": "1370401", "MWD2": 1370401, "NewAddress": "2200 BUENA VISTA RD" }, "geometry": { "type": "Point", "coordinates": [ -79.815236394941493, 40.296678585500331 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 102, "OBJECTID": 102, "Muni": 137, "LocName": "MT VERNON PRESBYTERIAN CHURCH", "Prefix": " ", "House": "2200", "Fraction": " ", "Street": "BUENA VISTA", "Suffix1": "RD", "Suffix2": " ", "City": "MCKEESPORT", "Zip": "15135", "Leadman": "46", "MuniName": "ELIZABETH TP", "MWD": "1370402", "MWD2": 1370402, "NewAddress": "2200 BUENA VISTA RD" }, "geometry": { "type": "Point", "coordinates": [ -79.815236394941493, 40.296678585500331 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 103, "OBJECTID": 103, "Muni": 137, "LocName": "GREENOCK FIRE HALL", "Prefix": " ", "House": "1002", "Fraction": " ", "Street": "BUENA VISTA", "Suffix1": "RD", "Suffix2": " ", "City": "GREENOCK", "Zip": "15047", "Leadman": "46", "MuniName": "ELIZABETH TP", "MWD": "1370502", "MWD2": 1370502, "NewAddress": "1002 BUENA VISTA RD" }, "geometry": { "type": "Point", "coordinates": [ -79.800230237621108, 40.311008695671845 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 104, "OBJECTID": 104, "Muni": 137, "LocName": "BLAINE HILL VOL FIRE CO", "Prefix": " ", "House": "409", "Fraction": " ", "Street": "OXFORD", "Suffix1": "AVE", "Suffix2": " ", "City": "ELIZABETH", "Zip": "15037-1829", "Leadman": "46", "MuniName": "ELIZABETH TP", "MWD": "1370702", "MWD2": 1370702, "NewAddress": "409 OXFORD AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.875069736381406, 40.272991750767034 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 105, "OBJECTID": 105, "Muni": 139, "LocName": "CALVERT MEMORIAL U P CHURCH", "Prefix": " ", "House": "94", "Fraction": " ", "Street": "LOCUST", "Suffix1": "ST", "Suffix2": " ", "City": "ETNA", "Zip": "15223-2117", "Leadman": "15", "MuniName": "ETNA", "MWD": "1390100", "MWD2": 1390100, "NewAddress": "94 LOCUST ST" }, "geometry": { "type": "Point", "coordinates": [ -79.944595864476852, 40.497978099595457 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 106, "OBJECTID": 106, "Muni": 139, "LocName": "ETNA BOROUGH BUILDING", "Prefix": " ", "House": "437", "Fraction": " ", "Street": "BUTLER", "Suffix1": "ST", "Suffix2": " ", "City": "ETNA", "Zip": "15223-2126", "Leadman": "15", "MuniName": "ETNA", "MWD": "1390200", "MWD2": 1390200, "NewAddress": "437 BUTLER ST" }, "geometry": { "type": "Point", "coordinates": [ -79.944109555003337, 40.499677336925529 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 107, "OBJECTID": 107, "Muni": 139, "LocName": "ALL SAINTS ACTIVITY BLDG", "Prefix": " ", "House": "19", "Fraction": " ", "Street": "WILSON", "Suffix1": "ST", "Suffix2": " ", "City": "ETNA", "Zip": "15223-1735", "Leadman": "15", "MuniName": "ETNA", "MWD": "1390300", "MWD2": 1390300, "NewAddress": "19 WILSON ST" }, "geometry": { "type": "Point", "coordinates": [ -79.951620556842926, 40.503177046773914 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 108, "OBJECTID": 108, "Muni": 140, "LocName": "MUNICIPAL BLDG FIRST FLOOR", "Prefix": " ", "House": "3054", "Fraction": " ", "Street": "HOWES RUN", "Suffix1": "RD", "Suffix2": " ", "City": "TARENTUM", "Zip": "15084", "Leadman": "44", "MuniName": "FAWN", "MWD": "1400001", "MWD2": 1400001, "NewAddress": "3054 HOWES RUN RD" }, "geometry": { "type": "Point", "coordinates": [ -79.75407267154705, 40.658064157299989 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 109, "OBJECTID": 109, "Muni": 142, "LocName": "FOREST HILLS SENIOR CITZ BLDG", "Prefix": " ", "House": "444", "Fraction": " ", "Street": "AVENUE D", "Suffix1": " ", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15221-4214", "Leadman": "52", "MuniName": "FOREST HILLS", "MWD": "1420004", "MWD2": 1420004, "NewAddress": "444 AVENUE D" }, "geometry": { "type": "Point", "coordinates": [ -79.842442090682567, 40.410913447691001 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 110, "OBJECTID": 110, "Muni": 142, "LocName": "CHRIST LUTHERAN CHURCH", "Prefix": " ", "House": "400", "Fraction": " ", "Street": "BARCLAY AVENUE FRNT", "Suffix1": "ENT", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15221-4036", "Leadman": "52", "MuniName": "FOREST HILLS", "MWD": "1420005", "MWD2": 1420005, "NewAddress": "400 BARCLAY AVENUE FRNT ENT" }, "geometry": { "type": "Point", "coordinates": [ -79.844753413068844, 40.422545419506626 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 111, "OBJECTID": 111, "Muni": 143, "LocName": "FIRE HALL", "Prefix": " ", "House": " ", "Fraction": " ", "Street": "RT 136 GALLATIN", "Suffix1": "RD", "Suffix2": " ", "City": "ELIZABETH", "Zip": "15063", "Leadman": "46", "MuniName": "FORWARD", "MWD": "1430001", "MWD2": 1430001, "NewAddress": " RT 136 GALLATIN RD" }, "geometry": { "type": "Point", "coordinates": [ -79.884241986100065, 40.198355513248089 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 112, "OBJECTID": 112, "Muni": 143, "LocName": "FORWARD TWP V.F.D.", "Prefix": " ", "House": "9019", "Fraction": " ", "Street": "ROBERTS HOLLOW", "Suffix1": "RD", "Suffix2": " ", "City": "ELIZABETH", "Zip": "15063", "Leadman": "46", "MuniName": "FORWARD", "MWD": "1430002", "MWD2": 1430002, "NewAddress": "9019 ROBERTS HOLLOW RD" }, "geometry": { "type": "Point", "coordinates": [ -79.879951107551051, 40.229534394529416 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 113, "OBJECTID": 113, "Muni": 143, "LocName": "FORWARD TWP MUNICIPAL BLDG", "Prefix": " ", "House": "500", "Fraction": " ", "Street": "LIGGETT", "Suffix1": "AVE", "Suffix2": " ", "City": "MONONGAHELA", "Zip": "15063-4004", "Leadman": "46", "MuniName": "FORWARD", "MWD": "1430003", "MWD2": 1430003, "NewAddress": "500 LIGGETT AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.884145895615802, 40.198443807580468 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 114, "OBJECTID": 114, "Muni": 143, "LocName": "FORWARD TWP V.F.D.", "Prefix": " ", "House": "9019", "Fraction": " ", "Street": "ROBERTS HOLLOW", "Suffix1": "RD", "Suffix2": " ", "City": "ELIZABETH", "Zip": "15063", "Leadman": "46", "MuniName": "FORWARD", "MWD": "1430004", "MWD2": 1430004, "NewAddress": "9019 ROBERTS HOLLOW RD" }, "geometry": { "type": "Point", "coordinates": [ -79.879951107551051, 40.229534394529416 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 115, "OBJECTID": 115, "Muni": 144, "LocName": "COOPER-SIEGEL COMMUNITY LIBRARY", "Prefix": " ", "House": "403", "Fraction": " ", "Street": "FOX CHAPEL", "Suffix1": "RD", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15238-2225", "Leadman": "38", "MuniName": "FOX CHAPEL", "MWD": "1440001", "MWD2": 1440001, "NewAddress": "403 FOX CHAPEL RD" }, "geometry": { "type": "Point", "coordinates": [ -79.879824529581299, 40.51534505561451 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 116, "OBJECTID": 116, "Muni": 145, "LocName": "ST. JOHN NEUMANN PARISH HALL", "Prefix": " ", "House": "2230", "Fraction": " ", "Street": "ROCHESTER", "Suffix1": "RD", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15237-1691", "Leadman": "42", "MuniName": "FRANKLIN PK", "MWD": "1450202", "MWD2": 1450202, "NewAddress": "2230 ROCHESTER RD" }, "geometry": { "type": "Point", "coordinates": [ -80.070446870152722, 40.571195698115261 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 117, "OBJECTID": 117, "Muni": 145, "LocName": "TRINITY EVAN LUTHERAN CHURCH", "Prefix": " ", "House": "2500", "Fraction": " ", "Street": "BRANDT SCHOOL", "Suffix1": "RD", "Suffix2": " ", "City": "WEXFORD", "Zip": "15090-7628", "Leadman": "42", "MuniName": "FRANKLIN PK", "MWD": "1450301", "MWD2": 1450301, "NewAddress": "2500 BRANDT SCHOOL RD" }, "geometry": { "type": "Point", "coordinates": [ -80.080446463005217, 40.6011738337168 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 118, "OBJECTID": 118, "Muni": 145, "LocName": "NEW BORO BUILDING 1ST FL", "Prefix": "W", "House": "2344", "Fraction": " ", "Street": "INGOMAR", "Suffix1": "RD", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15237-1691", "Leadman": "42", "MuniName": "FRANKLIN PK", "MWD": "1450302", "MWD2": 1450302, "NewAddress": "2344 INGOMAR RD" }, "geometry": { "type": "Point", "coordinates": [ -80.078348399998958, 40.581540793232264 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 119, "OBJECTID": 119, "Muni": 149, "LocName": "GREENTREE MUNI BLDG COUNCIL CHA", "Prefix": "W", "House": "10", "Fraction": " ", "Street": "MANILLA", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15220-3131", "Leadman": "13", "MuniName": "GREENTREE", "MWD": "1490002", "MWD2": 1490002, "NewAddress": "10 MANILLA AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.046985428122909, 40.418758088826181 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 120, "OBJECTID": 120, "Muni": 149, "LocName": "GREENTREE MUNI BLDG COUNCIL CHA", "Prefix": "W", "House": "10", "Fraction": " ", "Street": "MANILLA", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15220-3131", "Leadman": "13", "MuniName": "GREENTREE", "MWD": "1490003", "MWD2": 1490003, "NewAddress": "10 MANILLA AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.04713052792539, 40.419025456041716 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 121, "OBJECTID": 121, "Muni": 149, "LocName": "ST. MARGARET CHURCH-CAFETERIA", "Prefix": " ", "House": "310", "Fraction": " ", "Street": "MANSFIELD", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15220-2902", "Leadman": "13", "MuniName": "GREENTREE", "MWD": "1490004", "MWD2": 1490004, "NewAddress": "310 MANSFIELD AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.047245362593088, 40.422372406932524 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 122, "OBJECTID": 122, "Muni": 150, "LocName": "HAMPTON PRESBY CHURCH GYM", "Prefix": "E", "House": "2942", "Fraction": " ", "Street": "HARDIES", "Suffix1": "RD", "Suffix2": " ", "City": "GIBSONIA", "Zip": "15044", "Leadman": "41", "MuniName": "HAMPTON", "MWD": "1500002", "MWD2": 1500002, "NewAddress": "2942 HARDIES RD" }, "geometry": { "type": "Point", "coordinates": [ -79.94428138883066, 40.612663578377855 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 123, "OBJECTID": 123, "Muni": 150, "LocName": "ST CATHERINE REAR ENT CHURCH HALL", "Prefix": " ", "House": "2554", "Fraction": " ", "Street": "WILDWOOD", "Suffix1": "RD", "Suffix2": " ", "City": "ALLISON PARK", "Zip": "15101-2224", "Leadman": "41", "MuniName": "HAMPTON", "MWD": "1500003", "MWD2": 1500003, "NewAddress": "2554 WILDWOOD RD" }, "geometry": { "type": "Point", "coordinates": [ -79.967884210428096, 40.591765895165445 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 124, "OBJECTID": 124, "Muni": 150, "LocName": "NORTH HAMPTON VOL FIRE CO", "Prefix": "N", "House": "5149", "Fraction": " ", "Street": "PIONEER", "Suffix1": "RD", "Suffix2": " ", "City": "GIBSONIA", "Zip": "15044-9641", "Leadman": "41", "MuniName": "HAMPTON", "MWD": "1500009", "MWD2": 1500009, "NewAddress": "5149 PIONEER RD" }, "geometry": { "type": "Point", "coordinates": [ -79.949497099665862, 40.612565389805205 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 125, "OBJECTID": 125, "Muni": 150, "LocName": "ST CATHERINE REAR ENT CHURCH HALL", "Prefix": " ", "House": "2554", "Fraction": " ", "Street": "WILDWOOD", "Suffix1": "RD", "Suffix2": " ", "City": "ALLISON PARK", "Zip": "15101-2224", "Leadman": "41", "MuniName": "HAMPTON", "MWD": "1500010", "MWD2": 1500010, "NewAddress": "2554 WILDWOOD RD" }, "geometry": { "type": "Point", "coordinates": [ -79.967884210428096, 40.591765895165445 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 126, "OBJECTID": 126, "Muni": 150, "LocName": "HAMPTON PRESBY CHURCH GYM", "Prefix": "E", "House": "2942", "Fraction": " ", "Street": "HARDIES", "Suffix1": "RD", "Suffix2": " ", "City": "GIBSONIA", "Zip": "15044", "Leadman": "41", "MuniName": "HAMPTON", "MWD": "1500011", "MWD2": 1500011, "NewAddress": "2942 HARDIES RD" }, "geometry": { "type": "Point", "coordinates": [ -79.944064696476076, 40.61257641856475 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 127, "OBJECTID": 127, "Muni": 151, "LocName": "HARMAR TWP MUNI BLDG 1ST FLOOR", "Prefix": " ", "House": "701", "Fraction": " ", "Street": "FREEPORT", "Suffix1": "RD", "Suffix2": " ", "City": "CHESWICK", "Zip": "15024-1205", "Leadman": "45", "MuniName": "HARMAR", "MWD": "1510001", "MWD2": 1510001, "NewAddress": "701 FREEPORT RD" }, "geometry": { "type": "Point", "coordinates": [ -79.820132148877036, 40.542457552923345 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 128, "OBJECTID": 128, "Muni": 151, "LocName": "HARMAR TWP MUNI BLDG 1ST FLOOR", "Prefix": " ", "House": "701", "Fraction": " ", "Street": "FREEPORT", "Suffix1": "RD", "Suffix2": " ", "City": "CHESWICK", "Zip": "15024-1205", "Leadman": "45", "MuniName": "HARMAR", "MWD": "1510002", "MWD2": 1510002, "NewAddress": "701 FREEPORT RD" }, "geometry": { "type": "Point", "coordinates": [ -79.820132148877036, 40.542457552923345 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 129, "OBJECTID": 129, "Muni": 152, "LocName": "HIGHLAND COMMUNITY CENTER ROOM 1ST FL", "Prefix": " ", "House": " ", "Fraction": " ", "Street": "CALIFORNIA @ PACIFIC", "Suffix1": "AVE", "Suffix2": " ", "City": "NATRONA HEIGHTS", "Zip": "15065", "Leadman": "44", "MuniName": "HARRISON", "MWD": "1520101", "MWD2": 1520101, "NewAddress": " CALIFORNIA @ PACIFIC AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.729318127117864, 40.617168148687902 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 130, "OBJECTID": 130, "Muni": 152, "LocName": "WWJD ASSOCIATES", "Prefix": " ", "House": "1329", "Fraction": " ", "Street": "FREEPORT", "Suffix1": "RD", "Suffix2": " ", "City": "NATRONA HEIGHTS", "Zip": "15065-1134", "Leadman": "44", "MuniName": "HARRISON", "MWD": "1520102", "MWD2": 1520102, "NewAddress": "1329 FREEPORT RD" }, "geometry": { "type": "Point", "coordinates": [ -79.733999945703729, 40.617786027501886 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 131, "OBJECTID": 131, "Muni": 152, "LocName": "HILLTOP HOSE COMPANY #3", "Prefix": " ", "House": "1501", "Fraction": " ", "Street": "CAMBRIDGE", "Suffix1": "ST", "Suffix2": " ", "City": "NATRONA HEIGHTS", "Zip": "15065", "Leadman": "44", "MuniName": "HARRISON", "MWD": "1520103", "MWD2": 1520103, "NewAddress": "1501 CAMBRIDGE ST" }, "geometry": { "type": "Point", "coordinates": [ -79.733150717635667, 40.621552738157945 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 132, "OBJECTID": 132, "Muni": 152, "LocName": "HIGHLAND COMMUNITY CENTER ROOM 1ST FL", "Prefix": " ", "House": "1350", "Fraction": " ", "Street": "BROADVIEW", "Suffix1": "BLVD", "Suffix2": " ", "City": "NATRONA HEIGHTS", "Zip": "15065", "Leadman": "44", "MuniName": "HARRISON", "MWD": "1520201", "MWD2": 1520201, "NewAddress": "1350 BROADVIEW BLVD" }, "geometry": { "type": "Point", "coordinates": [ -79.729318127117864, 40.617168148687902 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 133, "OBJECTID": 133, "Muni": 152, "LocName": "HARRISON HILLS V.F.C. #4", "Prefix": " ", "House": "5300", "Fraction": " ", "Street": "FREEPORT", "Suffix1": "RD", "Suffix2": " ", "City": "NATRONA HEIGHTS", "Zip": "15065-2815", "Leadman": "44", "MuniName": "HARRISON", "MWD": "1520301", "MWD2": 1520301, "NewAddress": "5300 FREEPORT RD" }, "geometry": { "type": "Point", "coordinates": [ -79.700326689374876, 40.655459513428148 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 134, "OBJECTID": 134, "Muni": 152, "LocName": "HARRISON HILLS V.F.C. #4", "Prefix": " ", "House": "5300", "Fraction": " ", "Street": "FREEPORT", "Suffix1": "RD", "Suffix2": " ", "City": "NATRONA HEIGHTS", "Zip": "15065-2815", "Leadman": "44", "MuniName": "HARRISON", "MWD": "1520402", "MWD2": 1520402, "NewAddress": "5300 FREEPORT RD" }, "geometry": { "type": "Point", "coordinates": [ -79.700326689374876, 40.655459513428148 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 135, "OBJECTID": 135, "Muni": 152, "LocName": "HILLTOP HOSE COMPANY #3", "Prefix": " ", "House": "1501", "Fraction": " ", "Street": "CAMBRIDGE", "Suffix1": "ST", "Suffix2": " ", "City": "NATRONA HEIGHTS", "Zip": "15065", "Leadman": "44", "MuniName": "HARRISON", "MWD": "1520502", "MWD2": 1520502, "NewAddress": "1501 CAMBRIDGE ST" }, "geometry": { "type": "Point", "coordinates": [ -79.733150717635667, 40.621552738157945 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 136, "OBJECTID": 136, "Muni": 153, "LocName": "TWO MEN AND A TRUCK", "Prefix": " ", "House": "12", "Fraction": " ", "Street": "SOUTH", "Suffix1": "AVE", "Suffix2": " ", "City": "SEWICKLEY", "Zip": "15143-2101", "Leadman": "36", "MuniName": "HAYSVILLE", "MWD": "1530001", "MWD2": 1530001, "NewAddress": "12 SOUTH AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.158645551377901, 40.525911248450392 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 137, "OBJECTID": 137, "Muni": 158, "LocName": "GILL HALL VFD", "Prefix": " ", "House": "1255", "Fraction": " ", "Street": "GILL HALL", "Suffix1": "RD", "Suffix2": " ", "City": "JEFFERSON HILLS", "Zip": "15025", "Leadman": "40", "MuniName": "JEFFERSON HL", "MWD": "1580008", "MWD2": 1580008, "NewAddress": "1255 GILL HALL RD" }, "geometry": { "type": "Point", "coordinates": [ -79.958915848237893, 40.289884871150221 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 138, "OBJECTID": 138, "Muni": 159, "LocName": "KENNEDY TWP MUNICIPAL BLDG", "Prefix": " ", "House": "340", "Fraction": " ", "Street": "FOREST GROVE", "Suffix1": "RD", "Suffix2": " ", "City": "CORAOPOLIS", "Zip": "15108", "Leadman": "50", "MuniName": "KENNEDY", "MWD": "1590001", "MWD2": 1590001, "NewAddress": "340 FOREST GROVE RD" }, "geometry": { "type": "Point", "coordinates": [ -80.104870525127041, 40.47984802347937 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 139, "OBJECTID": 139, "Muni": 159, "LocName": "KENNEDY TWP MUNICIPAL BUILDING", "Prefix": " ", "House": "340", "Fraction": " ", "Street": "FOREST GROVE", "Suffix1": "RD", "Suffix2": " ", "City": "CORAOPOLIS", "Zip": "15108", "Leadman": "50", "MuniName": "KENNEDY", "MWD": "1590006", "MWD2": 1590006, "NewAddress": "340 FOREST GROVE RD" }, "geometry": { "type": "Point", "coordinates": [ -80.104870525127041, 40.47984802347937 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 140, "OBJECTID": 140, "Muni": 161, "LocName": "HEALTH SOUTH OF SEWICKLEY", "Prefix": " ", "House": "303", "Fraction": " ", "Street": "CAMP MEETING", "Suffix1": "RD", "Suffix2": " ", "City": "SEWICKLEY", "Zip": "15143", "Leadman": "37", "MuniName": "LEET", "MWD": "1610002", "MWD2": 1610002, "NewAddress": "303 CAMP MEETING RD" }, "geometry": { "type": "Point", "coordinates": [ -80.204117757338508, 40.576412642575441 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 141, "OBJECTID": 141, "Muni": 163, "LocName": "LIBERTY VFD", "Prefix": " ", "House": "900", "Fraction": " ", "Street": "HASLAGE", "Suffix1": "ST", "Suffix2": " ", "City": "MCKEESPORT", "Zip": "15133", "Leadman": "22", "MuniName": "LIBERTY", "MWD": "1630002", "MWD2": 1630002, "NewAddress": "900 HASLAGE ST" }, "geometry": { "type": "Point", "coordinates": [ -79.859420477077833, 40.32478164034405 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 142, "OBJECTID": 142, "Muni": 164, "LocName": "LINCOLN BORO VOL MEMORIAL HALL", "Prefix": " ", "House": "4312", "Fraction": " ", "Street": "LIBERTY", "Suffix1": "WAY", "Suffix2": " ", "City": "ELIZABETH", "Zip": "15037-3033", "Leadman": "22", "MuniName": "LINCOLN", "MWD": "1640001", "MWD2": 1640001, "NewAddress": "4312 LIBERTY WAY" }, "geometry": { "type": "Point", "coordinates": [ -79.870881950057765, 40.283012476553296 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 143, "OBJECTID": 143, "Muni": 165, "LocName": "REGIONAL LEARNING ALLIANCE", "Prefix": " ", "House": "1170", "Fraction": " ", "Street": "FREEPORT", "Suffix1": "RD", "Suffix2": " ", "City": "MARS", "Zip": "16046-9452", "Leadman": "42", "MuniName": "MARSHALL", "MWD": "1650001", "MWD2": 1650001, "NewAddress": "1170 FREEPORT RD" }, "geometry": { "type": "Point", "coordinates": [ -80.087548303440443, 40.673143640362248 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 144, "OBJECTID": 144, "Muni": 165, "LocName": "REGIONAL LEARNING ALLIANCE", "Prefix": " ", "House": "1170", "Fraction": " ", "Street": "FREEPORT", "Suffix1": "RD", "Suffix2": " ", "City": "MARS", "Zip": "16046-9452", "Leadman": "42", "MuniName": "MARSHALL", "MWD": "1650005", "MWD2": 1650005, "NewAddress": "1170 FREEPORT RD" }, "geometry": { "type": "Point", "coordinates": [ -80.087535107830078, 40.673355129204083 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 145, "OBJECTID": 145, "Muni": 166, "LocName": "TOWN HALL", "Prefix": " ", "House": "9955", "Fraction": " ", "Street": "GRUBBS", "Suffix1": "RD", "Suffix2": " ", "City": "WEXFORD", "Zip": "15090-9644", "Leadman": "57", "MuniName": "MCCANDLESS", "MWD": "1660101", "MWD2": 1660101, "NewAddress": "9955 GRUBBS RD" }, "geometry": { "type": "Point", "coordinates": [ -80.019555910718765, 40.590460427460805 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 146, "OBJECTID": 146, "Muni": 166, "LocName": "NO PARK EVANGELICAL U P CH-1ST FLOOR", "Prefix": " ", "House": "600", "Fraction": " ", "Street": "INGOMAR", "Suffix1": "RD", "Suffix2": " ", "City": "WEXFORD", "Zip": "15090-9516", "Leadman": "57", "MuniName": "MCCANDLESS", "MWD": "1660102", "MWD2": 1660102, "NewAddress": "600 INGOMAR RD" }, "geometry": { "type": "Point", "coordinates": [ -80.022964267476397, 40.58492972778739 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 147, "OBJECTID": 147, "Muni": 166, "LocName": "ST ALEXIS SCHOOL HALL", "Prefix": " ", "House": "10090", "Fraction": " ", "Street": "OLD PERRY", "Suffix1": "HWY", "Suffix2": " ", "City": "WEXFORD", "Zip": "15090-9318", "Leadman": "57", "MuniName": "MCCANDLESS", "MWD": "1660103", "MWD2": 1660103, "NewAddress": "10090 OLD PERRY HWY" }, "geometry": { "type": "Point", "coordinates": [ -80.042828183210872, 40.595767558408895 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 148, "OBJECTID": 148, "Muni": 166, "LocName": "ST ALEXIS SCH HALL", "Prefix": " ", "House": "10090", "Fraction": " ", "Street": "OLD PERRY", "Suffix1": "HWY", "Suffix2": " ", "City": "WEXFORD", "Zip": "15090-9318", "Leadman": "57", "MuniName": "MCCANDLESS", "MWD": "1660203", "MWD2": 1660203, "NewAddress": "10090 OLD PERRY HWY" }, "geometry": { "type": "Point", "coordinates": [ -80.042828183210872, 40.595767558408895 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 149, "OBJECTID": 149, "Muni": 166, "LocName": "NORTHMONT UP CHURCH LOWER ENTRANCE", "Prefix": " ", "House": "8169", "Fraction": " ", "Street": "PERRY", "Suffix1": "HWY", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15237-5213", "Leadman": "57", "MuniName": "MCCANDLESS", "MWD": "1660301", "MWD2": 1660301, "NewAddress": "8169 PERRY HWY" }, "geometry": { "type": "Point", "coordinates": [ -80.039665846158101, 40.556482794388693 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 150, "OBJECTID": 150, "Muni": 166, "LocName": "INGOMAR ELEMENTARY SCHOOL", "Prefix": "W", "House": "602", "Fraction": " ", "Street": "INGOMAR", "Suffix1": "RD", "Suffix2": " ", "City": "WEXFORD", "Zip": "15090-9318", "Leadman": "57", "MuniName": "MCCANDLESS", "MWD": "1660302", "MWD2": 1660302, "NewAddress": "602 INGOMAR RD" }, "geometry": { "type": "Point", "coordinates": [ -80.052843538090329, 40.582355670548999 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 151, "OBJECTID": 151, "Muni": 166, "LocName": "NORTHMONT U P CH FELLOWSHIP HALL", "Prefix": " ", "House": "8169", "Fraction": " ", "Street": "PERRY", "Suffix1": "HWY", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15237-5213", "Leadman": "57", "MuniName": "MCCANDLESS", "MWD": "1660401", "MWD2": 1660401, "NewAddress": "8169 PERRY HWY" }, "geometry": { "type": "Point", "coordinates": [ -80.039665846158101, 40.556482794388693 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 152, "OBJECTID": 152, "Muni": 166, "LocName": "BETHANY BAPTIST CHURCH", "Prefix": " ", "House": "8713", "Fraction": " ", "Street": "HARMONY", "Suffix1": "PKWY", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15237-4646", "Leadman": "57", "MuniName": "MCCANDLESS", "MWD": "1660402", "MWD2": 1660402, "NewAddress": "8713 HARMONY PKWY" }, "geometry": { "type": "Point", "coordinates": [ -80.041558728511859, 40.564563481390522 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 153, "OBJECTID": 153, "Muni": 166, "LocName": "PGH CHRISTIAN CHINESE CH", "Prefix": " ", "House": "8711", "Fraction": " ", "Street": "OLD PERRY", "Suffix1": "HWY", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15237-4646", "Leadman": "57", "MuniName": "MCCANDLESS", "MWD": "1660403", "MWD2": 1660403, "NewAddress": "8711 OLD PERRY HWY" }, "geometry": { "type": "Point", "coordinates": [ -80.041368605318482, 40.564772826518833 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 154, "OBJECTID": 154, "Muni": 166, "LocName": "NORTH PARK EVAN. U.P. CHURCH", "Prefix": " ", "House": "600", "Fraction": " ", "Street": "INGOMAR", "Suffix1": "RD", "Suffix2": " ", "City": "WEXFORD", "Zip": "15090-9516", "Leadman": "57", "MuniName": "MCCANDLESS", "MWD": "1660501", "MWD2": 1660501, "NewAddress": "600 INGOMAR RD" }, "geometry": { "type": "Point", "coordinates": [ -80.022964267476397, 40.58492972778739 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 155, "OBJECTID": 155, "Muni": 166, "LocName": "ST JOHNS LUTHERAN CH UPPER LVL", "Prefix": " ", "House": "311", "Fraction": " ", "Street": "CUMBERLAND", "Suffix1": "RD", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15237-5409", "Leadman": "57", "MuniName": "MCCANDLESS", "MWD": "1660502", "MWD2": 1660502, "NewAddress": "311 CUMBERLAND RD" }, "geometry": { "type": "Point", "coordinates": [ -80.033903140029864, 40.572641050047721 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 156, "OBJECTID": 156, "Muni": 166, "LocName": "MEMORIAL PARK CHURCH", "Prefix": " ", "House": "8800", "Fraction": " ", "Street": "PEEBLES ROAD ALLISON", "Suffix1": "PARK", "Suffix2": " ", "City": "ALLISON PARK", "Zip": "15101-2716", "Leadman": "57", "MuniName": "MCCANDLESS", "MWD": "1660602", "MWD2": 1660602, "NewAddress": "8800 PEEBLES ROAD ALLISON PARK" }, "geometry": { "type": "Point", "coordinates": [ -80.004823828519676, 40.567667276820117 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 157, "OBJECTID": 157, "Muni": 166, "LocName": "HOSACK ELEM FRT ENT MAIN LOBBY", "Prefix": " ", "House": "9275", "Fraction": " ", "Street": "PEEBLES ROAD ALLISON", "Suffix1": "PARK", "Suffix2": " ", "City": "ALLISON PARK", "Zip": "15101-1926", "Leadman": "57", "MuniName": "MCCANDLESS", "MWD": "1660603", "MWD2": 1660603, "NewAddress": "9275 PEEBLES ROAD ALLISON PARK" }, "geometry": { "type": "Point", "coordinates": [ -80.00255598314773, 40.574074786302752 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 158, "OBJECTID": 158, "Muni": 166, "LocName": "MEMORIAL PARK CHURCH", "Prefix": " ", "House": "8800", "Fraction": " ", "Street": "PEEBLES ROAD ALLISON", "Suffix1": "PARK", "Suffix2": " ", "City": "ALLISON PARK", "Zip": "15101-2716", "Leadman": "57", "MuniName": "MCCANDLESS", "MWD": "1660701", "MWD2": 1660701, "NewAddress": "8800 PEEBLES ROAD ALLISON PARK" }, "geometry": { "type": "Point", "coordinates": [ -80.004823828519676, 40.567667276820117 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 159, "OBJECTID": 159, "Muni": 166, "LocName": "MEMORIAL PARK CHURCH", "Prefix": " ", "House": "8800", "Fraction": " ", "Street": "PEEBLES ROAD ALLISON", "Suffix1": "PARK", "Suffix2": " ", "City": "ALLISON PARK", "Zip": "15101-2716", "Leadman": "57", "MuniName": "MCCANDLESS", "MWD": "1660702", "MWD2": 1660702, "NewAddress": "8800 PEEBLES ROAD ALLISON PARK" }, "geometry": { "type": "Point", "coordinates": [ -80.004823828519676, 40.567667276820117 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 160, "OBJECTID": 160, "Muni": 166, "LocName": "NORTH PARK BAPTIST CHURCH", "Prefix": " ", "House": "1600", "Fraction": " ", "Street": "SAMPLE", "Suffix1": "RD", "Suffix2": " ", "City": "ALLISON PARK", "Zip": "15101-3250", "Leadman": "57", "MuniName": "MCCANDLESS", "MWD": "1660703", "MWD2": 1660703, "NewAddress": "1600 SAMPLE RD" }, "geometry": { "type": "Point", "coordinates": [ -80.002092545684221, 40.569705897816107 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 161, "OBJECTID": 161, "Muni": 168, "LocName": "ST MARTIN DE PORRES", "Prefix": " ", "House": "803", "Fraction": " ", "Street": "MARKET", "Suffix1": "ST", "Suffix2": " ", "City": "MCKEESPORT", "Zip": "15132-2730", "Leadman": "25", "MuniName": "MCKEESPORT", "MWD": "1680100", "MWD2": 1680100, "NewAddress": "803 MARKET ST" }, "geometry": { "type": "Point", "coordinates": [ -79.866382753723457, 40.348518919134875 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 162, "OBJECTID": 162, "Muni": 168, "LocName": "ST MARTIN DE PORRES", "Prefix": " ", "House": "803", "Fraction": " ", "Street": "MARKET", "Suffix1": "ST", "Suffix2": " ", "City": "MCKEESPORT", "Zip": "15132-2730", "Leadman": "25", "MuniName": "MCKEESPORT", "MWD": "1680200", "MWD2": 1680200, "NewAddress": "803 MARKET ST" }, "geometry": { "type": "Point", "coordinates": [ -79.866499009101432, 40.348576839221423 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 163, "OBJECTID": 163, "Muni": 168, "LocName": "MCKEESPORT TOWERS COM ROOM", "Prefix": " ", "House": "601", "Fraction": " ", "Street": "6TH", "Suffix1": "ST", "Suffix2": " ", "City": "MCKEESPORT", "Zip": "15132-2308", "Leadman": "23", "MuniName": "MCKEESPORT", "MWD": "1680500", "MWD2": 1680500, "NewAddress": "601 6TH ST" }, "geometry": { "type": "Point", "coordinates": [ -79.858913241203595, 40.350578363834607 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 164, "OBJECTID": 164, "Muni": 168, "LocName": "CONCORDIA LUTHERAN CHURCH", "Prefix": " ", "House": "908", "Fraction": " ", "Street": "EVANS", "Suffix1": "AVE", "Suffix2": " ", "City": "MCKEESPORT", "Zip": "15132-2119", "Leadman": "23", "MuniName": "MCKEESPORT", "MWD": "1680602", "MWD2": 1680602, "NewAddress": "908 EVANS AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.849667029498733, 40.347516663327539 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 165, "OBJECTID": 165, "Muni": 168, "LocName": "FIRST UNITED METHODIST CHURCH", "Prefix": " ", "House": "1406", "Fraction": " ", "Street": "CORNELL", "Suffix1": "ST", "Suffix2": " ", "City": "MCKEESPORT", "Zip": "15132-4613", "Leadman": "25", "MuniName": "MCKEESPORT", "MWD": "1680701", "MWD2": 1680701, "NewAddress": "1406 CORNELL ST" }, "geometry": { "type": "Point", "coordinates": [ -79.858070109041947, 40.346528654403521 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 166, "OBJECTID": 166, "Muni": 168, "LocName": "#3 ENGINE HOUSE", "Prefix": " ", "House": "1604", "Fraction": " ", "Street": "EVANS", "Suffix1": "AVE", "Suffix2": " ", "City": "MCKEESPORT", "Zip": "15132-4948", "Leadman": "25", "MuniName": "MCKEESPORT", "MWD": "1680703", "MWD2": 1680703, "NewAddress": "1604 EVANS AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.849622133993989, 40.341829358630818 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 167, "OBJECTID": 167, "Muni": 168, "LocName": "ST PIUS SOCIAL HALL", "Prefix": " ", "House": "2911", "Fraction": " ", "Street": "VERSAILLES", "Suffix1": "AVE", "Suffix2": " ", "City": "MCKEESPORT", "Zip": "15132-1919", "Leadman": "25", "MuniName": "MCKEESPORT", "MWD": "1680704", "MWD2": 1680704, "NewAddress": "2911 VERSAILLES AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.842585555156461, 40.345753426558502 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 168, "OBJECTID": 168, "Muni": 168, "LocName": "ST PIUS SOCIAL HALL", "Prefix": " ", "House": "2911", "Fraction": " ", "Street": "VERSAILLES", "Suffix1": "AVE", "Suffix2": " ", "City": "MCKEESPORT", "Zip": "15132-1919", "Leadman": "25", "MuniName": "MCKEESPORT", "MWD": "1680705", "MWD2": 1680705, "NewAddress": "2911 VERSAILLES AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.842611389640979, 40.345672745155106 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 169, "OBJECTID": 169, "Muni": 168, "LocName": "#3 ENGINE HOUSE", "Prefix": " ", "House": "1604", "Fraction": " ", "Street": "EVANS", "Suffix1": "AVE", "Suffix2": " ", "City": "MCKEESPORT", "Zip": "15132-4948", "Leadman": "25", "MuniName": "MCKEESPORT", "MWD": "1680707", "MWD2": 1680707, "NewAddress": "1604 EVANS AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.849622133993989, 40.341829358630818 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 170, "OBJECTID": 170, "Muni": 168, "LocName": "ST PIUS SOCIAL HALL", "Prefix": " ", "House": "2911", "Fraction": " ", "Street": "VERSAILLES", "Suffix1": "AVE", "Suffix2": " ", "City": "MCKEESPORT", "Zip": "15132-1919", "Leadman": "25", "MuniName": "MCKEESPORT", "MWD": "1680803", "MWD2": 1680803, "NewAddress": "2911 VERSAILLES AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.842594414037237, 40.345538714060645 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 171, "OBJECTID": 171, "Muni": 168, "LocName": "CHURCH OF CHRIST", "Prefix": " ", "House": "947", "Fraction": " ", "Street": "FRANKLIN", "Suffix1": "ST", "Suffix2": " ", "City": "MCKEESPORT", "Zip": "15132-1417", "Leadman": "23", "MuniName": "MCKEESPORT", "MWD": "1680804", "MWD2": 1680804, "NewAddress": "947 FRANKLIN ST" }, "geometry": { "type": "Point", "coordinates": [ -79.826850741981204, 40.354448258662458 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 172, "OBJECTID": 172, "Muni": 168, "LocName": "CHURCH OF CHRIST", "Prefix": " ", "House": "947", "Fraction": " ", "Street": "FRANKLIN", "Suffix1": "ST", "Suffix2": " ", "City": "MCKEESPORT", "Zip": "15132-1417", "Leadman": "23", "MuniName": "MCKEESPORT", "MWD": "1680806", "MWD2": 1680806, "NewAddress": "947 FRANKLIN ST" }, "geometry": { "type": "Point", "coordinates": [ -79.826738380766713, 40.354500098386588 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 173, "OBJECTID": 173, "Muni": 168, "LocName": "MAPLEWOOD KIDS INC GYM", "Prefix": " ", "House": "3915", "Fraction": " ", "Street": "MAPLEWOOD", "Suffix1": "ST", "Suffix2": " ", "City": "MCKEESPORT", "Zip": "15132-7321", "Leadman": "25", "MuniName": "MCKEESPORT", "MWD": "1681201", "MWD2": 1681201, "NewAddress": "3915 MAPLEWOOD ST" }, "geometry": { "type": "Point", "coordinates": [ -79.834857068353003, 40.325507338577374 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 174, "OBJECTID": 174, "Muni": 169, "LocName": "HOLY GHOST SCHOOL", "Prefix": " ", "House": "224", "Fraction": " ", "Street": "HELEN", "Suffix1": "ST", "Suffix2": " ", "City": "MC KEES ROCKS", "Zip": "15136-2714", "Leadman": "50", "MuniName": "MCKEES ROCKS", "MWD": "1690201", "MWD2": 1690201, "NewAddress": "224 HELEN ST" }, "geometry": { "type": "Point", "coordinates": [ -80.056487377863235, 40.47359382261908 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 175, "OBJECTID": 175, "Muni": 169, "LocName": "HOLY GHOST SCHOOL", "Prefix": " ", "House": "225", "Fraction": " ", "Street": "OLIVIA", "Suffix1": "ST", "Suffix2": " ", "City": "MC KEES ROCKS", "Zip": "15136-3246", "Leadman": "50", "MuniName": "MCKEES ROCKS", "MWD": "1690202", "MWD2": 1690202, "NewAddress": "225 OLIVIA ST" }, "geometry": { "type": "Point", "coordinates": [ -80.056527581890037, 40.473526694348394 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 176, "OBJECTID": 176, "Muni": 169, "LocName": "VFW VESLEY POST 418", "Prefix": " ", "House": "1242", "Fraction": " ", "Street": "CHARTIERS", "Suffix1": "AVE", "Suffix2": " ", "City": "MC KEES ROCKS", "Zip": "15136-3641", "Leadman": "50", "MuniName": "MCKEES ROCKS", "MWD": "1690303", "MWD2": 1690303, "NewAddress": "1242 CHARTIERS AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.072660079723462, 40.465201161172857 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 177, "OBJECTID": 177, "Muni": 170, "LocName": "MILLVALE COMMUNITY CENTER", "Prefix": " ", "House": "416", "Fraction": " ", "Street": "LINCOLN", "Suffix1": "AVE", "Suffix2": " ", "City": "MILLVALE", "Zip": "15209-2647", "Leadman": "15", "MuniName": "MILLVALE", "MWD": "1700001", "MWD2": 1700001, "NewAddress": "416 LINCOLN AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.972557124952885, 40.480898150848702 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 178, "OBJECTID": 178, "Muni": 170, "LocName": "MILLVALE COMMUNITY CENTER", "Prefix": " ", "House": "416", "Fraction": " ", "Street": "LINCOLN", "Suffix1": "AVE", "Suffix2": " ", "City": "MILLVALE", "Zip": "15209-2647", "Leadman": "15", "MuniName": "MILLVALE", "MWD": "1700003", "MWD2": 1700003, "NewAddress": "416 LINCOLN AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.972620874261011, 40.480920334488886 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 179, "OBJECTID": 179, "Muni": 171, "LocName": "NEW HOPE PRESBY CHURCH", "Prefix": " ", "House": "2225", "Fraction": " ", "Street": "GRANDVIEW", "Suffix1": "AVE", "Suffix2": " ", "City": "MONROEVILLE", "Zip": "15146-4209", "Leadman": "29", "MuniName": "MONROEVILLE", "MWD": "1710102", "MWD2": 1710102, "NewAddress": "2225 GRANDVIEW AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.767004452593454, 40.410229540102272 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 180, "OBJECTID": 180, "Muni": 171, "LocName": "CROSSROADS PRES CH FELLOWSHIP HL", "Prefix": " ", "House": "2310", "Fraction": " ", "Street": "HAYMAKER", "Suffix1": "RD", "Suffix2": " ", "City": "MONROEVILLE", "Zip": "15146", "Leadman": "29", "MuniName": "MONROEVILLE", "MWD": "1710201", "MWD2": 1710201, "NewAddress": "2310 HAYMAKER RD" }, "geometry": { "type": "Point", "coordinates": [ -79.751418902865282, 40.411528564928155 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 181, "OBJECTID": 181, "Muni": 171, "LocName": "CROSS ROADS PRESBYTERIAN CHURCH", "Prefix": " ", "House": "2310", "Fraction": " ", "Street": "HAYMAKER", "Suffix1": "RD", "Suffix2": " ", "City": "MONROEVILLE", "Zip": "15146", "Leadman": "29", "MuniName": "MONROEVILLE", "MWD": "1710202", "MWD2": 1710202, "NewAddress": "2310 HAYMAKER RD" }, "geometry": { "type": "Point", "coordinates": [ -79.751418902865282, 40.411528564928155 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 182, "OBJECTID": 182, "Muni": 171, "LocName": "NORTH AMERICAN MARTYRS SCHOOL", "Prefix": " ", "House": "2526", "Fraction": " ", "Street": "HAYMAKER", "Suffix1": "RD", "Suffix2": " ", "City": "MONROEVILLE", "Zip": "15146-3508", "Leadman": "29", "MuniName": "MONROEVILLE", "MWD": "1710203", "MWD2": 1710203, "NewAddress": "2526 HAYMAKER RD" }, "geometry": { "type": "Point", "coordinates": [ -79.747956628404438, 40.425445952279297 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 183, "OBJECTID": 183, "Muni": 171, "LocName": "RESURRECTION CHURCH", "Prefix": " ", "House": "455", "Fraction": " ", "Street": "CENTER", "Suffix1": "RD", "Suffix2": " ", "City": "MONROEVILLE", "Zip": "15146-1038", "Leadman": "29", "MuniName": "MONROEVILLE", "MWD": "1710302", "MWD2": 1710302, "NewAddress": "455 CENTER RD" }, "geometry": { "type": "Point", "coordinates": [ -79.761236076490889, 40.453757185080406 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 184, "OBJECTID": 184, "Muni": 171, "LocName": "RESURRECTION CHURCH 1ST FLOOR", "Prefix": " ", "House": "455", "Fraction": " ", "Street": "CENTER", "Suffix1": "RD", "Suffix2": " ", "City": "MONROEVILLE", "Zip": "15146-1038", "Leadman": "29", "MuniName": "MONROEVILLE", "MWD": "1710303", "MWD2": 1710303, "NewAddress": "455 CENTER RD" }, "geometry": { "type": "Point", "coordinates": [ -79.761236076490889, 40.453757185080406 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 185, "OBJECTID": 185, "Muni": 171, "LocName": "GRACE BAPTIST CHURCH RM 13", "Prefix": " ", "House": "4518", "Fraction": " ", "Street": "NORTHERN", "Suffix1": "PIKE", "Suffix2": " ", "City": "MONROEVILLE", "Zip": "15146-2832", "Leadman": "29", "MuniName": "MONROEVILLE", "MWD": "1710401", "MWD2": 1710401, "NewAddress": "4518 NORTHERN PIKE" }, "geometry": { "type": "Point", "coordinates": [ -79.735131022443937, 40.42967552197733 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 186, "OBJECTID": 186, "Muni": 171, "LocName": "GRACE BAPTIST CHURCH RM 13", "Prefix": " ", "House": "4518", "Fraction": " ", "Street": "NORTHERN", "Suffix1": "PIKE", "Suffix2": " ", "City": "MONROEVILLE", "Zip": "15146-2832", "Leadman": "29", "MuniName": "MONROEVILLE", "MWD": "1710402", "MWD2": 1710402, "NewAddress": "4518 NORTHERN PIKE" }, "geometry": { "type": "Point", "coordinates": [ -79.73515357438113, 40.429537576182426 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 187, "OBJECTID": 187, "Muni": 171, "LocName": "MONROEVILLE VOL FIRE CO #1", "Prefix": " ", "House": "122", "Fraction": " ", "Street": "ELMWOOD", "Suffix1": "ST", "Suffix2": " ", "City": "MONROEVILLE", "Zip": "15146-4032", "Leadman": "29", "MuniName": "MONROEVILLE", "MWD": "1710501", "MWD2": 1710501, "NewAddress": "122 ELMWOOD ST" }, "geometry": { "type": "Point", "coordinates": [ -79.788018463578908, 40.42581257206934 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 188, "OBJECTID": 188, "Muni": 171, "LocName": "MONROEVILLE VOL FIRE CO. #1", "Prefix": " ", "House": "122", "Fraction": " ", "Street": "ELMWOOD", "Suffix1": "ST", "Suffix2": " ", "City": "MONROEVILLE", "Zip": "15146-4032", "Leadman": "29", "MuniName": "MONROEVILLE", "MWD": "1710502", "MWD2": 1710502, "NewAddress": "122 ELMWOOD ST" }, "geometry": { "type": "Point", "coordinates": [ -79.788018463578908, 40.42581257206934 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 189, "OBJECTID": 189, "Muni": 171, "LocName": "MONROEVILLE VOLUNTEER FIRE CO. #1", "Prefix": " ", "House": "122", "Fraction": " ", "Street": "ELMWOOD", "Suffix1": "ST", "Suffix2": " ", "City": "MONROEVILLE", "Zip": "15146-4032", "Leadman": "29", "MuniName": "MONROEVILLE", "MWD": "1710504", "MWD2": 1710504, "NewAddress": "122 ELMWOOD ST" }, "geometry": { "type": "Point", "coordinates": [ -79.788018463578908, 40.42581257206934 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 190, "OBJECTID": 190, "Muni": 171, "LocName": "HILLCREST UNITED PRESBY CHURCH", "Prefix": " ", "House": "1622", "Fraction": " ", "Street": "JAMES", "Suffix1": "ST", "Suffix2": " ", "City": "MONROEVILLE", "Zip": "15146", "Leadman": "29", "MuniName": "MONROEVILLE", "MWD": "1710601", "MWD2": 1710601, "NewAddress": "1622 JAMES ST" }, "geometry": { "type": "Point", "coordinates": [ -79.797598472044726, 40.420281843240979 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 191, "OBJECTID": 191, "Muni": 171, "LocName": "HILLCREST UNITED PRESBY CHURCH", "Prefix": " ", "House": "1622", "Fraction": " ", "Street": "JAMES", "Suffix1": "ST", "Suffix2": " ", "City": "MONROEVILLE", "Zip": "15146", "Leadman": "29", "MuniName": "MONROEVILLE", "MWD": "1710602", "MWD2": 1710602, "NewAddress": "1622 JAMES ST" }, "geometry": { "type": "Point", "coordinates": [ -79.797796024594874, 40.420345858182486 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 192, "OBJECTID": 192, "Muni": 171, "LocName": "BORO BLDG COUNCIL CHAMBERS", "Prefix": " ", "House": "2700", "Fraction": " ", "Street": "MONROEVILLE", "Suffix1": "BLVD", "Suffix2": " ", "City": "MONROEVILLE", "Zip": "15146-2304", "Leadman": "29", "MuniName": "MONROEVILLE", "MWD": "1710603", "MWD2": 1710603, "NewAddress": "2700 MONROEVILLE BLVD" }, "geometry": { "type": "Point", "coordinates": [ -79.779150179320041, 40.436050115066941 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 193, "OBJECTID": 193, "Muni": 171, "LocName": "BORO BLDG COUNCIL CHAMBERS", "Prefix": " ", "House": "2700", "Fraction": " ", "Street": "MONROEVILLE", "Suffix1": "BLVD", "Suffix2": " ", "City": "MONROEVILLE", "Zip": "15146-2304", "Leadman": "29", "MuniName": "MONROEVILLE", "MWD": "1710604", "MWD2": 1710604, "NewAddress": "2700 MONROEVILLE BLVD" }, "geometry": { "type": "Point", "coordinates": [ -79.779150179320041, 40.436050115066941 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 194, "OBJECTID": 194, "Muni": 171, "LocName": "MONROEVILLE VOL FIRE #6", "Prefix": " ", "House": "600", "Fraction": " ", "Street": "GARDEN CITY", "Suffix1": "DR", "Suffix2": " ", "City": "MONROEVILLE", "Zip": "15146", "Leadman": "29", "MuniName": "MONROEVILLE", "MWD": "1710701", "MWD2": 1710701, "NewAddress": "600 GARDEN CITY DR" }, "geometry": { "type": "Point", "coordinates": [ -79.782068704812943, 40.448174821328514 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 195, "OBJECTID": 195, "Muni": 171, "LocName": "MONROEVILLE VOL FIRE #6", "Prefix": " ", "House": "600", "Fraction": " ", "Street": "GARDEN CITY", "Suffix1": "DR", "Suffix2": " ", "City": "MONROEVILLE", "Zip": "15146", "Leadman": "29", "MuniName": "MONROEVILLE", "MWD": "1710702", "MWD2": 1710702, "NewAddress": "600 GARDEN CITY DR" }, "geometry": { "type": "Point", "coordinates": [ -79.782068704812943, 40.448174821328514 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 196, "OBJECTID": 196, "Muni": 171, "LocName": "EVERGREEN SCHOOL", "Prefix": " ", "House": "3831", "Fraction": " ", "Street": "EVERGREEN", "Suffix1": "DR", "Suffix2": " ", "City": "MONROEVILLE", "Zip": "15146-1219", "Leadman": "29", "MuniName": "MONROEVILLE", "MWD": "1710703", "MWD2": 1710703, "NewAddress": "3831 EVERGREEN DR" }, "geometry": { "type": "Point", "coordinates": [ -79.771723760077109, 40.446535349995123 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 197, "OBJECTID": 197, "Muni": 172, "LocName": "BROOKS ELEM CAFE RR PARK LOT ENT", "Prefix": " ", "House": "1720", "Fraction": " ", "Street": "HASSAM", "Suffix1": "RD", "Suffix2": " ", "City": "CORAOPOLIS", "Zip": "15108-3251", "Leadman": "48", "MuniName": "MOON", "MWD": "1720008", "MWD2": 1720008, "NewAddress": "1720 HASSAM RD" }, "geometry": { "type": "Point", "coordinates": [ -80.176667445376069, 40.499806865069303 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 198, "OBJECTID": 198, "Muni": 172, "LocName": "ALLARD SCHOOL", "Prefix": " ", "House": "170", "Fraction": " ", "Street": "SHAFER", "Suffix1": "RD", "Suffix2": " ", "City": "CORAOPOLIS", "Zip": "15108-1093", "Leadman": "48", "MuniName": "MOON", "MWD": "1720011", "MWD2": 1720011, "NewAddress": "170 SHAFER RD" }, "geometry": { "type": "Point", "coordinates": [ -80.218775422258034, 40.530604174453124 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 199, "OBJECTID": 199, "Muni": 172, "LocName": "BROOKS ELEM CAFE RR PARK LOT ENT", "Prefix": " ", "House": "1720", "Fraction": " ", "Street": "HASSAM", "Suffix1": "RD", "Suffix2": " ", "City": "CORAOPOLIS", "Zip": "15108-3251", "Leadman": "48", "MuniName": "MOON", "MWD": "1720012", "MWD2": 1720012, "NewAddress": "1720 HASSAM RD" }, "geometry": { "type": "Point", "coordinates": [ -80.176667445376069, 40.499806865069303 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 200, "OBJECTID": 200, "Muni": 172, "LocName": "ALLARD SCHOOL", "Prefix": " ", "House": "170", "Fraction": " ", "Street": "SHAFER", "Suffix1": "RD", "Suffix2": " ", "City": "CORAOPOLIS", "Zip": "15108-1093", "Leadman": "48", "MuniName": "MOON", "MWD": "1720013", "MWD2": 1720013, "NewAddress": "170 SHAFER RD" }, "geometry": { "type": "Point", "coordinates": [ -80.218770173337546, 40.530460946622782 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 201, "OBJECTID": 201, "Muni": 173, "LocName": "TEMPLE EMANUEL", "Prefix": " ", "House": "1250", "Fraction": " ", "Street": "BOWER HILL", "Suffix1": "RD", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15243-1304", "Leadman": "28", "MuniName": "MT LEBANON", "MWD": "1730206", "MWD2": 1730206, "NewAddress": "1250 BOWER HILL RD" }, "geometry": { "type": "Point", "coordinates": [ -80.074660967120991, 40.376067841561891 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 202, "OBJECTID": 202, "Muni": 173, "LocName": "HOOTVER ELEMENTARY SCHOOL GRD LEVEL ENT", "Prefix": " ", "House": "37", "Fraction": " ", "Street": "ROBB HOLLOW", "Suffix1": "RD", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15243-1304", "Leadman": "28", "MuniName": "MT LEBANON", "MWD": "1730207", "MWD2": 1730207, "NewAddress": "37 ROBB HOLLOW RD" }, "geometry": { "type": "Point", "coordinates": [ -80.074773186324279, 40.375926798557366 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 203, "OBJECTID": 203, "Muni": 173, "LocName": "FOSTER SCHOOL GYM", "Prefix": " ", "House": "700", "Fraction": " ", "Street": "VERMONT", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15234-1220", "Leadman": "28", "MuniName": "MT LEBANON", "MWD": "1730301", "MWD2": 1730301, "NewAddress": "700 VERMONT AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.039271477575411, 40.363033230234514 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 204, "OBJECTID": 204, "Muni": 173, "LocName": "FOSTER SCHOOL LUNCH ROOM", "Prefix": " ", "House": "700", "Fraction": " ", "Street": "VERMONT", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15234-1220", "Leadman": "28", "MuniName": "MT LEBANON", "MWD": "1730302", "MWD2": 1730302, "NewAddress": "700 VERMONT AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.039271477575411, 40.363033230234514 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 205, "OBJECTID": 205, "Muni": 173, "LocName": "FOSTER SCHOOL LUNCH ROOM", "Prefix": " ", "House": "700", "Fraction": " ", "Street": "VERMONT", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15234-1220", "Leadman": "28", "MuniName": "MT LEBANON", "MWD": "1730303", "MWD2": 1730303, "NewAddress": "700 VERMONT AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.039271477575411, 40.363033230234514 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 206, "OBJECTID": 206, "Muni": 173, "LocName": "FOSTER SCHOOL GYM", "Prefix": " ", "House": "700", "Fraction": " ", "Street": "VERMONT", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15234-1220", "Leadman": "28", "MuniName": "MT LEBANON", "MWD": "1730304", "MWD2": 1730304, "NewAddress": "700 VERMONT AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.039271477575411, 40.363033230234514 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 207, "OBJECTID": 207, "Muni": 173, "LocName": "MELLON MIDDLE SCH. MULTI PURP", "Prefix": " ", "House": "11", "Fraction": " ", "Street": "CASTLE SHANNON", "Suffix1": "BLVD", "Suffix2": " ", "City": "MT LEBANON", "Zip": "15228-2202", "Leadman": "28", "MuniName": "MT LEBANON", "MWD": "1730305", "MWD2": 1730305, "NewAddress": "11 CASTLE SHANNON BLVD" }, "geometry": { "type": "Point", "coordinates": [ -80.045266106975347, 40.377007417724073 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 208, "OBJECTID": 208, "Muni": 173, "LocName": "MELLON MIDDLE SCH. MULTI PURP", "Prefix": " ", "House": "11", "Fraction": " ", "Street": "CASTLE SHANNON", "Suffix1": "BLVD", "Suffix2": " ", "City": "MT LEBANON", "Zip": "15228-2202", "Leadman": "28", "MuniName": "MT LEBANON", "MWD": "1730306", "MWD2": 1730306, "NewAddress": "11 CASTLE SHANNON BLVD" }, "geometry": { "type": "Point", "coordinates": [ -80.045266106975347, 40.377007417724073 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 209, "OBJECTID": 209, "Muni": 173, "LocName": "FOSTER SCHOOL GYM", "Prefix": " ", "House": "700", "Fraction": " ", "Street": "VERMONT", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15234-1220", "Leadman": "28", "MuniName": "MT LEBANON", "MWD": "1730307", "MWD2": 1730307, "NewAddress": "700 VERMONT AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.039271477575411, 40.363033230234514 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 210, "OBJECTID": 210, "Muni": 173, "LocName": "WASHINGTON PUBLIC SCHOOL GYM", "Prefix": " ", "House": "735", "Fraction": " ", "Street": "WASHINGTON", "Suffix1": "RD", "Suffix2": " ", "City": "MT LEBANON", "Zip": "15228-2001", "Leadman": "28", "MuniName": "MT LEBANON", "MWD": "1730401", "MWD2": 1730401, "NewAddress": "735 WASHINGTON RD" }, "geometry": { "type": "Point", "coordinates": [ -80.044426321658705, 40.378240413400384 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 211, "OBJECTID": 211, "Muni": 173, "LocName": "WASHINGTON PUBLIC SCHOOL GYM", "Prefix": " ", "House": "735", "Fraction": " ", "Street": "WASHINGTON", "Suffix1": "RD", "Suffix2": " ", "City": "MT LEBANON", "Zip": "15228-2001", "Leadman": "28", "MuniName": "MT LEBANON", "MWD": "1730402", "MWD2": 1730402, "NewAddress": "735 WASHINGTON RD" }, "geometry": { "type": "Point", "coordinates": [ -80.044426321658705, 40.378240413400384 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 212, "OBJECTID": 212, "Muni": 173, "LocName": "HOWE SCHOOL MULTI PURPOSE RM #6", "Prefix": " ", "House": "400", "Fraction": " ", "Street": "BROADMOOR", "Suffix1": "AVE", "Suffix2": " ", "City": "MT LEBANON", "Zip": "15228-2525", "Leadman": "28", "MuniName": "MT LEBANON", "MWD": "1730403", "MWD2": 1730403, "NewAddress": "400 BROADMOOR AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.031009511689291, 40.375339361732905 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 213, "OBJECTID": 213, "Muni": 173, "LocName": "HOWE SCHOOL GYM", "Prefix": " ", "House": "400", "Fraction": " ", "Street": "BROADMOOR", "Suffix1": "AVE", "Suffix2": " ", "City": "MT LEBANON", "Zip": "15228-2525", "Leadman": "28", "MuniName": "MT LEBANON", "MWD": "1730404", "MWD2": 1730404, "NewAddress": "400 BROADMOOR AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.031009511689291, 40.375339361732905 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 214, "OBJECTID": 214, "Muni": 173, "LocName": "HOWE SCHOOL ART ROOM #8", "Prefix": " ", "House": "400", "Fraction": " ", "Street": "BROADMOOR", "Suffix1": "AVE", "Suffix2": " ", "City": "MT LEBANON", "Zip": "15228-2525", "Leadman": "28", "MuniName": "MT LEBANON", "MWD": "1730405", "MWD2": 1730405, "NewAddress": "400 BROADMOOR AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.031009511689291, 40.375339361732905 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 215, "OBJECTID": 215, "Muni": 173, "LocName": "HOWE SCHOOL MUSIC RM #12", "Prefix": " ", "House": "400", "Fraction": " ", "Street": "BROADMOOR", "Suffix1": "AVE", "Suffix2": " ", "City": "MT LEBANON", "Zip": "15228-2525", "Leadman": "28", "MuniName": "MT LEBANON", "MWD": "1730406", "MWD2": 1730406, "NewAddress": "400 BROADMOOR AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.031009511689291, 40.375339361732905 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 216, "OBJECTID": 216, "Muni": 173, "LocName": "HOWE SCHOOL GYM", "Prefix": " ", "House": "400", "Fraction": " ", "Street": "BROADMOOR", "Suffix1": "AVE", "Suffix2": " ", "City": "MT LEBANON", "Zip": "15228-2525", "Leadman": "28", "MuniName": "MT LEBANON", "MWD": "1730407", "MWD2": 1730407, "NewAddress": "400 BROADMOOR AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.031009511689291, 40.375339361732905 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 217, "OBJECTID": 217, "Muni": 173, "LocName": "MT LEBANON REC CENTER", "Prefix": " ", "House": "900", "Fraction": " ", "Street": "CEDAR", "Suffix1": "BLVD", "Suffix2": " ", "City": "MT LEBANON", "Zip": "15228-1100", "Leadman": "28", "MuniName": "MT LEBANON", "MWD": "1730504", "MWD2": 1730504, "NewAddress": "900 CEDAR BLVD" }, "geometry": { "type": "Point", "coordinates": [ -80.055774400867392, 40.374133423011074 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 218, "OBJECTID": 218, "Muni": 173, "LocName": "MT LEBANON REC CENTER", "Prefix": " ", "House": "900", "Fraction": " ", "Street": "CEDAR", "Suffix1": "BLVD", "Suffix2": " ", "City": "MT LEBANON", "Zip": "15228-1100", "Leadman": "28", "MuniName": "MT LEBANON", "MWD": "1730506", "MWD2": 1730506, "NewAddress": "900 CEDAR BLVD" }, "geometry": { "type": "Point", "coordinates": [ -80.055774400867392, 40.374133423011074 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 219, "OBJECTID": 219, "Muni": 173, "LocName": "MT LEBANON REC CENTER", "Prefix": " ", "House": "900", "Fraction": " ", "Street": "CEDAR", "Suffix1": "BLVD", "Suffix2": " ", "City": "MT LEBANON", "Zip": "15228-1100", "Leadman": "28", "MuniName": "MT LEBANON", "MWD": "1730507", "MWD2": 1730507, "NewAddress": "900 CEDAR BLVD" }, "geometry": { "type": "Point", "coordinates": [ -80.055774400867392, 40.374133423011074 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 220, "OBJECTID": 220, "Muni": 174, "LocName": "PGH CHRISTIAN FELLOWSHIP, OLD THR", "Prefix": " ", "House": "407", "Fraction": " ", "Street": "BROWNSVILLE", "Suffix1": "RD", "Suffix2": " ", "City": "MT OLIVER", "Zip": "15210-2279", "Leadman": "10", "MuniName": "MT OLIVER", "MWD": "1740002", "MWD2": 1740002, "NewAddress": "407 BROWNSVILLE RD" }, "geometry": { "type": "Point", "coordinates": [ -79.988655877386549, 40.412845186188591 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 221, "OBJECTID": 221, "Muni": 174, "LocName": "TRINITY LUTHERAN CHURCH", "Prefix": " ", "House": "601", "Fraction": " ", "Street": "BROWNSVILLE", "Suffix1": "RD", "Suffix2": " ", "City": "MT OLIVER", "Zip": "15210-2343", "Leadman": "10", "MuniName": "MT OLIVER", "MWD": "1740004", "MWD2": 1740004, "NewAddress": "601 BROWNSVILLE RD" }, "geometry": { "type": "Point", "coordinates": [ -79.98998293060211, 40.410467686202082 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 222, "OBJECTID": 222, "Muni": 175, "LocName": "MUNHALL #5 VFD", "Prefix": " ", "House": "1817", "Fraction": " ", "Street": "WHITAKER", "Suffix1": "WAY", "Suffix2": " ", "City": "MUNHALL", "Zip": "15120-2136", "Leadman": "20", "MuniName": "MUNHALL", "MWD": "1750001", "MWD2": 1750001, "NewAddress": "1817 WHITAKER WAY" }, "geometry": { "type": "Point", "coordinates": [ -79.89045276376045, 40.40438244156055 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 223, "OBJECTID": 223, "Muni": 175, "LocName": "CARNEGIE LIBRARY OF HOMESTEAD", "Prefix": "E", "House": "510", "Fraction": " ", "Street": "10TH", "Suffix1": "AVE", "Suffix2": " ", "City": "MUNHALL", "Zip": "15120-1910", "Leadman": "20", "MuniName": "MUNHALL", "MWD": "1750002", "MWD2": 1750002, "NewAddress": "510 10TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.902950682705296, 40.407012718048385 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 224, "OBJECTID": 224, "Muni": 175, "LocName": "#4 FIRE HOUSE- DOWNSTAIRS", "Prefix": " ", "House": "3401", "Fraction": " ", "Street": "MAIN", "Suffix1": "ST", "Suffix2": " ", "City": "MUNHALL", "Zip": "15120", "Leadman": "20", "MuniName": "MUNHALL", "MWD": "1750006", "MWD2": 1750006, "NewAddress": "3401 MAIN ST" }, "geometry": { "type": "Point", "coordinates": [ -79.902480447901254, 40.386361454554574 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 225, "OBJECTID": 225, "Muni": 175, "LocName": "#4 FIREHOUSE (DOWNSTAIRS)", "Prefix": " ", "House": "3401", "Fraction": " ", "Street": "MAIN", "Suffix1": "ST", "Suffix2": " ", "City": "MUNHALL", "Zip": "15120-3258", "Leadman": "20", "MuniName": "MUNHALL", "MWD": "1750007", "MWD2": 1750007, "NewAddress": "3401 MAIN ST" }, "geometry": { "type": "Point", "coordinates": [ -79.902480447901254, 40.386361454554574 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 226, "OBJECTID": 226, "Muni": 175, "LocName": "MESSIAH LUTHERN CH-PARLOR RM", "Prefix": " ", "House": "4300", "Fraction": " ", "Street": "MAIN", "Suffix1": "ST", "Suffix2": " ", "City": "MUNHALL", "Zip": "15120-3362", "Leadman": "20", "MuniName": "MUNHALL", "MWD": "1750011", "MWD2": 1750011, "NewAddress": "4300 MAIN ST" }, "geometry": { "type": "Point", "coordinates": [ -79.906761632180846, 40.381077029293373 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 227, "OBJECTID": 227, "Muni": 175, "LocName": "ST.ELIAS BYZANTIN CHURCH", "Prefix": " ", "House": "4200", "Fraction": " ", "Street": "HOMESTEAD DUQUESNE", "Suffix1": "RD", "Suffix2": " ", "City": "MUNHALL", "Zip": "15120-3545", "Leadman": "20", "MuniName": "MUNHALL", "MWD": "1750012", "MWD2": 1750012, "NewAddress": "4200 HOMESTEAD DUQUESNE RD" }, "geometry": { "type": "Point", "coordinates": [ -79.895961370147063, 40.382334266822298 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 228, "OBJECTID": 228, "Muni": 176, "LocName": "NEVILLE ISLAND VFD", "Prefix": " ", "House": "5300", "Fraction": " ", "Street": "GRAND", "Suffix1": "AVE", "Suffix2": " ", "City": "NEVILLE ISLAND", "Zip": "15225-1351", "Leadman": "51", "MuniName": "NEVILLE", "MWD": "1760100", "MWD2": 1760100, "NewAddress": "5300 GRAND AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.129391370573288, 40.512653928298747 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 229, "OBJECTID": 229, "Muni": 176, "LocName": "NEVILLE ISLAND V.F.D. 1ST FL", "Prefix": " ", "House": "5300", "Fraction": " ", "Street": "GRAND", "Suffix1": "AVE", "Suffix2": " ", "City": "NEVILLE ISLAND", "Zip": "15225-1351", "Leadman": "51", "MuniName": "NEVILLE", "MWD": "1760200", "MWD2": 1760200, "NewAddress": "5300 GRAND AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.129391370573288, 40.512653928298747 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 230, "OBJECTID": 230, "Muni": 176, "LocName": "NEVILLE ISLAND V.F.D. 1ST FL", "Prefix": " ", "House": "5300", "Fraction": " ", "Street": "GRAND", "Suffix1": "AVE", "Suffix2": " ", "City": "NEVILLE ISLAND", "Zip": "15225-1351", "Leadman": "51", "MuniName": "NEVILLE", "MWD": "1760300", "MWD2": 1760300, "NewAddress": "5300 GRAND AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.129391370573288, 40.512653928298747 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 231, "OBJECTID": 231, "Muni": 177, "LocName": "NO. BRADDOCK VOL FIRE CO", "Prefix": " ", "House": "1318", "Fraction": " ", "Street": "WOLFE", "Suffix1": "AVE", "Suffix2": " ", "City": "BRADDOCK", "Zip": "15104-2718", "Leadman": "32", "MuniName": "N BRADDOCK", "MWD": "1770101", "MWD2": 1770101, "NewAddress": "1318 WOLFE AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.845266228477826, 40.405108225894551 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 232, "OBJECTID": 232, "Muni": 177, "LocName": "NO. BRADDOCK VOL FIRE CO", "Prefix": " ", "House": "1318", "Fraction": " ", "Street": "WOLFE", "Suffix1": "AVE", "Suffix2": " ", "City": "BRADDOCK", "Zip": "15104-2718", "Leadman": "32", "MuniName": "N BRADDOCK", "MWD": "1770102", "MWD2": 1770102, "NewAddress": "1318 WOLFE AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.845266228477826, 40.405108225894551 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 233, "OBJECTID": 233, "Muni": 177, "LocName": "NO. BRADDOCK VOL FIRE CO", "Prefix": " ", "House": "1318", "Fraction": " ", "Street": "WOLFE", "Suffix1": "AVE", "Suffix2": " ", "City": "BRADDOCK", "Zip": "15104-2718", "Leadman": "32", "MuniName": "N BRADDOCK", "MWD": "1770103", "MWD2": 1770103, "NewAddress": "1318 WOLFE AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.845266228477826, 40.405108225894551 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 234, "OBJECTID": 234, "Muni": 177, "LocName": "GENERAL BRADDOCK TOWERS", "Prefix": " ", "House": "620", "Fraction": " ", "Street": "6TH", "Suffix1": "ST", "Suffix2": " ", "City": "BRADDOCK", "Zip": "15104-2341", "Leadman": "32", "MuniName": "N BRADDOCK", "MWD": "1770301", "MWD2": 1770301, "NewAddress": "620 6TH ST" }, "geometry": { "type": "Point", "coordinates": [ -79.864200210823853, 40.405036315361549 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 235, "OBJECTID": 235, "Muni": 177, "LocName": "GENERAL BRADDOCK TOWERS", "Prefix": " ", "House": "620", "Fraction": " ", "Street": "6TH", "Suffix1": "ST", "Suffix2": " ", "City": "BRADDOCK", "Zip": "15104-2221", "Leadman": "32", "MuniName": "N BRADDOCK", "MWD": "1770302", "MWD2": 1770302, "NewAddress": "620 6TH ST" }, "geometry": { "type": "Point", "coordinates": [ -79.864032755511886, 40.405332737193184 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 236, "OBJECTID": 236, "Muni": 178, "LocName": "TOWNSHIP BUILDING HALL", "Prefix": "N", "House": "400", "Fraction": " ", "Street": "BRANCH", "Suffix1": "RD", "Suffix2": " ", "City": "OAKDALE", "Zip": "15071", "Leadman": "49", "MuniName": "N FAYETTE", "MWD": "1780001", "MWD2": 1780001, "NewAddress": "400 BRANCH RD" }, "geometry": { "type": "Point", "coordinates": [ -80.223086574374307, 40.416081041958769 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 237, "OBJECTID": 237, "Muni": 185, "LocName": "ROLLING HILLS CHURCH - COMMUNITY CENTER", "Prefix": " ", "House": "120", "Fraction": " ", "Street": "GERNERT", "Suffix1": "DR", "Suffix2": " ", "City": "VERONA", "Zip": "15147-3246", "Leadman": "56", "MuniName": "PENN HILLS", "MWD": "1850301", "MWD2": 1850301, "NewAddress": "120 GERNERT DR" }, "geometry": { "type": "Point", "coordinates": [ -79.833432538065793, 40.481152046553916 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 238, "OBJECTID": 238, "Muni": 185, "LocName": "WM. MCKINLEY CITIZENS CTR. INC", "Prefix": " ", "House": " ", "Fraction": " ", "Street": "SEVENTH & CENTER STS.", "Suffix1": " ", "Suffix2": " ", "City": "VERONA", "Zip": "15147", "Leadman": "56", "MuniName": "PENN HILLS", "MWD": "1850802", "MWD2": 1850802, "NewAddress": " SEVENTH & CENTER STS." }, "geometry": { "type": "Point", "coordinates": [ -79.829159256064344, 40.507472173110472 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 239, "OBJECTID": 239, "Muni": 186, "LocName": "NORTH WAY CHRISTIAN COMMUNITY GYM", "Prefix": " ", "House": "12121", "Fraction": " ", "Street": "PERRY", "Suffix1": "HWY", "Suffix2": " ", "City": "WEXFORD", "Zip": "15090-8345", "Leadman": "42", "MuniName": "PINE", "MWD": "1860004", "MWD2": 1860004, "NewAddress": "12121 PERRY HWY" }, "geometry": { "type": "Point", "coordinates": [ -80.023927458015905, 40.632078614216681 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 240, "OBJECTID": 240, "Muni": 186, "LocName": "NORTH WAY CHRISTIAN COMMUNITY GYM", "Prefix": " ", "House": "12121", "Fraction": " ", "Street": "PERRY", "Suffix1": "HWY", "Suffix2": " ", "City": "WEXFORD", "Zip": "15090-8345", "Leadman": "42", "MuniName": "PINE", "MWD": "1860005", "MWD2": 1860005, "NewAddress": "12121 PERRY HWY" }, "geometry": { "type": "Point", "coordinates": [ -80.023927458015905, 40.632078614216681 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 241, "OBJECTID": 241, "Muni": 186, "LocName": "SALEM UN METHODIST CH", "Prefix": " ", "House": "350", "Fraction": " ", "Street": "MANOR", "Suffix1": "RD", "Suffix2": " ", "City": "WEXFORD", "Zip": "15090", "Leadman": "42", "MuniName": "PINE", "MWD": "1860007", "MWD2": 1860007, "NewAddress": "350 MANOR RD" }, "geometry": { "type": "Point", "coordinates": [ -80.066887395019251, 40.629027656570329 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 242, "OBJECTID": 242, "Muni": 187, "LocName": "PITCAIRN BUILDING I", "Prefix": " ", "House": "582", "Fraction": " ", "Street": "SIXTH", "Suffix1": "ST", "Suffix2": " ", "City": "PITCAIRN", "Zip": "15140", "Leadman": "29", "MuniName": "PITCAIRN", "MWD": "1870003", "MWD2": 1870003, "NewAddress": "582 SIXTH ST" }, "geometry": { "type": "Point", "coordinates": [ -79.776004354775651, 40.405647389287616 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 243, "OBJECTID": 243, "Muni": 188, "LocName": "EPIPHANY CHURCH", "Prefix": " ", "House": "1018", "Fraction": " ", "Street": "CENTRE", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15219-2902", "Leadman": "01", "MuniName": "PITTSBURGH", "MWD": "1880101", "MWD2": 1880101, "NewAddress": "1018 CENTRE AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.990592655941839, 40.440143070840669 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 244, "OBJECTID": 244, "Muni": 188, "LocName": "FRONT ENT - MCKELVY SCH CAFE BACK WALL", "Prefix": " ", "House": "2055", "Fraction": " ", "Street": "BEDFORD", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15219-3634", "Leadman": "03", "MuniName": "PITTSBURGH", "MWD": "1880303", "MWD2": 1880303, "NewAddress": "2055 BEDFORD AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.981649239500143, 40.447671679227717 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 245, "OBJECTID": 245, "Muni": 188, "LocName": "EBENEZER BAPTIST CHURCH", "Prefix": " ", "House": "2001", "Fraction": " ", "Street": "WYLIE", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15219-3380", "Leadman": "01", "MuniName": "PITTSBURGH", "MWD": "1880305", "MWD2": 1880305, "NewAddress": "2001 WYLIE AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.980608734014595, 40.444516397876427 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 246, "OBJECTID": 246, "Muni": 188, "LocName": "Engine Company No. 14", "Prefix": " ", "House": "259", "Fraction": " ", "Street": "MCKEE", "Suffix1": "PL", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15213-3902", "Leadman": "02", "MuniName": "PITTSBURGH", "MWD": "1880405", "MWD2": 1880405, "NewAddress": "259 MCKEE PL" }, "geometry": { "type": "Point", "coordinates": [ -79.957574277675491, 40.438749497933514 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 247, "OBJECTID": 247, "Muni": 188, "LocName": "SOLDIERS & SAILORS MEMORIAL HALL", "Prefix": " ", "House": "4141", "Fraction": " ", "Street": "5TH", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15213", "Leadman": "02", "MuniName": "PITTSBURGH", "MWD": "1880407", "MWD2": 1880407, "NewAddress": "4141 5TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.956064083582959, 40.444745265460995 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 248, "OBJECTID": 248, "Muni": 188, "LocName": "ST. REGIS CHURCH HALL", "Prefix": " ", "House": "3250", "Fraction": " ", "Street": "PARKVIEW", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15213", "Leadman": "02", "MuniName": "PITTSBURGH", "MWD": "1880417", "MWD2": 1880417, "NewAddress": "3250 PARKVIEW AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.952690877742072, 40.430984928348117 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 249, "OBJECTID": 249, "Muni": 188, "LocName": "FRONT ENTRANCE - MCKELVY SCH CAFETERIA", "Prefix": " ", "House": "2055", "Fraction": " ", "Street": "BEDFORD", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15219-3634", "Leadman": "03", "MuniName": "PITTSBURGH", "MWD": "1880501", "MWD2": 1880501, "NewAddress": "2055 BEDFORD AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.981649239500143, 40.447671679227717 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 250, "OBJECTID": 250, "Muni": 188, "LocName": "FRONT ENTRANCE - MCKELVY SCH CAFETERIA", "Prefix": " ", "House": "2055", "Fraction": " ", "Street": "BEDFORD", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15219-3634", "Leadman": "03", "MuniName": "PITTSBURGH", "MWD": "1880502", "MWD2": 1880502, "NewAddress": "2055 BEDFORD AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.981649239500143, 40.447671679227717 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 251, "OBJECTID": 251, "Muni": 188, "LocName": "A. LEO WEIL SCHOOL", "Prefix": " ", "House": "2250", "Fraction": " ", "Street": "CENTRE", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15219-6306", "Leadman": "03", "MuniName": "PITTSBURGH", "MWD": "1880514", "MWD2": 1880514, "NewAddress": "2250 CENTRE AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.974048614190181, 40.444633479212932 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 252, "OBJECTID": 252, "Muni": 188, "LocName": "WADSWORTH HALL", "Prefix": " ", "House": "480", "Fraction": " ", "Street": "OAKHILL", "Suffix1": "DR", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15213-2459", "Leadman": "03", "MuniName": "PITTSBURGH", "MWD": "1880517", "MWD2": 1880517, "NewAddress": "480 OAKHILL DR" }, "geometry": { "type": "Point", "coordinates": [ -79.969617813529851, 40.442811408341932 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 253, "OBJECTID": 253, "Muni": 188, "LocName": "ENT RODEF SHALOM FOYER FIRST FLOOR", "Prefix": " ", "House": "4905", "Fraction": " ", "Street": "5TH", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15213", "Leadman": "02", "MuniName": "PITTSBURGH", "MWD": "1880701", "MWD2": 1880701, "NewAddress": "4905 5TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.943356564591909, 40.448007120921844 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 254, "OBJECTID": 254, "Muni": 188, "LocName": "ENT - 1ST UN METH CHURCH FELLOWSHIP HALL", "Prefix": " ", "House": "5401", "Fraction": " ", "Street": "CENTRE", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15232-1621", "Leadman": "05", "MuniName": "PITTSBURGH", "MWD": "1880703", "MWD2": 1880703, "NewAddress": "5401 CENTRE AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.938101486612481, 40.4565549838522 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 255, "OBJECTID": 255, "Muni": 188, "LocName": "THE THIRD PRESBYTERIAN CHURCH", "Prefix": " ", "House": "5701", "Fraction": " ", "Street": "5TH", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15232", "Leadman": "05", "MuniName": "PITTSBURGH", "MWD": "1880706", "MWD2": 1880706, "NewAddress": "5701 5TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.929288793021698, 40.450360504874681 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 256, "OBJECTID": 256, "Muni": 188, "LocName": "LIBERTY SCHOOL GYM", "Prefix": " ", "House": "601", "Fraction": " ", "Street": "FILBERT", "Suffix1": "ST", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15232-1809", "Leadman": "05", "MuniName": "PITTSBURGH", "MWD": "1880708", "MWD2": 1880708, "NewAddress": "601 FILBERT ST" }, "geometry": { "type": "Point", "coordinates": [ -79.933607962975586, 40.453488035054413 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 257, "OBJECTID": 257, "Muni": 188, "LocName": "SACRED HEART ACTIVITIES BLDG", "Prefix": " ", "House": "325", "Fraction": " ", "Street": "EMERSON", "Suffix1": "ST", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15206-4201", "Leadman": "05", "MuniName": "PITTSBURGH", "MWD": "1880710", "MWD2": 1880710, "NewAddress": "325 EMERSON ST" }, "geometry": { "type": "Point", "coordinates": [ -79.923020029070486, 40.457135867972184 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 258, "OBJECTID": 258, "Muni": 188, "LocName": "FIRST UNITARIAN CH. OF PGH.", "Prefix": " ", "House": "605", "Fraction": " ", "Street": "MOREWOOD", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15213-2909", "Leadman": "02", "MuniName": "PITTSBURGH", "MWD": "1880713", "MWD2": 1880713, "NewAddress": "605 MOREWOOD AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.942556874494215, 40.450640716079242 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 259, "OBJECTID": 259, "Muni": 188, "LocName": "FIRST UNITARIAN CH. OF PGH.", "Prefix": " ", "House": "605", "Fraction": " ", "Street": "MOREWOOD", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15213-2909", "Leadman": "02", "MuniName": "PITTSBURGH", "MWD": "1880714", "MWD2": 1880714, "NewAddress": "605 MOREWOOD AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.942556874494215, 40.450640716079242 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 260, "OBJECTID": 260, "Muni": 188, "LocName": "BLOOMFIELD RECREATION CENTER", "Prefix": " ", "House": "408", "Fraction": " ", "Street": "ELLA", "Suffix1": "ST", "Suffix2": " ", "City": "BLOOMFIELD", "Zip": "15224-1809", "Leadman": "04", "MuniName": "PITTSBURGH", "MWD": "1880801", "MWD2": 1880801, "NewAddress": "408 ELLA ST" }, "geometry": { "type": "Point", "coordinates": [ -79.953554072617166, 40.462108380931703 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 261, "OBJECTID": 261, "Muni": 188, "LocName": "MECHANICAL CONTRACTORS ASSOC", "Prefix": " ", "House": "5131", "Fraction": " ", "Street": "CYPRESS", "Suffix1": "ST", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15224-2208", "Leadman": "04", "MuniName": "PITTSBURGH", "MWD": "1880804", "MWD2": 1880804, "NewAddress": "5131 CYPRESS ST" }, "geometry": { "type": "Point", "coordinates": [ -79.943694378321666, 40.457098547677774 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 262, "OBJECTID": 262, "Muni": 188, "LocName": "MCKEAN KIA 1ST FL", "Prefix": " ", "House": "5001", "Fraction": " ", "Street": "LIBERTY", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15224-2208", "Leadman": "04", "MuniName": "PITTSBURGH", "MWD": "1880805", "MWD2": 1880805, "NewAddress": "5001 LIBERTY AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.944406458189036, 40.459515901763758 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 263, "OBJECTID": 263, "Muni": 188, "LocName": "FRIENDSHIP SCHOOL", "Prefix": "S", "House": "201", "Fraction": " ", "Street": "GRAHAM", "Suffix1": "ST", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15206-3419", "Leadman": "05", "MuniName": "PITTSBURGH", "MWD": "1880811", "MWD2": 1880811, "NewAddress": "201 GRAHAM ST" }, "geometry": { "type": "Point", "coordinates": [ -79.935490140916102, 40.462266018710899 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 264, "OBJECTID": 264, "Muni": 188, "LocName": "FRIENDSHIP SCHOOL", "Prefix": "S", "House": "201", "Fraction": " ", "Street": "GRAHAM", "Suffix1": "ST", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15206-3419", "Leadman": "05", "MuniName": "PITTSBURGH", "MWD": "1880812", "MWD2": 1880812, "NewAddress": "201 GRAHAM ST" }, "geometry": { "type": "Point", "coordinates": [ -79.935490140916102, 40.462266018710899 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 265, "OBJECTID": 265, "Muni": 188, "LocName": "EAST LIBERTY LUTHERAN CH WOLF SOC HAL", "Prefix": " ", "House": "5707", "Fraction": " ", "Street": "PENN", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15213-1321", "Leadman": "06", "MuniName": "PITTSBURGH", "MWD": "1880813", "MWD2": 1880813, "NewAddress": "5707 PENN AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.928366210704581, 40.462915452138198 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 266, "OBJECTID": 266, "Muni": 188, "LocName": "CHRISTIAN WAY ENTRANCE - WOOLSLAIR GYM", "Prefix": " ", "House": "501", "Fraction": " ", "Street": "40TH", "Suffix1": "ST", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15224-1458", "Leadman": "04", "MuniName": "PITTSBURGH", "MWD": "1880908", "MWD2": 1880908, "NewAddress": "501 40TH ST" }, "geometry": { "type": "Point", "coordinates": [ -79.958106602609817, 40.464869295349168 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 267, "OBJECTID": 267, "Muni": 188, "LocName": "ENGINE HOUSE", "Prefix": " ", "House": "4603", "Fraction": " ", "Street": "STANTON", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15201-1623", "Leadman": "06", "MuniName": "PITTSBURGH", "MWD": "1881004", "MWD2": 1881004, "NewAddress": "4603 STANTON AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.93726893184008, 40.481474981759476 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 268, "OBJECTID": 268, "Muni": 188, "LocName": "ENGINE HOUSE", "Prefix": " ", "House": "4603", "Fraction": " ", "Street": "STANTON", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15201-1623", "Leadman": "06", "MuniName": "PITTSBURGH", "MWD": "1881006", "MWD2": 1881006, "NewAddress": "4603 STANTON AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.93726893184008, 40.481474981759476 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 269, "OBJECTID": 269, "Muni": 188, "LocName": "JOE NATOLI FIELD", "Prefix": " ", "House": "6944", "Fraction": " ", "Street": "PRESIDENT & ANTIETAM", "Suffix1": " ", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15206", "Leadman": "06", "MuniName": "PITTSBURGH", "MWD": "1881007", "MWD2": 1881007, "NewAddress": "6944 PRESIDENT & ANTIETAM" }, "geometry": { "type": "Point", "coordinates": [ -79.925134705165206, 40.483976566810576 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 270, "OBJECTID": 270, "Muni": 188, "LocName": "JOE NATOLI FIELD", "Prefix": " ", "House": " ", "Fraction": " ", "Street": "PRESIDENT & ANTIETAM", "Suffix1": " ", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15206", "Leadman": "06", "MuniName": "PITTSBURGH", "MWD": "1881008", "MWD2": 1881008, "NewAddress": " PRESIDENT & ANTIETAM" }, "geometry": { "type": "Point", "coordinates": [ -79.924947321903204, 40.483870007058528 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 271, "OBJECTID": 271, "Muni": 188, "LocName": "JOE NATOLI FIELD", "Prefix": " ", "House": "6944", "Fraction": " ", "Street": "PRESIDENT & ANTIETAM", "Suffix1": " ", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15206", "Leadman": "06", "MuniName": "PITTSBURGH", "MWD": "1881009", "MWD2": 1881009, "NewAddress": "6944 PRESIDENT & ANTIETAM" }, "geometry": { "type": "Point", "coordinates": [ -79.925067055162771, 40.483882938855842 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 272, "OBJECTID": 272, "Muni": 188, "LocName": "BLACK STREET ENT ROGERS SCHOOL GYM", "Prefix": " ", "House": "5525", "Fraction": " ", "Street": "COLUMBO", "Suffix1": "ST", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15206-2819", "Leadman": "06", "MuniName": "PITTSBURGH", "MWD": "1881015", "MWD2": 1881015, "NewAddress": "5525 COLUMBO ST" }, "geometry": { "type": "Point", "coordinates": [ -79.930882287307256, 40.469084536049436 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 273, "OBJECTID": 273, "Muni": 188, "LocName": "FORT PITT SCHOOL", "Prefix": " ", "House": "5101", "Fraction": " ", "Street": "HILLCREST", "Suffix1": "ST", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15224-1122", "Leadman": "06", "MuniName": "PITTSBURGH", "MWD": "1881016", "MWD2": 1881016, "NewAddress": "5101 HILLCREST ST" }, "geometry": { "type": "Point", "coordinates": [ -79.941785930513419, 40.468906768459775 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 274, "OBJECTID": 274, "Muni": 188, "LocName": "FORT PITT SCHOOL", "Prefix": " ", "House": "5101", "Fraction": " ", "Street": "HILLCREST", "Suffix1": "ST", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15224-1122", "Leadman": "06", "MuniName": "PITTSBURGH", "MWD": "1881019", "MWD2": 1881019, "NewAddress": "5101 HILLCREST ST" }, "geometry": { "type": "Point", "coordinates": [ -79.941785930513419, 40.468906768459775 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 275, "OBJECTID": 275, "Muni": 188, "LocName": "FULTON SCH KINDERGARTEN ROOM #2", "Prefix": " ", "House": "5799", "Fraction": " ", "Street": "HAMPTON", "Suffix1": "ST", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15206-1639", "Leadman": "06", "MuniName": "PITTSBURGH", "MWD": "1881101", "MWD2": 1881101, "NewAddress": "5799 HAMPTON ST" }, "geometry": { "type": "Point", "coordinates": [ -79.921980441683971, 40.475000387824537 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 276, "OBJECTID": 276, "Muni": 188, "LocName": "FULTON SCH KINDERGARTEN ROOM #2", "Prefix": " ", "House": "5799", "Fraction": " ", "Street": "HAMPTON", "Suffix1": "ST", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15206-1639", "Leadman": "06", "MuniName": "PITTSBURGH", "MWD": "1881107", "MWD2": 1881107, "NewAddress": "5799 HAMPTON ST" }, "geometry": { "type": "Point", "coordinates": [ -79.921980441683971, 40.475000387824537 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 277, "OBJECTID": 277, "Muni": 188, "LocName": "FARM HOUSE 1ST FLOOR", "Prefix": " ", "House": " ", "Fraction": " ", "Street": "HEBERTON & GRAFTON", "Suffix1": " ", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15206", "Leadman": "06", "MuniName": "PITTSBURGH", "MWD": "1881110", "MWD2": 1881110, "NewAddress": " HEBERTON & GRAFTON" }, "geometry": { "type": "Point", "coordinates": [ -79.914121253372841, 40.468451232887602 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 278, "OBJECTID": 278, "Muni": 188, "LocName": "DILLWORTH SCHOOL", "Prefix": " ", "House": "6200", "Fraction": " ", "Street": "STANTON", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15206-2245", "Leadman": "06", "MuniName": "PITTSBURGH", "MWD": "1881112", "MWD2": 1881112, "NewAddress": "6200 STANTON AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.917566170581935, 40.468249190901282 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 279, "OBJECTID": 279, "Muni": 188, "LocName": "DILLWORTH SCHOOL", "Prefix": " ", "House": "6200", "Fraction": " ", "Street": "STANTON", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15206-2245", "Leadman": "06", "MuniName": "PITTSBURGH", "MWD": "1881113", "MWD2": 1881113, "NewAddress": "6200 STANTON AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.91734772585113, 40.468219512441401 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 280, "OBJECTID": 280, "Muni": 188, "LocName": "DILLWORTH SCHOOL", "Prefix": " ", "House": "6200", "Fraction": " ", "Street": "STATNON", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15206-2245", "Leadman": "06", "MuniName": "PITTSBURGH", "MWD": "1881114", "MWD2": 1881114, "NewAddress": "6200 STATNON AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.917114004170799, 40.468138677551153 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 281, "OBJECTID": 281, "Muni": 188, "LocName": "EMORY UNITED METH CHURCH LOUNGE", "Prefix": "N", "House": "325", "Fraction": " ", "Street": "HIGHLAND", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15206-2924", "Leadman": "06", "MuniName": "PITTSBURGH", "MWD": "1881118", "MWD2": 1881118, "NewAddress": "325 HIGHLAND AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.923947936732731, 40.464622770800595 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 282, "OBJECTID": 282, "Muni": 188, "LocName": "PAULSON RECREATION CENTER-FIRST FL", "Prefix": " ", "House": "1300", "Fraction": " ", "Street": "PAULSON", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15206-1828", "Leadman": "07", "MuniName": "PITTSBURGH", "MWD": "1881207", "MWD2": 1881207, "NewAddress": "1300 PAULSON AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.900316765724043, 40.468547283993821 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 283, "OBJECTID": 283, "Muni": 188, "LocName": "PAULSON RECREATION CENTER", "Prefix": " ", "House": "1300", "Fraction": " ", "Street": "PAULSON", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15206-1828", "Leadman": "07", "MuniName": "PITTSBURGH", "MWD": "1881210", "MWD2": 1881210, "NewAddress": "1300 PAULSON AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.900316765724043, 40.468547283993821 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 284, "OBJECTID": 284, "Muni": 188, "LocName": "#15 ENGINE HOUSE", "Prefix": " ", "House": "7024", "Fraction": " ", "Street": "LEMINGTON", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15206-1249", "Leadman": "07", "MuniName": "PITTSBURGH", "MWD": "1881211", "MWD2": 1881211, "NewAddress": "7024 LEMINGTON AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.897894278079988, 40.470581902222108 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 285, "OBJECTID": 285, "Muni": 188, "LocName": "#15 ENGINE HOUSE", "Prefix": " ", "House": "7024", "Fraction": " ", "Street": "LEMINGTON", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15206-1249", "Leadman": "07", "MuniName": "PITTSBURGH", "MWD": "1881212", "MWD2": 1881212, "NewAddress": "7024 LEMINGTON AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.897894278079988, 40.470581902222108 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 286, "OBJECTID": 286, "Muni": 188, "LocName": "ST CHARLES LWANGA PARISH", "Prefix": " ", "House": "1550", "Fraction": " ", "Street": "LINCOLN", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15206", "Leadman": "07", "MuniName": "PITTSBURGH", "MWD": "1881214", "MWD2": 1881214, "NewAddress": "1550 LINCOLN AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.894430588850298, 40.469621836277277 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 287, "OBJECTID": 287, "Muni": 188, "LocName": "ENGINE HOUSE", "Prefix": " ", "House": "7601", "Fraction": " ", "Street": "HAMILTON", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15208-2205", "Leadman": "07", "MuniName": "PITTSBURGH", "MWD": "1881309", "MWD2": 1881309, "NewAddress": "7601 HAMILTON AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.890785774198633, 40.453373948891979 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 288, "OBJECTID": 288, "Muni": 188, "LocName": "CRESCENT SCHOOL GYM", "Prefix": " ", "House": "8080", "Fraction": " ", "Street": "BENNETT", "Suffix1": "ST", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15221-1306", "Leadman": "07", "MuniName": "PITTSBURGH", "MWD": "1881312", "MWD2": 1881312, "NewAddress": "8080 BENNETT ST" }, "geometry": { "type": "Point", "coordinates": [ -79.880984368856545, 40.453774698142482 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 289, "OBJECTID": 289, "Muni": 188, "LocName": "CRESCENT SCHOOL GYM", "Prefix": " ", "House": "8080", "Fraction": " ", "Street": "BENNETT", "Suffix1": "ST", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15221-1306", "Leadman": "07", "MuniName": "PITTSBURGH", "MWD": "1881316", "MWD2": 1881316, "NewAddress": "8080 BENNETT ST" }, "geometry": { "type": "Point", "coordinates": [ -79.880984368856545, 40.453774698142482 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 290, "OBJECTID": 290, "Muni": 188, "LocName": "WIGHTMAN ANNEX", "Prefix": " ", "House": "5604", "Fraction": " ", "Street": "SOLWAY", "Suffix1": "ST", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15217", "Leadman": "05", "MuniName": "PITTSBURGH", "MWD": "1881404", "MWD2": 1881404, "NewAddress": "5604 SOLWAY ST" }, "geometry": { "type": "Point", "coordinates": [ -79.926727294175407, 40.442722091229648 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 291, "OBJECTID": 291, "Muni": 188, "LocName": "WIGHTMAN SCHOOL", "Prefix": " ", "House": "5604", "Fraction": " ", "Street": "SOLWAY", "Suffix1": "ST", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15217", "Leadman": "05", "MuniName": "PITTSBURGH", "MWD": "1881405", "MWD2": 1881405, "NewAddress": "5604 SOLWAY ST" }, "geometry": { "type": "Point", "coordinates": [ -79.926727294175407, 40.442722091229648 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 292, "OBJECTID": 292, "Muni": 188, "LocName": "SCHENLEY PRK GOLF COURSE LOUNGE", "Prefix": " ", "House": " ", "Fraction": " ", "Street": "FORBES & SCHENLEY DRIVE", "Suffix1": " ", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15217", "Leadman": "02", "MuniName": "PITTSBURGH", "MWD": "1881408", "MWD2": 1881408, "NewAddress": " FORBES & SCHENLEY DRIVE" }, "geometry": { "type": "Point", "coordinates": [ -79.934611672194222, 40.43837415851781 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 293, "OBJECTID": 293, "Muni": 188, "LocName": "LINDEN SCHOOL RIGHT SIDE GYM", "Prefix": "S", "House": "725", "Fraction": " ", "Street": "LINDEN", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15208-2814", "Leadman": "08", "MuniName": "PITTSBURGH", "MWD": "1881409", "MWD2": 1881409, "NewAddress": "725 LINDEN AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.916031709980274, 40.445448229762675 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 294, "OBJECTID": 294, "Muni": 188, "LocName": "LINDEN SCHOOL LEFT SIDE GYM", "Prefix": "S", "House": "725", "Fraction": " ", "Street": "LINDEN", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15208-2814", "Leadman": "08", "MuniName": "PITTSBURGH", "MWD": "1881411", "MWD2": 1881411, "NewAddress": "725 LINDEN AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.916031709980274, 40.445448229762675 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 295, "OBJECTID": 295, "Muni": 188, "LocName": "REGENT SQUARE SCHOOL GYM", "Prefix": " ", "House": "829", "Fraction": " ", "Street": "MILTON", "Suffix1": "ST", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15218-1005", "Leadman": "08", "MuniName": "PITTSBURGH", "MWD": "1881418", "MWD2": 1881418, "NewAddress": "829 MILTON ST" }, "geometry": { "type": "Point", "coordinates": [ -79.896940227085253, 40.436013719510385 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 296, "OBJECTID": 296, "Muni": 188, "LocName": "BROOKLINE U.P. CHURCH HALL", "Prefix": " ", "House": "1036", "Fraction": " ", "Street": "BROOKLINE", "Suffix1": "BLVD", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15226-2148", "Leadman": "12", "MuniName": "PITTSBURGH", "MWD": "1881926", "MWD2": 1881926, "NewAddress": "1036 BROOKLINE BLVD" }, "geometry": { "type": "Point", "coordinates": [ -80.016629989256032, 40.391636223649542 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 297, "OBJECTID": 297, "Muni": 188, "LocName": "REGENT SQUARE SCH.", "Prefix": " ", "House": "829", "Fraction": " ", "Street": "MILTON", "Suffix1": "ST", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15218-1005", "Leadman": "08", "MuniName": "PITTSBURGH", "MWD": "1881419", "MWD2": 1881419, "NewAddress": "829 MILTON ST" }, "geometry": { "type": "Point", "coordinates": [ -79.896940227085253, 40.436013719510385 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 298, "OBJECTID": 298, "Muni": 188, "LocName": "MAXON TOWERS", "Prefix": " ", "House": "6315", "Fraction": " ", "Street": "FORBES", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15217-1601", "Leadman": "08", "MuniName": "PITTSBURGH", "MWD": "1881420", "MWD2": 1881420, "NewAddress": "6315 FORBES AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.918102730051572, 40.438317755805024 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 299, "OBJECTID": 299, "Muni": 188, "LocName": "CARNEGIE LIBRARY OF PGH MEETING RM", "Prefix": " ", "House": "5801", "Fraction": " ", "Street": "FORBES", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15217", "Leadman": "08", "MuniName": "PITTSBURGH", "MWD": "1881434", "MWD2": 1881434, "NewAddress": "5801 FORBES AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.922597053227491, 40.438577454935789 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 300, "OBJECTID": 300, "Muni": 188, "LocName": "MAGEE CENTER", "Prefix": " ", "House": "745", "Fraction": " ", "Street": "GREENFIELD", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15217", "Leadman": "09", "MuniName": "PITTSBURGH", "MWD": "1881506", "MWD2": 1881506, "NewAddress": "745 GREENFIELD AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.936773599640802, 40.424526795262295 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 301, "OBJECTID": 301, "Muni": 188, "LocName": "#12 ENGINE HOUSE", "Prefix": " ", "House": "4156", "Fraction": " ", "Street": "WINTERBURN", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15207-1239", "Leadman": "09", "MuniName": "PITTSBURGH", "MWD": "1881507", "MWD2": 1881507, "NewAddress": "4156 WINTERBURN AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.940174005524568, 40.423449897116924 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 302, "OBJECTID": 302, "Muni": 188, "LocName": "SQUIRREL HILL CHRISTIAN CH.", "Prefix": " ", "House": "290", "Fraction": " ", "Street": "BIGELOW", "Suffix1": "ST", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15207-1452", "Leadman": "09", "MuniName": "PITTSBURGH", "MWD": "1881511", "MWD2": 1881511, "NewAddress": "290 BIGELOW ST" }, "geometry": { "type": "Point", "coordinates": [ -79.944669041692904, 40.420422363710493 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 303, "OBJECTID": 303, "Muni": 188, "LocName": "YMCA", "Prefix": " ", "House": "4713", "Fraction": " ", "Street": "CHATSWORTH", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15207", "Leadman": "09", "MuniName": "PITTSBURGH", "MWD": "1881512", "MWD2": 1881512, "NewAddress": "4713 CHATSWORTH AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.944062290931726, 40.413108842136786 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 304, "OBJECTID": 304, "Muni": 188, "LocName": "ENGINE HOUSE", "Prefix": " ", "House": "200", "Fraction": " ", "Street": "FLOWERS", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15207-1608", "Leadman": "09", "MuniName": "PITTSBURGH", "MWD": "1881513", "MWD2": 1881513, "NewAddress": "200 FLOWERS AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.942315138616451, 40.410138105073763 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 305, "OBJECTID": 305, "Muni": 188, "LocName": "ST. STEPHENS SCHOOL", "Prefix": "E", "House": "134", "Fraction": " ", "Street": "ELIZABETH", "Suffix1": "ST", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15207-1816", "Leadman": "09", "MuniName": "PITTSBURGH", "MWD": "1881515", "MWD2": 1881515, "NewAddress": "134 ELIZABETH ST" }, "geometry": { "type": "Point", "coordinates": [ -79.94191330474132, 40.407082676423144 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 306, "OBJECTID": 306, "Muni": 188, "LocName": "Engine Company No. 13", "Prefix": " ", "House": "200", "Fraction": " ", "Street": "FLOWERS", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15207-1608", "Leadman": "09", "MuniName": "PITTSBURGH", "MWD": "1881516", "MWD2": 1881516, "NewAddress": "200 FLOWERS AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.942315138616451, 40.410138105073763 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 307, "OBJECTID": 307, "Muni": 188, "LocName": "SO. VO. TECH (ANNEX BLDG) ROOM 104", "Prefix": "S", "House": "93", "Fraction": " ", "Street": "10TH", "Suffix1": "ST", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15203-1033", "Leadman": "10", "MuniName": "PITTSBURGH", "MWD": "1881701", "MWD2": 1881701, "NewAddress": "93 10TH ST" }, "geometry": { "type": "Point", "coordinates": [ -79.988282529820481, 40.42812285019707 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 308, "OBJECTID": 308, "Muni": 188, "LocName": "SOUTHSIDE PRESBYTERIAN CHURCH 1ST FL", "Prefix": " ", "House": "1924", "Fraction": " ", "Street": "SARAH", "Suffix1": "ST", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15203", "Leadman": "10", "MuniName": "PITTSBURGH", "MWD": "1881704", "MWD2": 1881704, "NewAddress": "1924 SARAH ST" }, "geometry": { "type": "Point", "coordinates": [ -79.97803868279739, 40.427451820101702 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 309, "OBJECTID": 309, "Muni": 188, "LocName": "SOUTHSIDE PRESBYTERIAN CHURCH 1ST FL", "Prefix": " ", "House": "1926", "Fraction": " ", "Street": "SARAH", "Suffix1": "ST", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15203", "Leadman": "10", "MuniName": "PITTSBURGH", "MWD": "1881705", "MWD2": 1881705, "NewAddress": "1926 SARAH ST" }, "geometry": { "type": "Point", "coordinates": [ -79.97803868279739, 40.427451820101702 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 310, "OBJECTID": 310, "Muni": 188, "LocName": "ST PAUL CROSS RETREAT CENTER", "Prefix": " ", "House": "1905", "Fraction": " ", "Street": "MONASTERY", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15203", "Leadman": "10", "MuniName": "PITTSBURGH", "MWD": "1881707", "MWD2": 1881707, "NewAddress": "1905 MONASTERY AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.984221562536447, 40.42304052949136 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 311, "OBJECTID": 311, "Muni": 188, "LocName": "BON AIR SCHOOL MULTI PURPOSE ROOM", "Prefix": " ", "House": "252", "Fraction": " ", "Street": "FORDYCE", "Suffix1": "ST", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15210-3269", "Leadman": "11", "MuniName": "PITTSBURGH", "MWD": "1881801", "MWD2": 1881801, "NewAddress": "252 FORDYCE ST" }, "geometry": { "type": "Point", "coordinates": [ -80.000799518460411, 40.408168348529543 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 312, "OBJECTID": 312, "Muni": 188, "LocName": "MCKINLEY PARK REC CENTER", "Prefix": " ", "House": "150", "Fraction": " ", "Street": "AMESBURY", "Suffix1": "ST", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15241-2306", "Leadman": "11", "MuniName": "PITTSBURGH", "MWD": "1881804", "MWD2": 1881804, "NewAddress": "150 AMESBURY ST" }, "geometry": { "type": "Point", "coordinates": [ -80.004202681979365, 40.413840196840539 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 313, "OBJECTID": 313, "Muni": 188, "LocName": "WARRINGTON REC. CENTER", "Prefix": "E", "House": "329", "Fraction": " ", "Street": "WARRINGTON", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15210-1272", "Leadman": "11", "MuniName": "PITTSBURGH", "MWD": "1881806", "MWD2": 1881806, "NewAddress": "329 WARRINGTON AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.000961389650669, 40.421351232770924 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 314, "OBJECTID": 314, "Muni": 188, "LocName": "WARRINGTON REC. CENTER", "Prefix": "E", "House": "329", "Fraction": " ", "Street": "WARRINGTON", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15210-1272", "Leadman": "11", "MuniName": "PITTSBURGH", "MWD": "1881807", "MWD2": 1881807, "NewAddress": "329 WARRINGTON AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.0009487932507, 40.421268713172559 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 315, "OBJECTID": 315, "Muni": 188, "LocName": "CALIGUIRI PLAZA COM ROOM", "Prefix": "E", "House": "803", "Fraction": " ", "Street": "WARRINGTON", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15203-1410", "Leadman": "11", "MuniName": "PITTSBURGH", "MWD": "1881810", "MWD2": 1881810, "NewAddress": "803 WARRINGTON AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.993600904052784, 40.422118277471348 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 316, "OBJECTID": 316, "Muni": 188, "LocName": "SWEETBRIAR PLACE APTS", "Prefix": " ", "House": "211", "Fraction": " ", "Street": "SWEETBRIAR", "Suffix1": " ", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15211", "Leadman": "12", "MuniName": "PITTSBURGH", "MWD": "1881901", "MWD2": 1881901, "NewAddress": "211 SWEETBRIAR" }, "geometry": { "type": "Point", "coordinates": [ -80.021518041992948, 40.437837153382773 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 317, "OBJECTID": 317, "Muni": 188, "LocName": "WHITTIER SCHOOL RM. B-2", "Prefix": " ", "House": "150", "Fraction": " ", "Street": "MERIDAN", "Suffix1": "ST", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15211-1300", "Leadman": "12", "MuniName": "PITTSBURGH", "MWD": "1881903", "MWD2": 1881903, "NewAddress": "150 MERIDAN ST" }, "geometry": { "type": "Point", "coordinates": [ -80.019276214799589, 40.435700599370222 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 318, "OBJECTID": 318, "Muni": 188, "LocName": "WHITTIER SCHOOL-ROOM B-2", "Prefix": " ", "House": "150", "Fraction": " ", "Street": "MERIDAN", "Suffix1": "ST", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15211-1300", "Leadman": "12", "MuniName": "PITTSBURGH", "MWD": "1881904", "MWD2": 1881904, "NewAddress": "150 MERIDAN ST" }, "geometry": { "type": "Point", "coordinates": [ -80.019276214799589, 40.435700599370222 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 319, "OBJECTID": 319, "Muni": 188, "LocName": "MT WASHINGTON SR COM CTR 1ST FL", "Prefix": " ", "House": "122", "Fraction": " ", "Street": "VIRGINIA", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15222", "Leadman": "12", "MuniName": "PITTSBURGH", "MWD": "1881907", "MWD2": 1881907, "NewAddress": "122 VIRGINIA AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.007941086311007, 40.430158193237972 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 320, "OBJECTID": 320, "Muni": 188, "LocName": "REAM REC. BLDG.", "Prefix": " ", "House": "321", "Fraction": " ", "Street": "MERRIMAC", "Suffix1": "ST", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15211-1413", "Leadman": "12", "MuniName": "PITTSBURGH", "MWD": "1881908", "MWD2": 1881908, "NewAddress": "321 MERRIMAC ST" }, "geometry": { "type": "Point", "coordinates": [ -80.013095904909548, 40.430833998272483 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 321, "OBJECTID": 321, "Muni": 188, "LocName": "JUSTIN", "Prefix": " ", "House": "215", "Fraction": " ", "Street": "LELIA", "Suffix1": "ST", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15211-2359", "Leadman": "11", "MuniName": "PITTSBURGH", "MWD": "1881911", "MWD2": 1881911, "NewAddress": "215 LELIA ST" }, "geometry": { "type": "Point", "coordinates": [ -80.009362089206377, 40.421914528742569 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 322, "OBJECTID": 322, "Muni": 188, "LocName": "JUSTINS", "Prefix": " ", "House": "215", "Fraction": " ", "Street": "LELIA", "Suffix1": "ST", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15211-2338", "Leadman": "11", "MuniName": "PITTSBURGH", "MWD": "1881914", "MWD2": 1881914, "NewAddress": "215 LELIA ST" }, "geometry": { "type": "Point", "coordinates": [ -80.009229645062348, 40.421899682275559 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 323, "OBJECTID": 323, "Muni": 188, "LocName": "BEECHWOOD SCHOOL", "Prefix": " ", "House": "810", "Fraction": " ", "Street": "ROCKLAND", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15216-3811", "Leadman": "12", "MuniName": "PITTSBURGH", "MWD": "1881915", "MWD2": 1881915, "NewAddress": "810 ROCKLAND AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.02074403549112, 40.414575538539758 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 324, "OBJECTID": 324, "Muni": 188, "LocName": "ENGINE HOUSE", "Prefix": " ", "House": "1428", "Fraction": " ", "Street": "BEECHVIEW", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15216-3334", "Leadman": "12", "MuniName": "PITTSBURGH", "MWD": "1881916", "MWD2": 1881916, "NewAddress": "1428 BEECHVIEW AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.025161190678602, 40.413135618293595 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 325, "OBJECTID": 325, "Muni": 188, "LocName": "BETHANY CENTER MULTI-PURPOSE RM", "Prefix": " ", "House": "7745", "Fraction": " ", "Street": "TIOGA", "Suffix1": "ST", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15208-2263", "Leadman": "07", "MuniName": "PITTSBURGH", "MWD": "1881314", "MWD2": 1881314, "NewAddress": "7745 TIOGA ST" }, "geometry": { "type": "Point", "coordinates": [ -79.888199468474994, 40.450674091874063 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 326, "OBJECTID": 326, "Muni": 188, "LocName": "SALVATION ARMY", "Prefix": " ", "House": "8020", "Fraction": " ", "Street": "FRANKSTOWN", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15221-1330", "Leadman": "07", "MuniName": "PITTSBURGH", "MWD": "1881315", "MWD2": 1881315, "NewAddress": "8020 FRANKSTOWN AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.883816451915607, 40.455339643042343 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 327, "OBJECTID": 327, "Muni": 188, "LocName": "EAST HILLS ELEM SCHOOL LOBBY", "Prefix": "E", "House": "2150", "Fraction": " ", "Street": "HILLS", "Suffix1": "DR", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15221-1009", "Leadman": "07", "MuniName": "PITTSBURGH", "MWD": "1881317", "MWD2": 1881317, "NewAddress": "2150 HILLS DR" }, "geometry": { "type": "Point", "coordinates": [ -79.872798665930432, 40.4530962087983 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 328, "OBJECTID": 328, "Muni": 188, "LocName": "EAST HILLS ELEM SCH LOBBY", "Prefix": "E", "House": "2150", "Fraction": " ", "Street": "HILLS", "Suffix1": "DR", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15221-1009", "Leadman": "07", "MuniName": "PITTSBURGH", "MWD": "1881318", "MWD2": 1881318, "NewAddress": "2150 HILLS DR" }, "geometry": { "type": "Point", "coordinates": [ -79.872284494793163, 40.452845885771062 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 329, "OBJECTID": 329, "Muni": 188, "LocName": "EAST HILLS ELEM SCHOOL LOBBY", "Prefix": "E", "House": "2150", "Fraction": " ", "Street": "HILLS", "Suffix1": "DR", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15221-1009", "Leadman": "07", "MuniName": "PITTSBURGH", "MWD": "1881319", "MWD2": 1881319, "NewAddress": "2150 HILLS DR" }, "geometry": { "type": "Point", "coordinates": [ -79.872595553138623, 40.453365477727274 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 330, "OBJECTID": 330, "Muni": 188, "LocName": "WQED FM ENT OFF 5TH HILLMAN CONF RM", "Prefix": " ", "House": "4802", "Fraction": " ", "Street": "5TH", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15213-2918", "Leadman": "05", "MuniName": "PITTSBURGH", "MWD": "1881401", "MWD2": 1881401, "NewAddress": "4802 5TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.944747565448125, 40.446988932917272 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 331, "OBJECTID": 331, "Muni": 188, "LocName": "CENTRAL CATHOLIC SCHOOL GYM", "Prefix": " ", "House": "4720", "Fraction": " ", "Street": "5TH", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15213-2916", "Leadman": "02", "MuniName": "PITTSBURGH", "MWD": "1881402", "MWD2": 1881402, "NewAddress": "4720 5TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.945902829548146, 40.446855290661084 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 332, "OBJECTID": 332, "Muni": 188, "LocName": "CHATHAM COLLEGE CHAPEL", "Prefix": " ", "House": "106", "Fraction": " ", "Street": "WOODLAND", "Suffix1": "RD", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15238-1636", "Leadman": "05", "MuniName": "PITTSBURGH", "MWD": "1881403", "MWD2": 1881403, "NewAddress": "106 WOODLAND RD" }, "geometry": { "type": "Point", "coordinates": [ -79.923865754600612, 40.447184286595288 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 333, "OBJECTID": 333, "Muni": 188, "LocName": "CHATHAM COLLEGE CHAPEL", "Prefix": " ", "House": "106", "Fraction": " ", "Street": "WOODLAND", "Suffix1": "RD", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15238-1636", "Leadman": "05", "MuniName": "PITTSBURGH", "MWD": "1881406", "MWD2": 1881406, "NewAddress": "106 WOODLAND RD" }, "geometry": { "type": "Point", "coordinates": [ -79.924015860632196, 40.447083838693985 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 334, "OBJECTID": 334, "Muni": 188, "LocName": "ST. BEDES PARISH", "Prefix": "S", "House": "509", "Fraction": " ", "Street": "DALLAS", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15208-2823", "Leadman": "08", "MuniName": "PITTSBURGH", "MWD": "1881410", "MWD2": 1881410, "NewAddress": "509 DALLAS AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.910431956601343, 40.447281626101329 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 335, "OBJECTID": 335, "Muni": 188, "LocName": "ST PAUL BAPTIST CHURCH LOWER LEVEL", "Prefix": " ", "House": "6701", "Fraction": " ", "Street": "PENN", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15208-2322", "Leadman": "08", "MuniName": "PITTSBURGH", "MWD": "1881412", "MWD2": 1881412, "NewAddress": "6701 PENN AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.91167796447192, 40.453940646665032 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 336, "OBJECTID": 336, "Muni": 188, "LocName": "WESTINGHOUSE PARK BLDG.", "Prefix": " ", "House": " ", "Fraction": " ", "Street": "MURTLAND & THOMAS", "Suffix1": " ", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15208", "Leadman": "08", "MuniName": "PITTSBURGH", "MWD": "1881413", "MWD2": 1881413, "NewAddress": " MURTLAND & THOMAS" }, "geometry": { "type": "Point", "coordinates": [ -79.902830842323127, 40.452524468631154 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 337, "OBJECTID": 337, "Muni": 188, "LocName": "ST BEDES PARISH", "Prefix": "S", "House": "509", "Fraction": " ", "Street": "DALLAS", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15208-2823", "Leadman": "08", "MuniName": "PITTSBURGH", "MWD": "1881414", "MWD2": 1881414, "NewAddress": "509 DALLAS AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.910076215601464, 40.447270759329854 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 338, "OBJECTID": 338, "Muni": 188, "LocName": "PARK PLACE SCHOOL", "Prefix": "S", "House": "309", "Fraction": " ", "Street": "BRADDOCK", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15221-2704", "Leadman": "08", "MuniName": "PITTSBURGH", "MWD": "1881415", "MWD2": 1881415, "NewAddress": "309 BRADDOCK AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.895835845888598, 40.444854428298953 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 339, "OBJECTID": 339, "Muni": 188, "LocName": "ST. BEDES", "Prefix": "S", "House": "509", "Fraction": " ", "Street": "DALLAS", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15208-2823", "Leadman": "08", "MuniName": "PITTSBURGH", "MWD": "1881416", "MWD2": 1881416, "NewAddress": "509 DALLAS AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.910180015427187, 40.447111167612846 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 340, "OBJECTID": 340, "Muni": 188, "LocName": "ST. BEDES SCHOOL", "Prefix": "S", "House": "509", "Fraction": " ", "Street": "DALLAS", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15208-2823", "Leadman": "08", "MuniName": "PITTSBURGH", "MWD": "1881417", "MWD2": 1881417, "NewAddress": "509 DALLAS AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.910171799930197, 40.447391590103379 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 341, "OBJECTID": 341, "Muni": 188, "LocName": "ENGINE HOUSE", "Prefix": " ", "House": "5858", "Fraction": " ", "Street": "NORTHUMBERLAND", "Suffix1": "ST", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15217-1253", "Leadman": "08", "MuniName": "PITTSBURGH", "MWD": "1881421", "MWD2": 1881421, "NewAddress": "5858 NORTHUMBERLAND ST" }, "geometry": { "type": "Point", "coordinates": [ -79.921123327093042, 40.44152589070719 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 342, "OBJECTID": 342, "Muni": 188, "LocName": "ENGINE HOUSE", "Prefix": " ", "House": "5868", "Fraction": " ", "Street": "NORTHUMBERLAND", "Suffix1": "ST", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15217-1253", "Leadman": "08", "MuniName": "PITTSBURGH", "MWD": "1881422", "MWD2": 1881422, "NewAddress": "5868 NORTHUMBERLAND ST" }, "geometry": { "type": "Point", "coordinates": [ -79.921070651004428, 40.441439730286298 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 343, "OBJECTID": 343, "Muni": 188, "LocName": "COLFAX SCHOOL MULTI MEDIA RM", "Prefix": " ", "House": "2315", "Fraction": " ", "Street": "BEECHWOOD", "Suffix1": "BLVD", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15217-1817", "Leadman": "08", "MuniName": "PITTSBURGH", "MWD": "1881423", "MWD2": 1881423, "NewAddress": "2315 BEECHWOOD BLVD" }, "geometry": { "type": "Point", "coordinates": [ -79.915163548791355, 40.433377886448717 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 344, "OBJECTID": 344, "Muni": 188, "LocName": "COLFAX SCHOOL CAFETERIA", "Prefix": " ", "House": "2315", "Fraction": " ", "Street": "BEECHWOOD", "Suffix1": "BLVD", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15217-1817", "Leadman": "08", "MuniName": "PITTSBURGH", "MWD": "1881424", "MWD2": 1881424, "NewAddress": "2315 BEECHWOOD BLVD" }, "geometry": { "type": "Point", "coordinates": [ -79.914931765379137, 40.4333822294425 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 345, "OBJECTID": 345, "Muni": 188, "LocName": "COLFAX SCHOOL CAFETERIA", "Prefix": " ", "House": "2315", "Fraction": " ", "Street": "BEECHWOOD", "Suffix1": "BLVD", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15217-1817", "Leadman": "08", "MuniName": "PITTSBURGH", "MWD": "1881425", "MWD2": 1881425, "NewAddress": "2315 BEECHWOOD BLVD" }, "geometry": { "type": "Point", "coordinates": [ -79.915363947076813, 40.432951530744312 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 346, "OBJECTID": 346, "Muni": 188, "LocName": "COLFAX SCHOOL CAFETERIA", "Prefix": " ", "House": "2315", "Fraction": " ", "Street": "BEECHWOOD", "Suffix1": "BLVD", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15217-1817", "Leadman": "08", "MuniName": "PITTSBURGH", "MWD": "1881426", "MWD2": 1881426, "NewAddress": "2315 BEECHWOOD BLVD" }, "geometry": { "type": "Point", "coordinates": [ -79.915527958894174, 40.433336977031679 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 347, "OBJECTID": 347, "Muni": 188, "LocName": "SWISSHELM PK. COMM. CENTER", "Prefix": " ", "House": "1050", "Fraction": " ", "Street": "WINDERMERE", "Suffix1": "DR", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15218-1142", "Leadman": "08", "MuniName": "PITTSBURGH", "MWD": "1881427", "MWD2": 1881427, "NewAddress": "1050 WINDERMERE DR" }, "geometry": { "type": "Point", "coordinates": [ -79.901325702502646, 40.424451975306837 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 348, "OBJECTID": 348, "Muni": 188, "LocName": "SWISSHELM PK. COMM. CENTER", "Prefix": " ", "House": "1050", "Fraction": " ", "Street": "WINDERMERE", "Suffix1": "DR", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15218-1142", "Leadman": "08", "MuniName": "PITTSBURGH", "MWD": "1881428", "MWD2": 1881428, "NewAddress": "1050 WINDERMERE DR" }, "geometry": { "type": "Point", "coordinates": [ -79.90141777151797, 40.424556233208413 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 349, "OBJECTID": 349, "Muni": 188, "LocName": "MINADEO SCHOOL-AUDITORIUM", "Prefix": " ", "House": "6502", "Fraction": " ", "Street": "LILAC", "Suffix1": "ST", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15217-3034", "Leadman": "09", "MuniName": "PITTSBURGH", "MWD": "1881429", "MWD2": 1881429, "NewAddress": "6502 LILAC ST" }, "geometry": { "type": "Point", "coordinates": [ -79.924440796920706, 40.423572224740994 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 350, "OBJECTID": 350, "Muni": 188, "LocName": "MINADEO SCHOOL-FOYER", "Prefix": " ", "House": "6502", "Fraction": " ", "Street": "LILAC", "Suffix1": "ST", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15217-3034", "Leadman": "09", "MuniName": "PITTSBURGH", "MWD": "1881430", "MWD2": 1881430, "NewAddress": "6502 LILAC ST" }, "geometry": { "type": "Point", "coordinates": [ -79.924298739666568, 40.42366496396729 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 351, "OBJECTID": 351, "Muni": 188, "LocName": "MINADEO SCHOOL-FOYER", "Prefix": " ", "House": "6502", "Fraction": " ", "Street": "LILAC", "Suffix1": "ST", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15217-3034", "Leadman": "09", "MuniName": "PITTSBURGH", "MWD": "1881431", "MWD2": 1881431, "NewAddress": "6502 LILAC ST" }, "geometry": { "type": "Point", "coordinates": [ -79.924558917527662, 40.423486863518335 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 352, "OBJECTID": 352, "Muni": 188, "LocName": "TOWERS APT.-REC. RM.", "Prefix": " ", "House": "2825", "Fraction": " ", "Street": "MURRAY", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15217-2772", "Leadman": "09", "MuniName": "PITTSBURGH", "MWD": "1881432", "MWD2": 1881432, "NewAddress": "2825 MURRAY AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.925685448786453, 40.42761898310409 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 353, "OBJECTID": 353, "Muni": 188, "LocName": "FORWARD SHADY APTS.", "Prefix": " ", "House": "5841", "Fraction": " ", "Street": "FORWARD", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15217-2317", "Leadman": "08", "MuniName": "PITTSBURGH", "MWD": "1881433", "MWD2": 1881433, "NewAddress": "5841 FORWARD AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.921626699598079, 40.429540200743823 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 354, "OBJECTID": 354, "Muni": 188, "LocName": "JEWISH COMMUNITY CENTER PALM ROOM", "Prefix": " ", "House": "5738", "Fraction": " ", "Street": "FORBES", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15217-1563", "Leadman": "08", "MuniName": "PITTSBURGH", "MWD": "1881435", "MWD2": 1881435, "NewAddress": "5738 FORBES AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.923822321793978, 40.437740371510905 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 355, "OBJECTID": 355, "Muni": 188, "LocName": "SHAARE TORAH SYNAGOGUE", "Prefix": " ", "House": "2319", "Fraction": " ", "Street": "MURRAY", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15217-2303", "Leadman": "08", "MuniName": "PITTSBURGH", "MWD": "1881436", "MWD2": 1881436, "NewAddress": "2319 MURRAY AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.923056332245082, 40.431421318947542 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 356, "OBJECTID": 356, "Muni": 188, "LocName": "JCC ROBINSON BUILDING GYM", "Prefix": " ", "House": "5738", "Fraction": " ", "Street": "FORBES", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15217-2303", "Leadman": "08", "MuniName": "PITTSBURGH", "MWD": "1881437", "MWD2": 1881437, "NewAddress": "5738 FORBES AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.923081328398752, 40.431240244978468 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 357, "OBJECTID": 357, "Muni": 188, "LocName": "JEWISH COMM. CNT. PALM CT.", "Prefix": " ", "House": "5738", "Fraction": " ", "Street": "FORBES", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15217-1563", "Leadman": "08", "MuniName": "PITTSBURGH", "MWD": "1881438", "MWD2": 1881438, "NewAddress": "5738 FORBES AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.924036123780439, 40.437780920261162 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 358, "OBJECTID": 358, "Muni": 188, "LocName": "JCC ROBINSON BUILDING GYM", "Prefix": " ", "House": "5738", "Fraction": " ", "Street": "FORBES", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15217-1563", "Leadman": "08", "MuniName": "PITTSBURGH", "MWD": "1881439", "MWD2": 1881439, "NewAddress": "5738 FORBES AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.923846433540717, 40.437500594291656 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 359, "OBJECTID": 359, "Muni": 188, "LocName": "JCC ROBINSON BUILDING GYM", "Prefix": " ", "House": "5738", "Fraction": " ", "Street": "FORBES", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15217-1563", "Leadman": "08", "MuniName": "PITTSBURGH", "MWD": "1881440", "MWD2": 1881440, "NewAddress": "5738 FORBES AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.923884308822892, 40.437853815624898 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 360, "OBJECTID": 360, "Muni": 188, "LocName": "INTERNATIONAL UNION OF OPER ENG #95", "Prefix": " ", "House": "300", "Fraction": " ", "Street": "SALINE", "Suffix1": "ST", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15207-1032", "Leadman": "09", "MuniName": "PITTSBURGH", "MWD": "1881441", "MWD2": 1881441, "NewAddress": "300 SALINE ST" }, "geometry": { "type": "Point", "coordinates": [ -79.948781056456227, 40.426928474704582 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 361, "OBJECTID": 361, "Muni": 188, "LocName": "NEW LIFE CHURCH OF GOD INC", "Prefix": " ", "House": "1120", "Fraction": " ", "Street": "GREENFIELD", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15217-2622", "Leadman": "09", "MuniName": "PITTSBURGH", "MWD": "1881501", "MWD2": 1881501, "NewAddress": "1120 GREENFIELD AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.929847816298704, 40.421011325444681 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 362, "OBJECTID": 362, "Muni": 188, "LocName": "NEW LIFE CHURCH OF GOD INC", "Prefix": " ", "House": "1120", "Fraction": " ", "Street": "GREENFIELD", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15217-2622", "Leadman": "09", "MuniName": "PITTSBURGH", "MWD": "1881502", "MWD2": 1881502, "NewAddress": "1120 GREENFIELD AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.929679003892744, 40.420990971029767 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 363, "OBJECTID": 363, "Muni": 188, "LocName": "NEW LIFE CHURCH OF GOD INC", "Prefix": " ", "House": "1120", "Fraction": " ", "Street": "GREENFIELD", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15217-2956", "Leadman": "09", "MuniName": "PITTSBURGH", "MWD": "1881503", "MWD2": 1881503, "NewAddress": "1120 GREENFIELD AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.929733978101993, 40.421050120579359 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 364, "OBJECTID": 364, "Muni": 188, "LocName": "MAGEE CENTER-2ND FLOOR KITCHEN", "Prefix": " ", "House": "745", "Fraction": " ", "Street": "GREENFIELD", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15217-2617", "Leadman": "09", "MuniName": "PITTSBURGH", "MWD": "1881504", "MWD2": 1881504, "NewAddress": "745 GREENFIELD AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.936886895467694, 40.424435812730721 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 365, "OBJECTID": 365, "Muni": 188, "LocName": "MAGEE CENTER-2ND FLOOR KITCHEN", "Prefix": " ", "House": "745", "Fraction": " ", "Street": "GREENFIELD", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15217-2617", "Leadman": "09", "MuniName": "PITTSBURGH", "MWD": "1881505", "MWD2": 1881505, "NewAddress": "745 GREENFIELD AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.936714661190919, 40.424423622954642 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 366, "OBJECTID": 366, "Muni": 188, "LocName": "ST. ROSALIA SCHOOL", "Prefix": " ", "House": "411", "Fraction": " ", "Street": "GREENFIELD", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15207-1049", "Leadman": "09", "MuniName": "PITTSBURGH", "MWD": "1881508", "MWD2": 1881508, "NewAddress": "411 GREENFIELD AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.942810654470492, 40.425650944466732 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 367, "OBJECTID": 367, "Muni": 188, "LocName": "INTERNATIONAL UNION OF OPER ENG #95", "Prefix": " ", "House": "300", "Fraction": " ", "Street": "SALINE", "Suffix1": "ST", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15207-1032", "Leadman": "09", "MuniName": "PITTSBURGH", "MWD": "1881509", "MWD2": 1881509, "NewAddress": "300 SALINE ST" }, "geometry": { "type": "Point", "coordinates": [ -79.948821191453121, 40.426882044935269 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 368, "OBJECTID": 368, "Muni": 188, "LocName": "ST ROSALIA SCHOOL", "Prefix": " ", "House": "411", "Fraction": " ", "Street": "GREENFIELD", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15207-1049", "Leadman": "09", "MuniName": "PITTSBURGH", "MWD": "1881510", "MWD2": 1881510, "NewAddress": "411 GREENFIELD AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.943010443457695, 40.425575262189447 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 369, "OBJECTID": 369, "Muni": 188, "LocName": "HAZELWOOD SR COM CTR 1ST FL", "Prefix": " ", "House": "5344", "Fraction": " ", "Street": "2ND", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15207-1749", "Leadman": "09", "MuniName": "PITTSBURGH", "MWD": "1881514", "MWD2": 1881514, "NewAddress": "5344 2ND AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.942046993509422, 40.403132855897539 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 370, "OBJECTID": 370, "Muni": 188, "LocName": "YWCA OUTREACH PROGRAM", "Prefix": " ", "House": "4713", "Fraction": " ", "Street": "CHATSWORTH", "Suffix1": "ST", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15207-1515", "Leadman": "09", "MuniName": "PITTSBURGH", "MWD": "1881517", "MWD2": 1881517, "NewAddress": "4713 CHATSWORTH ST" }, "geometry": { "type": "Point", "coordinates": [ -79.94400425224255, 40.412991984642886 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 371, "OBJECTID": 371, "Muni": 188, "LocName": "CHURCH OF GOOD SHEPARDS", "Prefix": " ", "House": " ", "Fraction": " ", "Street": "SECOND & JOHNSTON", "Suffix1": " ", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15207", "Leadman": "09", "MuniName": "PITTSBURGH", "MWD": "1881518", "MWD2": 1881518, "NewAddress": " SECOND & JOHNSTON" }, "geometry": { "type": "Point", "coordinates": [ -79.942707024948703, 40.405980768557292 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 372, "OBJECTID": 372, "Muni": 188, "LocName": "ADMINISTRATION BLDG.", "Prefix": " ", "House": "895", "Fraction": " ", "Street": "JOHNSTON", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15207-1307", "Leadman": "09", "MuniName": "PITTSBURGH", "MWD": "1881519", "MWD2": 1881519, "NewAddress": "895 JOHNSTON AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.92806213953908, 40.406802915369994 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 373, "OBJECTID": 373, "Muni": 188, "LocName": "MORSE HI RISE-COMMUNITY ROOM", "Prefix": " ", "House": "2416", "Fraction": " ", "Street": "SARAH", "Suffix1": "ST", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15203-2271", "Leadman": "10", "MuniName": "PITTSBURGH", "MWD": "1881601", "MWD2": 1881601, "NewAddress": "2416 SARAH ST" }, "geometry": { "type": "Point", "coordinates": [ -79.971150214356683, 40.426994682491504 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 374, "OBJECTID": 374, "Muni": 188, "LocName": "MORSE HI RISE COMM RM 24TH ST ENT", "Prefix": " ", "House": "2416", "Fraction": " ", "Street": "SARAH", "Suffix1": "ST", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15203-2271", "Leadman": "10", "MuniName": "PITTSBURGH", "MWD": "1881602", "MWD2": 1881602, "NewAddress": "2416 SARAH ST" }, "geometry": { "type": "Point", "coordinates": [ -79.970854708024135, 40.426933079569721 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 375, "OBJECTID": 375, "Muni": 188, "LocName": "HOT METAL BRIDGE FAITH COMMUNITY", "Prefix": " ", "House": "2700", "Fraction": " ", "Street": "SARAH", "Suffix1": "ST", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15203-2112", "Leadman": "10", "MuniName": "PITTSBURGH", "MWD": "1881603", "MWD2": 1881603, "NewAddress": "2700 SARAH ST" }, "geometry": { "type": "Point", "coordinates": [ -79.967437710439867, 40.426118531014119 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 376, "OBJECTID": 376, "Muni": 188, "LocName": "ARLINGTON GYM-1ST FLOOR", "Prefix": " ", "House": "2201", "Fraction": " ", "Street": "SALISBURY", "Suffix1": "ST", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15210-1845", "Leadman": "10", "MuniName": "PITTSBURGH", "MWD": "1881604", "MWD2": 1881604, "NewAddress": "2201 SALISBURY ST" }, "geometry": { "type": "Point", "coordinates": [ -79.975355241723449, 40.419178341263525 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 377, "OBJECTID": 377, "Muni": 188, "LocName": "ARLINGTON GYM", "Prefix": " ", "House": "2201", "Fraction": " ", "Street": "SALISBURY", "Suffix1": "ST", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15203-2422", "Leadman": "10", "MuniName": "PITTSBURGH", "MWD": "1881605", "MWD2": 1881605, "NewAddress": "2201 SALISBURY ST" }, "geometry": { "type": "Point", "coordinates": [ -79.975386142025613, 40.419289983551607 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 378, "OBJECTID": 378, "Muni": 188, "LocName": "KORBETT GARAGE", "Prefix": " ", "House": "2626", "Fraction": " ", "Street": "SALISBURY", "Suffix1": "ST", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15210-1854", "Leadman": "10", "MuniName": "PITTSBURGH", "MWD": "1881606", "MWD2": 1881606, "NewAddress": "2626 SALISBURY ST" }, "geometry": { "type": "Point", "coordinates": [ -79.970196713138805, 40.418327209802008 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 379, "OBJECTID": 379, "Muni": 188, "LocName": "ARLINGTON GYM-1ST FLOOR", "Prefix": " ", "House": "2201", "Fraction": " ", "Street": "SALISBURY", "Suffix1": "ST", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15210-1845", "Leadman": "10", "MuniName": "PITTSBURGH", "MWD": "1881607", "MWD2": 1881607, "NewAddress": "2201 SALISBURY ST" }, "geometry": { "type": "Point", "coordinates": [ -79.97541710575041, 40.41918534119997 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 380, "OBJECTID": 380, "Muni": 188, "LocName": "ARLINGTON HEIGHTS BASEMENT", "Prefix": " ", "House": "3111", "Fraction": " ", "Street": "CORDELL", "Suffix1": "PL", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15210-2866", "Leadman": "10", "MuniName": "PITTSBURGH", "MWD": "1881608", "MWD2": 1881608, "NewAddress": "3111 CORDELL PL" }, "geometry": { "type": "Point", "coordinates": [ -79.962914286533646, 40.417951371715645 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 381, "OBJECTID": 381, "Muni": 188, "LocName": "ST. CLAIR AA HALL", "Prefix": " ", "House": "2400", "Fraction": " ", "Street": "ELSIE", "Suffix1": "ST", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15210-2682", "Leadman": "10", "MuniName": "PITTSBURGH", "MWD": "1881610", "MWD2": 1881610, "NewAddress": "2400 ELSIE ST" }, "geometry": { "type": "Point", "coordinates": [ -79.972970509014374, 40.416413625997386 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 382, "OBJECTID": 382, "Muni": 188, "LocName": "ST. CLAIR AA HALL", "Prefix": " ", "House": "430", "Fraction": " ", "Street": "CATHEDRAL", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15210-3000", "Leadman": "10", "MuniName": "PITTSBURGH", "MWD": "1881611", "MWD2": 1881611, "NewAddress": "430 CATHEDRAL AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.979972066497496, 40.411750210663854 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 383, "OBJECTID": 384, "Muni": 188, "LocName": "ENGINE HOUSE", "Prefix": " ", "House": "1428", "Fraction": " ", "Street": "BEECHVIEW", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15216-3334", "Leadman": "12", "MuniName": "PITTSBURGH", "MWD": "1881917", "MWD2": 1881917, "NewAddress": "1428 BEECHVIEW AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.025161190678602, 40.413135618293595 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 384, "OBJECTID": 385, "Muni": 188, "LocName": "FRED GUALTIERI HI RISE COMM. RM.", "Prefix": " ", "House": "2125", "Fraction": " ", "Street": "LOS ANGELES", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15216-3559", "Leadman": "12", "MuniName": "PITTSBURGH", "MWD": "1881921", "MWD2": 1881921, "NewAddress": "2125 LOS ANGELES AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.028616349801666, 40.404213784127656 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 385, "OBJECTID": 386, "Muni": 188, "LocName": "FRED GUALTIERI HI RISE", "Prefix": " ", "House": "2125", "Fraction": " ", "Street": "LOS ANGELES", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15216-3559", "Leadman": "12", "MuniName": "PITTSBURGH", "MWD": "1881922", "MWD2": 1881922, "NewAddress": "2125 LOS ANGELES AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.028616349801666, 40.404213784127656 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 386, "OBJECTID": 387, "Muni": 188, "LocName": "ST MARYS OF THE MOUNT SCHOOL", "Prefix": " ", "House": "115", "Fraction": " ", "Street": "BIGHAM", "Suffix1": "ST", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15211", "Leadman": "12", "MuniName": "PITTSBURGH", "MWD": "1881928", "MWD2": 1881928, "NewAddress": "115 BIGHAM ST" }, "geometry": { "type": "Point", "coordinates": [ -80.014179299262494, 40.43519275140978 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 387, "OBJECTID": 388, "Muni": 188, "LocName": "ST MARKS EVAN CHURCH", "Prefix": " ", "House": "933", "Fraction": " ", "Street": "BROOKLINE", "Suffix1": "BLVD", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15226-2105", "Leadman": "12", "MuniName": "PITTSBURGH", "MWD": "1881931", "MWD2": 1881931, "NewAddress": "933 BROOKLINE BLVD" }, "geometry": { "type": "Point", "coordinates": [ -80.017851515897362, 40.39252989079268 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 388, "OBJECTID": 389, "Muni": 188, "LocName": "ST MARKS EV CH MIESEL HALL", "Prefix": " ", "House": "933", "Fraction": " ", "Street": "BROOKLINE", "Suffix1": "BLVD", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15226-2105", "Leadman": "12", "MuniName": "PITTSBURGH", "MWD": "1881932", "MWD2": 1881932, "NewAddress": "933 BROOKLINE BLVD" }, "geometry": { "type": "Point", "coordinates": [ -80.017851515897362, 40.39252989079268 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 389, "OBJECTID": 390, "Muni": 188, "LocName": "MOORE RECREATION CENTER", "Prefix": " ", "House": "1801", "Fraction": " ", "Street": "PIONEER", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15226-1219", "Leadman": "12", "MuniName": "PITTSBURGH", "MWD": "1881936", "MWD2": 1881936, "NewAddress": "1801 PIONEER AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.009311948161098, 40.404957076559995 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 390, "OBJECTID": 391, "Muni": 188, "LocName": "BANKSVILLE SCH MUSIC RM 11", "Prefix": " ", "House": "1001", "Fraction": " ", "Street": "CARNAHAN", "Suffix1": "RD", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15216-2901", "Leadman": "13", "MuniName": "PITTSBURGH", "MWD": "1882001", "MWD2": 1882001, "NewAddress": "1001 CARNAHAN RD" }, "geometry": { "type": "Point", "coordinates": [ -80.036621451209484, 40.407057800325781 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 391, "OBJECTID": 392, "Muni": 188, "LocName": "STEVENS ELEMENTARY SCHOOL CUST RM", "Prefix": " ", "House": "822", "Fraction": " ", "Street": "CRUCIBLE", "Suffix1": "ST", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15220-5607", "Leadman": "13", "MuniName": "PITTSBURGH", "MWD": "1882005", "MWD2": 1882005, "NewAddress": "822 CRUCIBLE ST" }, "geometry": { "type": "Point", "coordinates": [ -80.039988447594055, 40.442513117137409 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 392, "OBJECTID": 393, "Muni": 188, "LocName": "WEST PARK COURT", "Prefix": "W", "House": "710", "Fraction": " ", "Street": "NORTH", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15212-4563", "Leadman": "14", "MuniName": "PITTSBURGH", "MWD": "1882202", "MWD2": 1882202, "NewAddress": "710 NORTH AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.014180996999329, 40.45438119228492 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 393, "OBJECTID": 394, "Muni": 188, "LocName": "PRESSLEY HI RISE", "Prefix": " ", "House": "601", "Fraction": " ", "Street": "PRESSLEY", "Suffix1": "ST", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15212-4926", "Leadman": "14", "MuniName": "PITTSBURGH", "MWD": "1882302", "MWD2": 1882302, "NewAddress": "601 PRESSLEY ST" }, "geometry": { "type": "Point", "coordinates": [ -79.998949619520744, 40.451447995109305 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 394, "OBJECTID": 395, "Muni": 188, "LocName": "SCHILLER SCHOOL", "Prefix": " ", "House": "1018", "Fraction": " ", "Street": "PERALTA", "Suffix1": "ST", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15212-5002", "Leadman": "14", "MuniName": "PITTSBURGH", "MWD": "1882303", "MWD2": 1882303, "NewAddress": "1018 PERALTA ST" }, "geometry": { "type": "Point", "coordinates": [ -79.993090414054549, 40.4564020810259 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 395, "OBJECTID": 396, "Muni": 188, "LocName": "Allegheny Dwellings - BLDG. #15", "Prefix": " ", "House": "1610", "Fraction": " ", "Street": "SANDUSKY", "Suffix1": "CT", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15212-4071", "Leadman": "14", "MuniName": "PITTSBURGH", "MWD": "1882501", "MWD2": 1882501, "NewAddress": "1610 SANDUSKY CT" }, "geometry": { "type": "Point", "coordinates": [ -80.006643908296084, 40.460490096851522 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 396, "OBJECTID": 397, "Muni": 188, "LocName": "PARAMEDIC CENTER 1ST FLOOR", "Prefix": " ", "House": "215", "Fraction": " ", "Street": "LAFAYETTE", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15214-3607", "Leadman": "16", "MuniName": "PITTSBURGH", "MWD": "1882507", "MWD2": 1882507, "NewAddress": "215 LAFAYETTE AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.009702788438062, 40.465369549323071 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 397, "OBJECTID": 398, "Muni": 188, "LocName": "PARAMEDIC CENTER", "Prefix": " ", "House": "215", "Fraction": " ", "Street": "LAFAYETTE", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15214-3607", "Leadman": "16", "MuniName": "PITTSBURGH", "MWD": "1882603", "MWD2": 1882603, "NewAddress": "215 LAFAYETTE AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.009702788438062, 40.465369549323071 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 398, "OBJECTID": 399, "Muni": 188, "LocName": "ST. BONIFACE OLD SCHOOL BLDG-1ST FLOOR", "Prefix": "E", "House": "2208", "Fraction": " ", "Street": "EAST", "Suffix1": "ST", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15212", "Leadman": "16", "MuniName": "PITTSBURGH", "MWD": "1882614", "MWD2": 1882614, "NewAddress": "2208 EAST ST" }, "geometry": { "type": "Point", "coordinates": [ -79.999776056535623, 40.467291415122354 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 399, "OBJECTID": 400, "Muni": 188, "LocName": "EMMANUEL CHRISTIAN CHURCH", "Prefix": " ", "House": "1427", "Fraction": " ", "Street": "DAVIS", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15212-1937", "Leadman": "17", "MuniName": "PITTSBURGH", "MWD": "1882707", "MWD2": 1882707, "NewAddress": "1427 DAVIS AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.037115098529071, 40.480783423935556 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 400, "OBJECTID": 401, "Muni": 188, "LocName": "WESTWOOD SCHOOL", "Prefix": " ", "House": "508", "Fraction": " ", "Street": "SHADYHILL", "Suffix1": "RD", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15205-3960", "Leadman": "13", "MuniName": "PITTSBURGH", "MWD": "1882803", "MWD2": 1882803, "NewAddress": "508 SHADYHILL RD" }, "geometry": { "type": "Point", "coordinates": [ -80.050888215056432, 40.431297768801848 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 401, "OBJECTID": 402, "Muni": 188, "LocName": "WESTWOOD ELEMENTARY SCHOOL STAGE ENT", "Prefix": " ", "House": "508", "Fraction": " ", "Street": "SHADYHILL", "Suffix1": "RD", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15205-3960", "Leadman": "13", "MuniName": "PITTSBURGH", "MWD": "1882804", "MWD2": 1882804, "NewAddress": "508 SHADYHILL RD" }, "geometry": { "type": "Point", "coordinates": [ -80.050888215056432, 40.431297768801848 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 402, "OBJECTID": 403, "Muni": 188, "LocName": "ST PIUS X CATHOLIC CHURCH HALL", "Prefix": " ", "House": "2336", "Fraction": " ", "Street": "BROWNSVILLE", "Suffix1": "RD", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15210-450", "Leadman": "19", "MuniName": "PITTSBURGH", "MWD": "1882906", "MWD2": 1882906, "NewAddress": "2336 BROWNSVILLE RD" }, "geometry": { "type": "Point", "coordinates": [ -79.985478792942331, 40.387962059621302 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 403, "OBJECTID": 404, "Muni": 188, "LocName": "QUENTIN ROOSEVELT SCHOOL", "Prefix": " ", "House": "200", "Fraction": " ", "Street": "THE BOULEVARD", "Suffix1": " ", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15210-3712", "Leadman": "19", "MuniName": "PITTSBURGH", "MWD": "1882908", "MWD2": 1882908, "NewAddress": "200 THE BOULEVARD" }, "geometry": { "type": "Point", "coordinates": [ -79.985681566938652, 40.401145381282426 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 404, "OBJECTID": 405, "Muni": 188, "LocName": "QUENTIN ROOSEVELT SCHOOL", "Prefix": " ", "House": "200", "Fraction": " ", "Street": "THE BOULEVARD", "Suffix1": " ", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15210-3712", "Leadman": "19", "MuniName": "PITTSBURGH", "MWD": "1882911", "MWD2": 1882911, "NewAddress": "200 THE BOULEVARD" }, "geometry": { "type": "Point", "coordinates": [ -79.985681566938652, 40.401145381282426 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 405, "OBJECTID": 406, "Muni": 188, "LocName": "KNOXVILLE MIDDLE SCHOOL", "Prefix": " ", "House": "324", "Fraction": " ", "Street": "CHARLES", "Suffix1": "ST", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15210-1606", "Leadman": "11", "MuniName": "PITTSBURGH", "MWD": "1883002", "MWD2": 1883002, "NewAddress": "324 CHARLES ST" }, "geometry": { "type": "Point", "coordinates": [ -79.994080943483524, 40.416326671881542 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 406, "OBJECTID": 407, "Muni": 188, "LocName": "HOLY ANGELS SCHOOL", "Prefix": " ", "House": "408", "Fraction": " ", "Street": "BALDWIN", "Suffix1": "RD", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15207-1923", "Leadman": "20", "MuniName": "PITTSBURGH", "MWD": "1883101", "MWD2": 1883101, "NewAddress": "408 BALDWIN RD" }, "geometry": { "type": "Point", "coordinates": [ -79.932945234137648, 40.387494750939716 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 407, "OBJECTID": 408, "Muni": 188, "LocName": "RESIDENCE HOME", "Prefix": " ", "House": "4647", "Fraction": " ", "Street": "HOMERIDGE", "Suffix1": "DR", "Suffix2": " ", "City": "MUNHALL", "Zip": "15120-2978", "Leadman": "20", "MuniName": "PITTSBURGH", "MWD": "1883102", "MWD2": 1883102, "NewAddress": "4647 HOMERIDGE DR" }, "geometry": { "type": "Point", "coordinates": [ -79.921363129982851, 40.387555217892945 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 408, "OBJECTID": 409, "Muni": 188, "LocName": "MT RISE BAPTIST CHURCH", "Prefix": " ", "House": " ", "Fraction": " ", "Street": "INGOT&SHEFFER STS", "Suffix1": " ", "Suffix2": " ", "City": "HOMESTEAD", "Zip": "15120", "Leadman": "20", "MuniName": "PITTSBURGH", "MWD": "1883107", "MWD2": 1883107, "NewAddress": " INGOT&SHEFFER STS" }, "geometry": { "type": "Point", "coordinates": [ -79.924902453357717, 40.391805887513726 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 409, "OBJECTID": 410, "Muni": 188, "LocName": "CARMALT ACADEMY OF SCIENCE AND TECH", "Prefix": " ", "House": "1580", "Fraction": " ", "Street": "BREINING", "Suffix1": "ST", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15226-1940", "Leadman": "19", "MuniName": "PITTSBURGH", "MWD": "1883208", "MWD2": 1883208, "NewAddress": "1580 BREINING ST" }, "geometry": { "type": "Point", "coordinates": [ -80.006784584477657, 40.387829858546148 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 410, "OBJECTID": 411, "Muni": 189, "LocName": "PLEASANT HILLS COM CH FELLOWSHIP HL", "Prefix": " ", "House": "199", "Fraction": " ", "Street": "OLD CLAIRTON", "Suffix1": "RD", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15236-3902", "Leadman": "40", "MuniName": "PLEASANT HL", "MWD": "1890001", "MWD2": 1890001, "NewAddress": "199 OLD CLAIRTON RD" }, "geometry": { "type": "Point", "coordinates": [ -79.961902739009957, 40.337473433755868 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 411, "OBJECTID": 412, "Muni": 189, "LocName": "PLEASANT HILLS COM CH FELLOWSHIP HL", "Prefix": " ", "House": "199", "Fraction": " ", "Street": "OLD CLAIRTON", "Suffix1": "RD", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15236-3902", "Leadman": "40", "MuniName": "PLEASANT HL", "MWD": "1890002", "MWD2": 1890002, "NewAddress": "199 OLD CLAIRTON RD" }, "geometry": { "type": "Point", "coordinates": [ -79.961902739009957, 40.337473433755868 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 412, "OBJECTID": 413, "Muni": 189, "LocName": "PLEASANT HILLS COM CH FELLOWSHIP HL", "Prefix": " ", "House": "199", "Fraction": " ", "Street": "OLD CLAIRTON", "Suffix1": "RD", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15236-3902", "Leadman": "40", "MuniName": "PLEASANT HL", "MWD": "1890003", "MWD2": 1890003, "NewAddress": "199 OLD CLAIRTON RD" }, "geometry": { "type": "Point", "coordinates": [ -79.961902739009957, 40.337473433755868 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 413, "OBJECTID": 414, "Muni": 189, "LocName": "PLEASANT HILLS COM CH FELLOWSHIP HL", "Prefix": " ", "House": "199", "Fraction": " ", "Street": "OLD CLAIRTON", "Suffix1": "RD", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15236-3902", "Leadman": "40", "MuniName": "PLEASANT HL", "MWD": "1890010", "MWD2": 1890010, "NewAddress": "199 OLD CLAIRTON RD" }, "geometry": { "type": "Point", "coordinates": [ -79.961902739009957, 40.337473433755868 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 414, "OBJECTID": 415, "Muni": 190, "LocName": "LOGANS FERRY V F C #3", "Prefix": " ", "House": "1001", "Fraction": " ", "Street": "SUMMIT", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15239", "Leadman": "30", "MuniName": "PLUM", "MWD": "1900002", "MWD2": 1900002, "NewAddress": "1001 SUMMIT AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.749810992867253, 40.546161604282624 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 415, "OBJECTID": 416, "Muni": 190, "LocName": "HOLIDAY PARK VOL. FIRE CO", "Prefix": " ", "House": "415", "Fraction": " ", "Street": "ABERS CREEK", "Suffix1": "RD", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15239-2315", "Leadman": "30", "MuniName": "PLUM", "MWD": "1900010", "MWD2": 1900010, "NewAddress": "415 ABERS CREEK RD" }, "geometry": { "type": "Point", "coordinates": [ -79.706000448728503, 40.467808901747716 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 416, "OBJECTID": 417, "Muni": 190, "LocName": "EAST SUBURBAN FAMILY YMCA", "Prefix": " ", "House": "2200", "Fraction": " ", "Street": "ROUTE 286", "Suffix1": " ", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15239-2713", "Leadman": "30", "MuniName": "PLUM", "MWD": "1900015", "MWD2": 1900015, "NewAddress": "2200 ROUTE 286" }, "geometry": { "type": "Point", "coordinates": [ -79.707656896871001, 40.45812190762048 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 417, "OBJECTID": 418, "Muni": 190, "LocName": "EAST SUBURBAN FAMILY YMCA", "Prefix": " ", "House": "2200", "Fraction": " ", "Street": "ROUTE 286", "Suffix1": " ", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15239-2713", "Leadman": "30", "MuniName": "PLUM", "MWD": "1900016", "MWD2": 1900016, "NewAddress": "2200 ROUTE 286" }, "geometry": { "type": "Point", "coordinates": [ -79.704267832356564, 40.463626659035 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 418, "OBJECTID": 419, "Muni": 196, "LocName": "FAIRVIEW VOLUNTEER FIRE CO.", "Prefix": "E", "House": "44", "Fraction": " ", "Street": "FOREST", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15202", "Leadman": "27", "MuniName": "ROSS", "MWD": "1960603", "MWD2": 1960603, "NewAddress": "44 FOREST AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.047344341114936, 40.497319048085664 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 419, "OBJECTID": 420, "Muni": 205, "LocName": "LIBRARY FIRE HALL TRUCK RM", "Prefix": " ", "House": "6581", "Fraction": " ", "Street": "LIBRARY", "Suffix1": "RD", "Suffix2": " ", "City": "LIBRARY", "Zip": "15129-8577", "Leadman": "39", "MuniName": "SOUTH PARK", "MWD": "2050003", "MWD2": 2050003, "NewAddress": "6581 LIBRARY RD" }, "geometry": { "type": "Point", "coordinates": [ -80.022615412820954, 40.286087525055208 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 420, "OBJECTID": 421, "Muni": 205, "LocName": "LIBRARY FIRE HALL TRUCK RM", "Prefix": " ", "House": "6581", "Fraction": " ", "Street": "LIBRARY", "Suffix1": "RD", "Suffix2": " ", "City": "LIBRARY", "Zip": "15129-8577", "Leadman": "39", "MuniName": "SOUTH PARK", "MWD": "2050004", "MWD2": 2050004, "NewAddress": "6581 LIBRARY RD" }, "geometry": { "type": "Point", "coordinates": [ -80.022615412820954, 40.286087525055208 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 421, "OBJECTID": 422, "Muni": 205, "LocName": "LIBRARY FIRE HALL TRUCK RM", "Prefix": " ", "House": "6581", "Fraction": " ", "Street": "LIBRARY", "Suffix1": "RD", "Suffix2": " ", "City": "LIBRARY", "Zip": "15129-8577", "Leadman": "39", "MuniName": "SOUTH PARK", "MWD": "2050011", "MWD2": 2050011, "NewAddress": "6581 LIBRARY RD" }, "geometry": { "type": "Point", "coordinates": [ -80.022615412820954, 40.286087525055208 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 422, "OBJECTID": 423, "Muni": 206, "LocName": "COULTER VOL FIRE CO 1ST FLOOR", "Prefix": " ", "House": "414", "Fraction": " ", "Street": "RAILROAD", "Suffix1": "ST", "Suffix2": " ", "City": "COULTERS", "Zip": "15208", "Leadman": "25", "MuniName": "S VERSAILLES", "MWD": "2060001", "MWD2": 2060001, "NewAddress": "414 RAILROAD ST" }, "geometry": { "type": "Point", "coordinates": [ -79.80400765955892, 40.297522189652902 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 423, "OBJECTID": 424, "Muni": 219, "LocName": "ST. VICTOR RECREATION BLDG.", "Prefix": " ", "House": "527", "Fraction": " ", "Street": "BAIRDFORD", "Suffix1": "RD", "Suffix2": " ", "City": "BAIRDFORD", "Zip": "15006", "Leadman": "43", "MuniName": "WEST DEER", "MWD": "2190001", "MWD2": 2190001, "NewAddress": "527 BAIRDFORD RD" }, "geometry": { "type": "Point", "coordinates": [ -79.872953531537178, 40.634198728084485 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 424, "OBJECTID": 425, "Muni": 219, "LocName": "WEST DEER VOLUNTEER FIRE CO. #1", "Prefix": " ", "House": "1520", "Fraction": " ", "Street": "SAXONBURG", "Suffix1": "BLVD", "Suffix2": " ", "City": "WEST DEER TOWNSHIP", "Zip": "15044", "Leadman": "43", "MuniName": "WEST DEER", "MWD": "2190002", "MWD2": 2190002, "NewAddress": "1520 SAXONBURG BLVD" }, "geometry": { "type": "Point", "coordinates": [ -79.841634894442322, 40.654341709461654 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 425, "OBJECTID": 426, "Muni": 219, "LocName": "DRAINAGE BASIN AUTHORITY", "Prefix": " ", "House": "945", "Fraction": " ", "Street": "LITTLE DEER CREEK VALLEY", "Suffix1": "RD", "Suffix2": " ", "City": "RUSSELLTON", "Zip": "15076-1331", "Leadman": "43", "MuniName": "WEST DEER", "MWD": "2190003", "MWD2": 2190003, "NewAddress": "945 LITTLE DEER CREEK VALLEY RD" }, "geometry": { "type": "Point", "coordinates": [ -79.833331459430383, 40.60556442683027 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 426, "OBJECTID": 427, "Muni": 219, "LocName": "WEST DEER VOLUNTEER FIRE CO. #3", "Prefix": " ", "House": "4372", "Fraction": " ", "Street": "GIBSONIA", "Suffix1": "RD", "Suffix2": " ", "City": "GIBSONIA", "Zip": "15044", "Leadman": "43", "MuniName": "WEST DEER", "MWD": "2190004", "MWD2": 2190004, "NewAddress": "4372 GIBSONIA RD" }, "geometry": { "type": "Point", "coordinates": [ -79.919290084400586, 40.621005964977478 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 427, "OBJECTID": 428, "Muni": 219, "LocName": "WEST DEER MUNI BLDG FRONT ENTRANCE", "Prefix": "E", "House": "109", "Fraction": " ", "Street": "UNION", "Suffix1": "RD", "Suffix2": " ", "City": "CHESWICK", "Zip": "15024-1719", "Leadman": "43", "MuniName": "WEST DEER", "MWD": "2190006", "MWD2": 2190006, "NewAddress": "109 UNION RD" }, "geometry": { "type": "Point", "coordinates": [ -79.855230370851018, 40.621921308205472 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 428, "OBJECTID": 429, "Muni": 219, "LocName": "WEST DEER VOLUNTEER FIRE CO. #3", "Prefix": " ", "House": "4372", "Fraction": " ", "Street": "GIBSONIA", "Suffix1": "RD", "Suffix2": " ", "City": "GIBSONIA", "Zip": "15044", "Leadman": "43", "MuniName": "WEST DEER", "MWD": "2190008", "MWD2": 2190008, "NewAddress": "4372 GIBSONIA RD" }, "geometry": { "type": "Point", "coordinates": [ -79.919290084400586, 40.621005964977478 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 429, "OBJECTID": 430, "Muni": 224, "LocName": "WHITAKER VOL FIRE CO", "Prefix": " ", "House": "239", "Fraction": " ", "Street": "CHURCH", "Suffix1": "ST", "Suffix2": " ", "City": "WHITAKER", "Zip": "15120", "Leadman": "24", "MuniName": "WHITAKER", "MWD": "2240001", "MWD2": 2240001, "NewAddress": "239 CHURCH ST" }, "geometry": { "type": "Point", "coordinates": [ -79.886590206643035, 40.398775972026172 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 430, "OBJECTID": 431, "Muni": 224, "LocName": "WHITAKER VOL FIRE CO", "Prefix": " ", "House": "239", "Fraction": " ", "Street": "CHURCH", "Suffix1": "ST", "Suffix2": " ", "City": "WHITAKER", "Zip": "15120", "Leadman": "24", "MuniName": "WHITAKER", "MWD": "2240002", "MWD2": 2240002, "NewAddress": "239 CHURCH ST" }, "geometry": { "type": "Point", "coordinates": [ -79.886518462602936, 40.398721622713452 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 431, "OBJECTID": 432, "Muni": 103, "LocName": "AVALON ELEMENTARY SCHOOL", "Prefix": " ", "House": "721", "Fraction": " ", "Street": "CALIFORNIA", "Suffix1": "AVE", "Suffix2": " ", "City": "AVALON", "Zip": "15202-2520", "Leadman": "36", "MuniName": "AVALON", "MWD": "1030301", "MWD2": 1030301, "NewAddress": "721 CALIFORNIA AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.066424751996777, 40.500885506205513 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 432, "OBJECTID": 433, "Muni": 104, "LocName": "ST. ALBERT THE GREAT", "Prefix": " ", "House": "3198", "Fraction": " ", "Street": "SCHIECK", "Suffix1": "ST", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15227-4152", "Leadman": "55", "MuniName": "BALDWIN BR", "MWD": "1040004", "MWD2": 1040004, "NewAddress": "3198 SCHIECK ST" }, "geometry": { "type": "Point", "coordinates": [ -79.961593149748509, 40.386715601989593 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 433, "OBJECTID": 434, "Muni": 104, "LocName": "MCANULTY SCHOOL", "Prefix": " ", "House": "5151", "Fraction": " ", "Street": "MCANULTY", "Suffix1": "RD", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15236-2521", "Leadman": "34", "MuniName": "BALDWIN BR", "MWD": "1040006", "MWD2": 1040006, "NewAddress": "5151 MCANULTY RD" }, "geometry": { "type": "Point", "coordinates": [ -79.995704016836726, 40.345510123895714 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 434, "OBJECTID": 435, "Muni": 104, "LocName": "LELAND PARK COM HOUSE RR ENT", "Prefix": " ", "House": "374", "Fraction": " ", "Street": "KNOEDLER", "Suffix1": "RD", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15236-3102", "Leadman": "34", "MuniName": "BALDWIN BR", "MWD": "1040007", "MWD2": 1040007, "NewAddress": "374 KNOEDLER RD" }, "geometry": { "type": "Point", "coordinates": [ -79.979078177646002, 40.34187974505253 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 435, "OBJECTID": 436, "Muni": 104, "LocName": "MCANULTY SCHOOL", "Prefix": " ", "House": "5151", "Fraction": " ", "Street": "MCANULTY", "Suffix1": "RD", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15236-2521", "Leadman": "34", "MuniName": "BALDWIN BR", "MWD": "1040008", "MWD2": 1040008, "NewAddress": "5151 MCANULTY RD" }, "geometry": { "type": "Point", "coordinates": [ -79.995841111117358, 40.345827702265375 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 436, "OBJECTID": 437, "Muni": 104, "LocName": "LELAND PARK COM HOUSE MAIN ENT", "Prefix": " ", "House": "374", "Fraction": " ", "Street": "KNOEDLER", "Suffix1": "RD", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15236-3102", "Leadman": "34", "MuniName": "BALDWIN BR", "MWD": "1040010", "MWD2": 1040010, "NewAddress": "374 KNOEDLER RD" }, "geometry": { "type": "Point", "coordinates": [ -79.979323469743221, 40.341783750716928 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 437, "OBJECTID": 438, "Muni": 104, "LocName": "LELAND PARK COM HOUSE", "Prefix": " ", "House": "374", "Fraction": " ", "Street": "KNOEDLER", "Suffix1": "RD", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15236-3102", "Leadman": "34", "MuniName": "BALDWIN BR", "MWD": "1040011", "MWD2": 1040011, "NewAddress": "374 KNOEDLER RD" }, "geometry": { "type": "Point", "coordinates": [ -79.979122320863553, 40.34171159009631 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 438, "OBJECTID": 439, "Muni": 104, "LocName": "ST. ALBERT THE GREAT", "Prefix": " ", "House": "3198", "Fraction": " ", "Street": "SCHIECK", "Suffix1": "ST", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15227-4152", "Leadman": "55", "MuniName": "BALDWIN BR", "MWD": "1040012", "MWD2": 1040012, "NewAddress": "3198 SCHIECK ST" }, "geometry": { "type": "Point", "coordinates": [ -79.961588649066314, 40.386661467052598 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 439, "OBJECTID": 440, "Muni": 104, "LocName": "W R PAYNTER ELEM AUDITORIUM", "Prefix": " ", "House": "3454", "Fraction": " ", "Street": "PLEASANTVUE", "Suffix1": "DR", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15227-4334", "Leadman": "55", "MuniName": "BALDWIN BR", "MWD": "1040013", "MWD2": 1040013, "NewAddress": "3454 PLEASANTVUE DR" }, "geometry": { "type": "Point", "coordinates": [ -79.950536505186889, 40.381495217716953 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 440, "OBJECTID": 441, "Muni": 104, "LocName": "MCANULTY SCHOOL", "Prefix": " ", "House": "5151", "Fraction": " ", "Street": "MCANULTY", "Suffix1": "RD", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15236-2521", "Leadman": "34", "MuniName": "BALDWIN BR", "MWD": "1040014", "MWD2": 1040014, "NewAddress": "5151 MCANULTY RD" }, "geometry": { "type": "Point", "coordinates": [ -79.995679939498316, 40.345078632653987 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 441, "OBJECTID": 442, "Muni": 104, "LocName": "W R PAYNTER ELEM AUDITORIUM", "Prefix": " ", "House": "3454", "Fraction": " ", "Street": "PLEASANTVUE", "Suffix1": "DR", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15227-4334", "Leadman": "55", "MuniName": "BALDWIN BR", "MWD": "1040015", "MWD2": 1040015, "NewAddress": "3454 PLEASANTVUE DR" }, "geometry": { "type": "Point", "coordinates": [ -79.950560742914703, 40.381220678686503 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 442, "OBJECTID": 443, "Muni": 104, "LocName": "MCANULTY SCHOOL", "Prefix": " ", "House": "5151", "Fraction": " ", "Street": "MCANULTY", "Suffix1": "RD", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15236-2521", "Leadman": "34", "MuniName": "BALDWIN BR", "MWD": "1040017", "MWD2": 1040017, "NewAddress": "5151 MCANULTY RD" }, "geometry": { "type": "Point", "coordinates": [ -79.99574110372339, 40.344868910070289 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 443, "OBJECTID": 444, "Muni": 106, "LocName": "BELL ACRES V.F.C.", "Prefix": " ", "House": "1850", "Fraction": " ", "Street": "BIG SEWICKLEY CREEK", "Suffix1": "RD", "Suffix2": " ", "City": "SEWICKLEY", "Zip": "15143", "Leadman": "37", "MuniName": "BELL ACRES", "MWD": "1060001", "MWD2": 1060001, "NewAddress": "1850 BIG SEWICKLEY CREEK RD" }, "geometry": { "type": "Point", "coordinates": [ -80.167616900012703, 40.605162439184916 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 444, "OBJECTID": 445, "Muni": 107, "LocName": "LINCOLN ELEMENTARY SCHOOL", "Prefix": " ", "House": "435", "Fraction": " ", "Street": "LINCOLN", "Suffix1": "AVE", "Suffix2": " ", "City": "BELLEVUE", "Zip": "15202-3629", "Leadman": "36", "MuniName": "BELLEVUE", "MWD": "1070201", "MWD2": 1070201, "NewAddress": "435 LINCOLN AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.054594131022071, 40.494030421852727 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 445, "OBJECTID": 446, "Muni": 108, "LocName": "BEN AVON BORO FIRE STATION 1ST FL", "Prefix": " ", "House": "7219", "Fraction": " ", "Street": "CHURCH", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15202-1846", "Leadman": "36", "MuniName": "BEN AVON", "MWD": "1080001", "MWD2": 1080001, "NewAddress": "7219 CHURCH AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.084632645649691, 40.508752976103452 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 446, "OBJECTID": 447, "Muni": 108, "LocName": "BEN AVON BORO FIRE STATION 1ST FL", "Prefix": " ", "House": "7219", "Fraction": " ", "Street": "CHURCH", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15202-1846", "Leadman": "36", "MuniName": "BEN AVON", "MWD": "1080002", "MWD2": 1080002, "NewAddress": "7219 CHURCH AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.084739652171422, 40.508813103990448 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 447, "OBJECTID": 448, "Muni": 110, "LocName": "BETHEL PARK COMMUNITY CENTER", "Prefix": " ", "House": "5151", "Fraction": " ", "Street": "PARK", "Suffix1": "AVE", "Suffix2": " ", "City": "BETHEL PARK", "Zip": "15102-2718", "Leadman": "39", "MuniName": "BETHEL PARK", "MWD": "1100101", "MWD2": 1100101, "NewAddress": "5151 PARK AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.028773227777251, 40.330864671412222 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 448, "OBJECTID": 449, "Muni": 110, "LocName": "BENJAMIN FRANKLIN SCHOOL GYM", "Prefix": " ", "House": "5400", "Fraction": " ", "Street": "FLORIDA", "Suffix1": "AVE", "Suffix2": " ", "City": "BETHEL PARK", "Zip": "15102-3813", "Leadman": "39", "MuniName": "BETHEL PARK", "MWD": "1100102", "MWD2": 1100102, "NewAddress": "5400 FLORIDA AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.032708638203985, 40.324809221838798 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 449, "OBJECTID": 450, "Muni": 110, "LocName": "BENJAMIN FRANKLIN SCHOOL GYM", "Prefix": " ", "House": "5400", "Fraction": " ", "Street": "FLORIDA", "Suffix1": "AVE", "Suffix2": " ", "City": "BETHEL PARK", "Zip": "15102-3813", "Leadman": "39", "MuniName": "BETHEL PARK", "MWD": "1100103", "MWD2": 1100103, "NewAddress": "5400 FLORIDA AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.032145637699571, 40.324428016445751 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 450, "OBJECTID": 451, "Muni": 110, "LocName": "GEORGE WASHINGTON SCHOOL GYM", "Prefix": " ", "House": "515", "Fraction": " ", "Street": "CLIFTON", "Suffix1": "RD", "Suffix2": " ", "City": "BETHEL PARK", "Zip": "15102-1300", "Leadman": "39", "MuniName": "BETHEL PARK", "MWD": "1100301", "MWD2": 1100301, "NewAddress": "515 CLIFTON RD" }, "geometry": { "type": "Point", "coordinates": [ -80.06219272396244, 40.312815816292549 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 451, "OBJECTID": 452, "Muni": 110, "LocName": "BETHEL PARK COM CTR RM A", "Prefix": " ", "House": "5151", "Fraction": " ", "Street": "PARK", "Suffix1": "AVE", "Suffix2": " ", "City": "BETHEL PARK", "Zip": "15102-2709", "Leadman": "39", "MuniName": "BETHEL PARK", "MWD": "1100402", "MWD2": 1100402, "NewAddress": "5151 PARK AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.028691954197257, 40.331074780730368 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 452, "OBJECTID": 453, "Muni": 110, "LocName": "BETHEL PARK COM CTR 1ST FL", "Prefix": " ", "House": "5151", "Fraction": " ", "Street": "PARK", "Suffix1": "AVE", "Suffix2": " ", "City": "BETHEL PARK", "Zip": "15102-2709", "Leadman": "39", "MuniName": "BETHEL PARK", "MWD": "1100403", "MWD2": 1100403, "NewAddress": "5151 PARK AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.028809528000366, 40.331042184482733 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 453, "OBJECTID": 454, "Muni": 110, "LocName": "LINCOLN SCHOOL", "Prefix": " ", "House": "1524", "Fraction": " ", "Street": "HAMILTON", "Suffix1": "RD", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15234-2004", "Leadman": "39", "MuniName": "BETHEL PARK", "MWD": "1100501", "MWD2": 1100501, "NewAddress": "1524 HAMILTON RD" }, "geometry": { "type": "Point", "coordinates": [ -80.01772553686628, 40.354381032772089 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 454, "OBJECTID": 455, "Muni": 110, "LocName": "BETHEL MASONIC HALL 1ST FL", "Prefix": " ", "House": "3601", "Fraction": " ", "Street": "INDUSTRIAL", "Suffix1": "BLVD", "Suffix2": " ", "City": "BETHEL PARK", "Zip": "15102", "Leadman": "39", "MuniName": "BETHEL PARK", "MWD": "1100601", "MWD2": 1100601, "NewAddress": "3601 INDUSTRIAL BLVD" }, "geometry": { "type": "Point", "coordinates": [ -80.046273617131988, 40.318658897902274 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 455, "OBJECTID": 456, "Muni": 110, "LocName": "GEORGE WASHINGTON SCHOOL GYM", "Prefix": " ", "House": "515", "Fraction": " ", "Street": "CLIFTON", "Suffix1": "RD", "Suffix2": " ", "City": "BETHEL PARK", "Zip": "15102-1300", "Leadman": "39", "MuniName": "BETHEL PARK", "MWD": "1100901", "MWD2": 1100901, "NewAddress": "515 CLIFTON RD" }, "geometry": { "type": "Point", "coordinates": [ -80.062945130903984, 40.312650279178783 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 456, "OBJECTID": 457, "Muni": 111, "LocName": "BLAWNOX MANOR RECREATION RM", "Prefix": " ", "House": "701", "Fraction": " ", "Street": "CENTER", "Suffix1": "AVE", "Suffix2": " ", "City": "BLAWNOX", "Zip": "15238-3219", "Leadman": "38", "MuniName": "BLAWNOX", "MWD": "1110001", "MWD2": 1110001, "NewAddress": "701 CENTER AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.864856418443779, 40.490695236345978 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 457, "OBJECTID": 458, "Muni": 116, "LocName": "ELROY ELEMENTARY SCHOOL ROOM 108", "Prefix": " ", "House": "3129", "Fraction": " ", "Street": "ELROY", "Suffix1": "AVE", "Suffix2": " ", "City": "BRENTWOOD", "Zip": "15227-2824", "Leadman": "55", "MuniName": "BRENTWOOD", "MWD": "1160003", "MWD2": 1160003, "NewAddress": "3129 ELROY AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.973263367050876, 40.379482703909453 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 458, "OBJECTID": 459, "Muni": 116, "LocName": "ELROY ELEMENTARY SCHOOL ROOM 109", "Prefix": " ", "House": "3129", "Fraction": " ", "Street": "ELROY", "Suffix1": "AVE", "Suffix2": " ", "City": "BRENTWOOD", "Zip": "15227-2824", "Leadman": "55", "MuniName": "BRENTWOOD", "MWD": "1160005", "MWD2": 1160005, "NewAddress": "3129 ELROY AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.973273696205226, 40.379382433233303 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 459, "OBJECTID": 460, "Muni": 116, "LocName": "ST SYLVESTER SCHOOL", "Prefix": "W", "House": "32", "Fraction": " ", "Street": "WILLOCK", "Suffix1": "RD", "Suffix2": " ", "City": "BRENTWOOD", "Zip": "15227-3230", "Leadman": "55", "MuniName": "BRENTWOOD", "MWD": "1160007", "MWD2": 1160007, "NewAddress": "32 WILLOCK RD" }, "geometry": { "type": "Point", "coordinates": [ -79.976905750490445, 40.371445215909759 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 460, "OBJECTID": 461, "Muni": 116, "LocName": "ST PETERS EPIS CH KINDER RM", "Prefix": " ", "House": "4048", "Fraction": " ", "Street": "BROWNSVILLE", "Suffix1": "RD", "Suffix2": " ", "City": "BRENTWOOD", "Zip": "15227-3420", "Leadman": "55", "MuniName": "BRENTWOOD", "MWD": "1160008", "MWD2": 1160008, "NewAddress": "4048 BROWNSVILLE RD" }, "geometry": { "type": "Point", "coordinates": [ -79.980964837423443, 40.366938886721471 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 461, "OBJECTID": 462, "Muni": 116, "LocName": "BRENTWOOD LIBRARY LWR LVL", "Prefix": " ", "House": "3501", "Fraction": " ", "Street": "BROWNSVILLE", "Suffix1": "RD", "Suffix2": " ", "City": "BRENTWOOD", "Zip": "15227-3115", "Leadman": "55", "MuniName": "BRENTWOOD", "MWD": "1160010", "MWD2": 1160010, "NewAddress": "3501 BROWNSVILLE RD" }, "geometry": { "type": "Point", "coordinates": [ -79.975124317682727, 40.374899654442643 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 462, "OBJECTID": 463, "Muni": 117, "LocName": "GOODWILL MANOR GYM", "Prefix": " ", "House": "601", "Fraction": " ", "Street": "MCMILLAN", "Suffix1": "ST", "Suffix2": " ", "City": "BRIDGEVILLE", "Zip": "15017-2026", "Leadman": "47", "MuniName": "BRIDGEVILLE", "MWD": "1170003", "MWD2": 1170003, "NewAddress": "601 MCMILLAN ST" }, "geometry": { "type": "Point", "coordinates": [ -80.110389655904072, 40.355261748038046 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 463, "OBJECTID": 464, "Muni": 117, "LocName": "GOODWILL MANOR GYM", "Prefix": " ", "House": "601", "Fraction": " ", "Street": "MCMILLAN", "Suffix1": "ST", "Suffix2": " ", "City": "BRIDGEVILLE", "Zip": "15017-2026", "Leadman": "47", "MuniName": "BRIDGEVILLE", "MWD": "1170004", "MWD2": 1170004, "NewAddress": "601 MCMILLAN ST" }, "geometry": { "type": "Point", "coordinates": [ -80.110427036013817, 40.355302883570459 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 464, "OBJECTID": 465, "Muni": 118, "LocName": "NEW BORO BLDG COUNCIL CHAMBERS", "Prefix": " ", "House": "1", "Fraction": " ", "Street": "VETERANS", "Suffix1": "WAY", "Suffix2": " ", "City": "CARNEGIE", "Zip": "15106-4403", "Leadman": "26", "MuniName": "CARNEGIE", "MWD": "1180102", "MWD2": 1180102, "NewAddress": "1 VETERANS WAY" }, "geometry": { "type": "Point", "coordinates": [ -80.092463151734805, 40.404439117670947 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 465, "OBJECTID": 466, "Muni": 118, "LocName": "NEW BORO BLDG COUNCIL CHAMBERS", "Prefix": " ", "House": "1", "Fraction": " ", "Street": "VETERANS", "Suffix1": "WAY", "Suffix2": " ", "City": "CARNEGIE", "Zip": "15106-4403", "Leadman": "26", "MuniName": "CARNEGIE", "MWD": "1180103", "MWD2": 1180103, "NewAddress": "1 VETERANS WAY" }, "geometry": { "type": "Point", "coordinates": [ -80.092244128184205, 40.4045356417368 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 466, "OBJECTID": 467, "Muni": 118, "LocName": "UKRAINIAN AMERICAN CITIZENS CLUB", "Prefix": " ", "House": "302", "Fraction": " ", "Street": "MANSFIELD", "Suffix1": "BLVD", "Suffix2": " ", "City": "CARNEGIE", "Zip": "15106-2847", "Leadman": "26", "MuniName": "CARNEGIE", "MWD": "1180201", "MWD2": 1180201, "NewAddress": "302 MANSFIELD BLVD" }, "geometry": { "type": "Point", "coordinates": [ -80.08476216550055, 40.409752336822194 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 467, "OBJECTID": 468, "Muni": 118, "LocName": "UKRAINIAN AMERICAN CITIZENS CLUB", "Prefix": " ", "House": "302", "Fraction": " ", "Street": "MANSFIELD", "Suffix1": "BLVD", "Suffix2": " ", "City": "CARNEGIE", "Zip": "15106-2847", "Leadman": "26", "MuniName": "CARNEGIE", "MWD": "1180202", "MWD2": 1180202, "NewAddress": "302 MANSFIELD BLVD" }, "geometry": { "type": "Point", "coordinates": [ -80.084575478816035, 40.409677712508845 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 468, "OBJECTID": 469, "Muni": 119, "LocName": "MYRTLE SCHOOL GYM", "Prefix": " ", "House": "3724", "Fraction": " ", "Street": "MYRTLE", "Suffix1": "AVE", "Suffix2": " ", "City": "CASTLE SHANNON", "Zip": "15234-2168", "Leadman": "54", "MuniName": "CASL SHANNON", "MWD": "1190001", "MWD2": 1190001, "NewAddress": "3724 MYRTLE AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.024049116264194, 40.367785224934224 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 469, "OBJECTID": 470, "Muni": 119, "LocName": "MYRTLE SCHOOL GYM", "Prefix": " ", "House": "3724", "Fraction": " ", "Street": "MYRTLE", "Suffix1": "AVE", "Suffix2": " ", "City": "CASTLE SHANNON", "Zip": "15234-2168", "Leadman": "54", "MuniName": "CASL SHANNON", "MWD": "1190002", "MWD2": 1190002, "NewAddress": "3724 MYRTLE AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.024281718443987, 40.367437191658745 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 470, "OBJECTID": 471, "Muni": 119, "LocName": "CASTLE SHANNON MUNI CTR CONF RM", "Prefix": " ", "House": "3310", "Fraction": " ", "Street": "MCROBERTS", "Suffix1": "RD", "Suffix2": " ", "City": "CASTLE SHANNON", "Zip": "15234-2711", "Leadman": "54", "MuniName": "CASL SHANNON", "MWD": "1190003", "MWD2": 1190003, "NewAddress": "3310 MCROBERTS RD" }, "geometry": { "type": "Point", "coordinates": [ -80.009136906623397, 40.367387462905334 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 471, "OBJECTID": 472, "Muni": 119, "LocName": "COMMUNITY LIBRARY MULTI PURPOSE RM", "Prefix": " ", "House": "3677", "Fraction": " ", "Street": "MYRTLE", "Suffix1": "AVE", "Suffix2": " ", "City": "CASTLE SHANNON", "Zip": "15234-2115", "Leadman": "54", "MuniName": "CASL SHANNON", "MWD": "1190005", "MWD2": 1190005, "NewAddress": "3677 MYRTLE AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.02224660847159, 40.367828085766369 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 472, "OBJECTID": 473, "Muni": 119, "LocName": "COMMUNITY LIBRARY MULTI PURPOSE RM", "Prefix": " ", "House": "3677", "Fraction": " ", "Street": "MYRTLE", "Suffix1": "AVE", "Suffix2": " ", "City": "CASTLE SHANNON", "Zip": "15234-2115", "Leadman": "54", "MuniName": "CASL SHANNON", "MWD": "1190007", "MWD2": 1190007, "NewAddress": "3677 MYRTLE AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.022160582565462, 40.367688404191092 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 473, "OBJECTID": 474, "Muni": 119, "LocName": "CASTLE SHANNON MUNI CTR CONF RM", "Prefix": " ", "House": "3310", "Fraction": " ", "Street": "MCROBERTS", "Suffix1": "RD", "Suffix2": " ", "City": "CASTLE SHANNON", "Zip": "15234-2711", "Leadman": "54", "MuniName": "CASL SHANNON", "MWD": "1190008", "MWD2": 1190008, "NewAddress": "3310 MCROBERTS RD" }, "geometry": { "type": "Point", "coordinates": [ -80.008903193848482, 40.367540148000558 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 474, "OBJECTID": 475, "Muni": 120, "LocName": "CHALFANT MUNICIPAL BLDG", "Prefix": " ", "House": "218", "Fraction": " ", "Street": "NORTH", "Suffix1": "AVE", "Suffix2": " ", "City": "EAST PITTSBURGH", "Zip": "15112-1421", "Leadman": "53", "MuniName": "CHALFANT", "MWD": "1200001", "MWD2": 1200001, "NewAddress": "218 NORTH AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.8405137554752, 40.408414832113387 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 475, "OBJECTID": 476, "Muni": 122, "LocName": "BORO BLDG", "Prefix": " ", "House": "2300", "Fraction": " ", "Street": "WILLIAM PENN", "Suffix1": "HWY", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15235-4952", "Leadman": "53", "MuniName": "CHURCHILL", "MWD": "1220001", "MWD2": 1220001, "NewAddress": "2300 WILLIAM PENN HWY" }, "geometry": { "type": "Point", "coordinates": [ -79.849747919874645, 40.445842682639785 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 476, "OBJECTID": 477, "Muni": 122, "LocName": "ST JOHN FISHER", "Prefix": " ", "House": "33", "Fraction": " ", "Street": "LEWIN", "Suffix1": "LN", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15235", "Leadman": "53", "MuniName": "CHURCHILL", "MWD": "1220002", "MWD2": 1220002, "NewAddress": "33 LEWIN LN" }, "geometry": { "type": "Point", "coordinates": [ -79.845099971303227, 40.435037553830156 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 477, "OBJECTID": 478, "Muni": 122, "LocName": "ST JOHN FISHER", "Prefix": " ", "House": "33", "Fraction": " ", "Street": "LEWIN", "Suffix1": "LN", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15235", "Leadman": "53", "MuniName": "CHURCHILL", "MWD": "1220003", "MWD2": 1220003, "NewAddress": "33 LEWIN LN" }, "geometry": { "type": "Point", "coordinates": [ -79.845013540269463, 40.434799859984068 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 478, "OBJECTID": 479, "Muni": 122, "LocName": "PACE SCHOOL DR 5 LWR SIDE ENT", "Prefix": " ", "House": "2432", "Fraction": " ", "Street": "GREENSBURG", "Suffix1": "PIKE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15221-3611", "Leadman": "53", "MuniName": "CHURCHILL", "MWD": "1220004", "MWD2": 1220004, "NewAddress": "2432 GREENSBURG PIKE" }, "geometry": { "type": "Point", "coordinates": [ -79.856477782642983, 40.438556456686804 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 479, "OBJECTID": 480, "Muni": 123, "LocName": "PINE RUN UN METH CHURCH", "Prefix": "N", "House": "901", "Fraction": " ", "Street": "6TH", "Suffix1": "ST", "Suffix2": " ", "City": "CLAIRTON", "Zip": "15025-2301", "Leadman": "21", "MuniName": "CLAIRTON", "MWD": "1230101", "MWD2": 1230101, "NewAddress": "901 6TH ST" }, "geometry": { "type": "Point", "coordinates": [ -79.898752599054546, 40.310049750667822 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 480, "OBJECTID": 481, "Muni": 123, "LocName": "WILSON PRESBYTERIAN CH SOCIAL HALL", "Prefix": "N", "House": "400", "Fraction": " ", "Street": "4TH", "Suffix1": "ST", "Suffix2": " ", "City": "CLAIRTON", "Zip": "15025-2059", "Leadman": "21", "MuniName": "CLAIRTON", "MWD": "1230102", "MWD2": 1230102, "NewAddress": "400 4TH ST" }, "geometry": { "type": "Point", "coordinates": [ -79.889818366837346, 40.305781682619084 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 481, "OBJECTID": 482, "Muni": 123, "LocName": "WILSON PRESBYTERIAN CH SOCIAL HALL", "Prefix": "N", "House": "400", "Fraction": " ", "Street": "4TH", "Suffix1": "ST", "Suffix2": " ", "City": "CLAIRTON", "Zip": "15025-2059", "Leadman": "21", "MuniName": "CLAIRTON", "MWD": "1230103", "MWD2": 1230103, "NewAddress": "400 4TH ST" }, "geometry": { "type": "Point", "coordinates": [ -79.88974315201763, 40.305917652843753 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 482, "OBJECTID": 483, "Muni": 123, "LocName": "G W CARVER HALL SR CITZ BLDG", "Prefix": " ", "House": "565", "Fraction": " ", "Street": "REED", "Suffix1": "ST", "Suffix2": " ", "City": "CLAIRTON", "Zip": "15025-1709", "Leadman": "21", "MuniName": "CLAIRTON", "MWD": "1230201", "MWD2": 1230201, "NewAddress": "565 REED ST" }, "geometry": { "type": "Point", "coordinates": [ -79.880608110331551, 40.292673735676999 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 483, "OBJECTID": 484, "Muni": 123, "LocName": "G W CARVER HALL SR CITZ BLDG", "Prefix": " ", "House": "565", "Fraction": " ", "Street": "REED", "Suffix1": "ST", "Suffix2": " ", "City": "CLAIRTON", "Zip": "15025-1709", "Leadman": "21", "MuniName": "CLAIRTON", "MWD": "1230202", "MWD2": 1230202, "NewAddress": "565 REED ST" }, "geometry": { "type": "Point", "coordinates": [ -79.880608110331551, 40.292673735676999 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 484, "OBJECTID": 485, "Muni": 123, "LocName": "CLAIRTON MUNICIPAL BUILDING", "Prefix": " ", "House": "551", "Fraction": " ", "Street": "RAVENSBURG", "Suffix1": "BLVD", "Suffix2": " ", "City": "CLAIRTON", "Zip": "15025-1210", "Leadman": "21", "MuniName": "CLAIRTON", "MWD": "1230303", "MWD2": 1230303, "NewAddress": "551 RAVENSBURG BLVD" }, "geometry": { "type": "Point", "coordinates": [ -79.894532357044952, 40.296051142082817 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 485, "OBJECTID": 486, "Muni": 123, "LocName": "G W CARVER HALL SR CITZ BLDG", "Prefix": " ", "House": "565", "Fraction": " ", "Street": "REED", "Suffix1": "ST", "Suffix2": " ", "City": "CLAIRTON", "Zip": "15025-1709", "Leadman": "21", "MuniName": "CLAIRTON", "MWD": "1230401", "MWD2": 1230401, "NewAddress": "565 REED ST" }, "geometry": { "type": "Point", "coordinates": [ -79.880608110331551, 40.292673735676999 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 486, "OBJECTID": 487, "Muni": 124, "LocName": "CLUBHOUSE", "Prefix": " ", "House": "160", "Fraction": " ", "Street": "CLOVERLEAF", "Suffix1": "DR", "Suffix2": " ", "City": "CARNEGIE", "Zip": "15106-1556", "Leadman": "49", "MuniName": "COLLIER", "MWD": "1240003", "MWD2": 1240003, "NewAddress": "160 CLOVERLEAF DR" }, "geometry": { "type": "Point", "coordinates": [ -80.110888461607814, 40.414614903754511 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 487, "OBJECTID": 488, "Muni": 125, "LocName": "ARMORY BUILDING", "Prefix": " ", "House": "835", "Fraction": " ", "Street": "FIFTH", "Suffix1": "AVE", "Suffix2": " ", "City": "CORAOPOLIS", "Zip": "15108-3926", "Leadman": "51", "MuniName": "CORAOPOLIS", "MWD": "1250101", "MWD2": 1250101, "NewAddress": "835 FIFTH AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.168865998438633, 40.519460598094767 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 488, "OBJECTID": 489, "Muni": 125, "LocName": "ARMORY BUILDING", "Prefix": " ", "House": "835", "Fraction": " ", "Street": "FIFTH", "Suffix1": "AVE", "Suffix2": " ", "City": "CORAOPOLIS", "Zip": "15108-3926", "Leadman": "51", "MuniName": "CORAOPOLIS", "MWD": "1250102", "MWD2": 1250102, "NewAddress": "835 FIFTH AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.168782433652936, 40.519433693512468 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 489, "OBJECTID": 490, "Muni": 125, "LocName": "CORAOPOLIS BORO MUNICIPAL BLDG", "Prefix": " ", "House": "1012", "Fraction": " ", "Street": "5TH", "Suffix1": "AVE", "Suffix2": " ", "City": "CORAOPOLIS", "Zip": "15108-1821", "Leadman": "51", "MuniName": "CORAOPOLIS", "MWD": "1250301", "MWD2": 1250301, "NewAddress": "1012 5TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.163999907263516, 40.516960864794036 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 490, "OBJECTID": 491, "Muni": 125, "LocName": "CORAOPOLIS BORO MUNICIPAL BLDG", "Prefix": " ", "House": "1012", "Fraction": " ", "Street": "5TH", "Suffix1": "AVE", "Suffix2": " ", "City": "CORAOPOLIS", "Zip": "15108-1821", "Leadman": "51", "MuniName": "CORAOPOLIS", "MWD": "1250302", "MWD2": 1250302, "NewAddress": "1012 5TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.163943899990954, 40.51706632209244 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 491, "OBJECTID": 492, "Muni": 126, "LocName": "CRAFTON ELEMENTARY SCHOOL", "Prefix": " ", "House": "1874", "Fraction": " ", "Street": "CRAFTON", "Suffix1": "BLVD", "Suffix2": " ", "City": "CRAFTON", "Zip": "15205-3104", "Leadman": "18", "MuniName": "CRAFTON", "MWD": "1260102", "MWD2": 1260102, "NewAddress": "1874 CRAFTON BLVD" }, "geometry": { "type": "Point", "coordinates": [ -80.067067712998877, 40.431023635141102 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 492, "OBJECTID": 493, "Muni": 128, "LocName": "MT LEB METH CH ASBURY CTR", "Prefix": "W", "House": "3319", "Fraction": " ", "Street": "LIBERTY", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15216-2201", "Leadman": "54", "MuniName": "DORMONT", "MWD": "1280002", "MWD2": 1280002, "NewAddress": "3319 LIBERTY AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.042172451144268, 40.388704667637484 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 493, "OBJECTID": 494, "Muni": 128, "LocName": "DORMONT MUNI BLDG GYM LOBBY", "Prefix": " ", "House": "1444", "Fraction": " ", "Street": "HILLSDALE", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15216-2019", "Leadman": "54", "MuniName": "DORMONT", "MWD": "1280006", "MWD2": 1280006, "NewAddress": "1444 HILLSDALE AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.03795501370854, 40.394461159256061 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 494, "OBJECTID": 495, "Muni": 185, "LocName": "HEBRON U. P. CHURCH-ROOM 101", "Prefix": " ", "House": "10460", "Fraction": " ", "Street": "FRANKSTOWN", "Suffix1": "RD", "Suffix2": " ", "City": "PENN HILLS", "Zip": "15235-2916", "Leadman": "35", "MuniName": "PENN HILLS", "MWD": "1850204", "MWD2": 1850204, "NewAddress": "10460 FRANKSTOWN RD" }, "geometry": { "type": "Point", "coordinates": [ -79.845906440431307, 40.461020087644393 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 495, "OBJECTID": 496, "Muni": 185, "LocName": "ZION LUTHERAN CHURCH HALL", "Prefix": " ", "House": "11609", "Fraction": " ", "Street": "FRANKSTOWN", "Suffix1": "RD", "Suffix2": " ", "City": "PENN HILLS", "Zip": "15235-3320", "Leadman": "35", "MuniName": "PENN HILLS", "MWD": "1850302", "MWD2": 1850302, "NewAddress": "11609 FRANKSTOWN RD" }, "geometry": { "type": "Point", "coordinates": [ -79.82778218438105, 40.465506389142831 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 496, "OBJECTID": 497, "Muni": 185, "LocName": "ST BARTHOLOMEW CHURCH", "Prefix": " ", "House": "111", "Fraction": " ", "Street": "ERHARDT", "Suffix1": "DR", "Suffix2": " ", "City": "PENN HILLS", "Zip": "15235-1715", "Leadman": "35", "MuniName": "PENN HILLS", "MWD": "1850303", "MWD2": 1850303, "NewAddress": "111 ERHARDT DR" }, "geometry": { "type": "Point", "coordinates": [ -79.840444713516533, 40.465313159670572 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 497, "OBJECTID": 498, "Muni": 185, "LocName": "ST BARTHOLOMEW CHURCH", "Prefix": " ", "House": "111", "Fraction": " ", "Street": "ERHARDT", "Suffix1": "DR", "Suffix2": " ", "City": "PENN HILLS", "Zip": "15235-1715", "Leadman": "35", "MuniName": "PENN HILLS", "MWD": "1850304", "MWD2": 1850304, "NewAddress": "111 ERHARDT DR" }, "geometry": { "type": "Point", "coordinates": [ -79.839870774013178, 40.465203010196902 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 498, "OBJECTID": 499, "Muni": 185, "LocName": "LAKETON HGTS METHODIST CHURCH", "Prefix": " ", "House": "9601", "Fraction": " ", "Street": "FRANKSTOWN", "Suffix1": "RD", "Suffix2": " ", "City": "PENN HILLS", "Zip": "15235-1542", "Leadman": "35", "MuniName": "PENN HILLS", "MWD": "1850305", "MWD2": 1850305, "NewAddress": "9601 FRANKSTOWN RD" }, "geometry": { "type": "Point", "coordinates": [ -79.859060531653384, 40.462408042418495 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 499, "OBJECTID": 500, "Muni": 185, "LocName": "ZION LUTHERAN CH.", "Prefix": " ", "House": "11609", "Fraction": " ", "Street": "FRANKSTOWN", "Suffix1": "RD", "Suffix2": " ", "City": "PENN HILLS", "Zip": "15235-3320", "Leadman": "35", "MuniName": "PENN HILLS", "MWD": "1850306", "MWD2": 1850306, "NewAddress": "11609 FRANKSTOWN RD" }, "geometry": { "type": "Point", "coordinates": [ -79.828070713879654, 40.465422397229872 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 500, "OBJECTID": 501, "Muni": 185, "LocName": "ST JAMES EPISCOPAL CHURCH", "Prefix": " ", "House": "11524", "Fraction": " ", "Street": "FRANKSTOWN", "Suffix1": "RD", "Suffix2": " ", "City": "PENN HILLS", "Zip": "15235-3219", "Leadman": "35", "MuniName": "PENN HILLS", "MWD": "1850401", "MWD2": 1850401, "NewAddress": "11524 FRANKSTOWN RD" }, "geometry": { "type": "Point", "coordinates": [ -79.829727254340625, 40.463230995445507 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 501, "OBJECTID": 502, "Muni": 185, "LocName": "ST JAMES EPISCOPAL CHURCH FELLOW HALL", "Prefix": " ", "House": "11524", "Fraction": " ", "Street": "FRANKSTOWN", "Suffix1": "RD", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15235-3005", "Leadman": "35", "MuniName": "PENN HILLS", "MWD": "1850402", "MWD2": 1850402, "NewAddress": "11524 FRANKSTOWN RD" }, "geometry": { "type": "Point", "coordinates": [ -79.829736105740437, 40.463715742428164 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 502, "OBJECTID": 503, "Muni": 185, "LocName": "ST BARTHOLOMEW CHURCH", "Prefix": " ", "House": "111", "Fraction": " ", "Street": "ERHARDT", "Suffix1": "RD", "Suffix2": " ", "City": "PENN HILLS", "Zip": "15235-3219", "Leadman": "35", "MuniName": "PENN HILLS", "MWD": "1850403", "MWD2": 1850403, "NewAddress": "111 ERHARDT DR" }, "geometry": { "type": "Point", "coordinates": [ -79.8405268054251, 40.464987853431289 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 503, "OBJECTID": 504, "Muni": 185, "LocName": "ST JAMES EPISCOPAL CHURCH", "Prefix": " ", "House": "1424", "Fraction": " ", "Street": "FRANKSTOWN", "Suffix1": "RD", "Suffix2": " ", "City": "PENN HILLS", "Zip": "15235-3219", "Leadman": "35", "MuniName": "PENN HILLS", "MWD": "1850404", "MWD2": 1850404, "NewAddress": "1424 FRANKSTOWN RD" }, "geometry": { "type": "Point", "coordinates": [ -79.829720050697674, 40.463025896173278 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 504, "OBJECTID": 505, "Muni": 185, "LocName": "ST BARTHOLOMEW CHURCH", "Prefix": " ", "House": "111", "Fraction": " ", "Street": "ERHARDT", "Suffix1": "RD", "Suffix2": " ", "City": "PENN HILLS", "Zip": "15235-3219", "Leadman": "35", "MuniName": "PENN HILLS", "MWD": "1850405", "MWD2": 1850405, "NewAddress": "111 ERHARDT RD" }, "geometry": { "type": "Point", "coordinates": [ -79.840518436972985, 40.464650327218962 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 505, "OBJECTID": 506, "Muni": 185, "LocName": "JEFFERSON MANOR-COMMUNITY RM.", "Prefix": " ", "House": "201", "Fraction": " ", "Street": "JEFFERSON", "Suffix1": "RD", "Suffix2": " ", "City": "PENN HILLS", "Zip": "15235-3700", "Leadman": "35", "MuniName": "PENN HILLS", "MWD": "1850501", "MWD2": 1850501, "NewAddress": "201 JEFFERSON RD" }, "geometry": { "type": "Point", "coordinates": [ -79.822797615285197, 40.465291161643144 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 506, "OBJECTID": 507, "Muni": 185, "LocName": "FREE METHODIST CHURCH", "Prefix": " ", "House": "715", "Fraction": " ", "Street": "UNIVERSAL", "Suffix1": "RD", "Suffix2": " ", "City": "PENN HILLS", "Zip": "15235-3756", "Leadman": "35", "MuniName": "PENN HILLS", "MWD": "1850502", "MWD2": 1850502, "NewAddress": "715 UNIVERSAL RD" }, "geometry": { "type": "Point", "coordinates": [ -79.813585282471877, 40.461902131092884 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 507, "OBJECTID": 508, "Muni": 185, "LocName": "PENN HILLS ELEMENTARY LOBBY FRT ENT", "Prefix": " ", "House": "1079", "Fraction": " ", "Street": "JEFFERSON", "Suffix1": "RD", "Suffix2": " ", "City": "PENN HILLS", "Zip": "15235-4723", "Leadman": "35", "MuniName": "PENN HILLS", "MWD": "1850503", "MWD2": 1850503, "NewAddress": "1079 JEFFERSON RD" }, "geometry": { "type": "Point", "coordinates": [ -79.805889677066105, 40.450578039891461 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 508, "OBJECTID": 509, "Muni": 185, "LocName": "PENN HILLS ELEMENTARY LOBBY FRT ENT", "Prefix": " ", "House": "1079", "Fraction": " ", "Street": "JEFFERSON", "Suffix1": "RD", "Suffix2": " ", "City": "PENN HILLS", "Zip": "15235-4723", "Leadman": "35", "MuniName": "PENN HILLS", "MWD": "1850504", "MWD2": 1850504, "NewAddress": "1079 JEFFERSON RD" }, "geometry": { "type": "Point", "coordinates": [ -79.805613937338862, 40.450504135205129 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 509, "OBJECTID": 510, "Muni": 185, "LocName": "FAITH COM CH SOCIAL LWR DRVWY DR", "Prefix": " ", "House": "501", "Fraction": " ", "Street": "JEFFERSON", "Suffix1": "RD", "Suffix2": " ", "City": "PENN HILLS", "Zip": "15235-3726", "Leadman": "35", "MuniName": "PENN HILLS", "MWD": "1850505", "MWD2": 1850505, "NewAddress": "501 JEFFERSON RD" }, "geometry": { "type": "Point", "coordinates": [ -79.818388845438193, 40.461134759500851 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 510, "OBJECTID": 511, "Muni": 185, "LocName": "PENN HILLS ELEMENTARY LOBBY FRT ENT", "Prefix": " ", "House": "1079", "Fraction": " ", "Street": "JEFFERSON", "Suffix1": "RD", "Suffix2": " ", "City": "PENN HILLS", "Zip": "15235-4723", "Leadman": "35", "MuniName": "PENN HILLS", "MWD": "1850506", "MWD2": 1850506, "NewAddress": "1079 JEFFERSON RD" }, "geometry": { "type": "Point", "coordinates": [ -79.805702722377418, 40.450738837531439 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 511, "OBJECTID": 512, "Muni": 185, "LocName": "PENN HILLS ALLIANCE CHURCH", "Prefix": " ", "House": "7605", "Fraction": " ", "Street": "SALTSBURG", "Suffix1": "RD", "Suffix2": " ", "City": "PENN HILLS", "Zip": "15235-3644", "Leadman": "56", "MuniName": "PENN HILLS", "MWD": "1850601", "MWD2": 1850601, "NewAddress": "7605 SALTSBURG RD" }, "geometry": { "type": "Point", "coordinates": [ -79.779422668197583, 40.477192594474957 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 512, "OBJECTID": 513, "Muni": 185, "LocName": "FREE METHODIST CHURCH", "Prefix": " ", "House": "715", "Fraction": " ", "Street": "UNIVERSAL", "Suffix1": "RD", "Suffix2": " ", "City": "PENN HILLS", "Zip": "15235-3839", "Leadman": "35", "MuniName": "PENN HILLS", "MWD": "1850602", "MWD2": 1850602, "NewAddress": "715 UNIVERSAL RD" }, "geometry": { "type": "Point", "coordinates": [ -79.813965502619013, 40.462087619885295 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 513, "OBJECTID": 514, "Muni": 185, "LocName": "PENN HILLS SENIOR HIGH SCHOOL", "Prefix": " ", "House": "309", "Fraction": " ", "Street": "COLLINS", "Suffix1": "DR", "Suffix2": " ", "City": "PENN HILLS", "Zip": "15235-3436", "Leadman": "35", "MuniName": "PENN HILLS", "MWD": "1850603", "MWD2": 1850603, "NewAddress": "309 COLLINS DR" }, "geometry": { "type": "Point", "coordinates": [ -79.814586522325897, 40.466361994118152 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 514, "OBJECTID": 515, "Muni": 225, "LocName": "WHITEHALL ELEMENTARY SCHOOL", "Prefix": " ", "House": "4900", "Fraction": " ", "Street": "CURRY", "Suffix1": "RD", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15236-1817", "Leadman": "34", "MuniName": "WHITEHALL", "MWD": "2250011", "MWD2": 2250011, "NewAddress": "4900 CURRY RD" }, "geometry": { "type": "Point", "coordinates": [ -79.99384232882845, 40.352751723798988 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 515, "OBJECTID": 516, "Muni": 225, "LocName": "BALDWIN HIGH SCHOOL GYM HALL", "Prefix": " ", "House": "4653", "Fraction": " ", "Street": "CLAIRTON", "Suffix1": "BLVD", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15236-2149", "Leadman": "34", "MuniName": "WHITEHALL", "MWD": "2250012", "MWD2": 2250012, "NewAddress": "4653 CLAIRTON BLVD" }, "geometry": { "type": "Point", "coordinates": [ -79.978037259639393, 40.355705932248846 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 516, "OBJECTID": 517, "Muni": 225, "LocName": "ST.GABRIEL OF THE SORROW VIR SCH", "Prefix": " ", "House": "5200", "Fraction": " ", "Street": "GREENRIDGE", "Suffix1": "DR", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15236-1742", "Leadman": "34", "MuniName": "WHITEHALL", "MWD": "2250013", "MWD2": 2250013, "NewAddress": "5200 GREENRIDGE DR" }, "geometry": { "type": "Point", "coordinates": [ -80.006092259096121, 40.356292699777718 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 517, "OBJECTID": 518, "Muni": 225, "LocName": "BALDWIN COMM. U M CHURCH-ASBURY HALL", "Prefix": " ", "House": "5001", "Fraction": " ", "Street": "BAPTIST", "Suffix1": "RD", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15236-1717", "Leadman": "34", "MuniName": "WHITEHALL", "MWD": "2250014", "MWD2": 2250014, "NewAddress": "5001 BAPTIST RD" }, "geometry": { "type": "Point", "coordinates": [ -80.000069091980038, 40.357401145231357 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 518, "OBJECTID": 519, "Muni": 225, "LocName": "BALDWIN COMM. U M CH.-WESLEY HALL", "Prefix": " ", "House": "5001", "Fraction": " ", "Street": "BAPTIST", "Suffix1": "RD", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15236-1717", "Leadman": "34", "MuniName": "WHITEHALL", "MWD": "2250015", "MWD2": 2250015, "NewAddress": "5001 BAPTIST RD" }, "geometry": { "type": "Point", "coordinates": [ -80.000327791100901, 40.357421404802906 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 519, "OBJECTID": 520, "Muni": 225, "LocName": "BALDWIN COMM. U M CHURCH-ASBURY HALL", "Prefix": " ", "House": "5001", "Fraction": " ", "Street": "BAPTIST", "Suffix1": "RD", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15236-1717", "Leadman": "34", "MuniName": "WHITEHALL", "MWD": "2250016", "MWD2": 2250016, "NewAddress": "5001 BAPTIST RD" }, "geometry": { "type": "Point", "coordinates": [ -80.000210064511379, 40.357349054056222 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 520, "OBJECTID": 521, "Muni": 226, "LocName": "WHITE OAK VOL FIRE DEPT #1", "Prefix": " ", "House": "1130", "Fraction": " ", "Street": "CALIFORNIA", "Suffix1": "AVE", "Suffix2": " ", "City": "MCKEESPORT", "Zip": "15131-1348", "Leadman": "25", "MuniName": "WHITE OAK", "MWD": "2260001", "MWD2": 2260001, "NewAddress": "1130 CALIFORNIA AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.821067767162901, 40.354741965868335 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 521, "OBJECTID": 522, "Muni": 226, "LocName": "WESLEY UNITED METHODIST CHURCH", "Prefix": " ", "House": "1201", "Fraction": " ", "Street": "PRESCOTT", "Suffix1": "ST", "Suffix2": " ", "City": "MCKEESPORT", "Zip": "15131-1548", "Leadman": "25", "MuniName": "WHITE OAK", "MWD": "2260002", "MWD2": 2260002, "NewAddress": "1201 PRESCOTT ST" }, "geometry": { "type": "Point", "coordinates": [ -79.822530034814619, 40.346845856763508 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 522, "OBJECTID": 523, "Muni": 226, "LocName": "FRANCIS MCCLURE SCHOOL ENT G", "Prefix": " ", "House": "500", "Fraction": " ", "Street": "LONGVUE", "Suffix1": "AVE", "Suffix2": " ", "City": "MCKEESPORT", "Zip": "15131-161", "Leadman": "25", "MuniName": "WHITE OAK", "MWD": "2260003", "MWD2": 2260003, "NewAddress": "500 LONGVUE AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.807903407402264, 40.350081584710004 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 523, "OBJECTID": 524, "Muni": 226, "LocName": "ST. ANGELA SCHOOL", "Prefix": " ", "House": "1640", "Fraction": " ", "Street": "FAWCETT", "Suffix1": "AVE", "Suffix2": " ", "City": "MCKEESPORT", "Zip": "15131-1802", "Leadman": "25", "MuniName": "WHITE OAK", "MWD": "2260004", "MWD2": 2260004, "NewAddress": "1640 FAWCETT AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.818264620901999, 40.345826541831848 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 524, "OBJECTID": 525, "Muni": 226, "LocName": "SAMSONS MILLS PRESBYTERIAN CHURCH", "Prefix": " ", "House": "1665", "Fraction": " ", "Street": "LINCOLN", "Suffix1": "WAY", "Suffix2": " ", "City": "MCKEESPORT", "Zip": "15131-1719", "Leadman": "25", "MuniName": "WHITE OAK", "MWD": "2260005", "MWD2": 2260005, "NewAddress": "1665 LINCOLN WAY" }, "geometry": { "type": "Point", "coordinates": [ -79.815243191603699, 40.345993331012032 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 525, "OBJECTID": 526, "Muni": 226, "LocName": "RAINBOW VOL. FIRE CO", "Prefix": " ", "House": "2916", "Fraction": " ", "Street": "JACKS RUN", "Suffix1": "RD", "Suffix2": " ", "City": "MCKEESPORT", "Zip": "15131-2506", "Leadman": "25", "MuniName": "WHITE OAK", "MWD": "2260006", "MWD2": 2260006, "NewAddress": "2916 JACKS RUN RD" }, "geometry": { "type": "Point", "coordinates": [ -79.801604160347381, 40.341013461161197 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 526, "OBJECTID": 527, "Muni": 226, "LocName": "WHITE OAK MUNIC BLDG-COUNCIL CH.", "Prefix": " ", "House": "2280", "Fraction": " ", "Street": "LINCOLN", "Suffix1": "WAY", "Suffix2": " ", "City": "MCKEESPORT", "Zip": "15131-2408", "Leadman": "25", "MuniName": "WHITE OAK", "MWD": "2260007", "MWD2": 2260007, "NewAddress": "2280 LINCOLN WAY" }, "geometry": { "type": "Point", "coordinates": [ -79.79990371953356, 40.330853818763487 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 527, "OBJECTID": 528, "Muni": 227, "LocName": "TOWNSHIP BLDG.", "Prefix": " ", "House": "110", "Fraction": " ", "Street": "PEFFER", "Suffix1": "RD", "Suffix2": " ", "City": "TURTLE CREEK", "Zip": "15145-1148", "Leadman": "53", "MuniName": "WILKINS", "MWD": "2270101", "MWD2": 2270101, "NewAddress": "110 PEFFER RD" }, "geometry": { "type": "Point", "coordinates": [ -79.828979693318445, 40.418261622262314 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 528, "OBJECTID": 529, "Muni": 227, "LocName": "WILKINS TWP MUNI BLDG 1ST FL", "Prefix": " ", "House": "110", "Fraction": " ", "Street": "PEFFER", "Suffix1": "RD", "Suffix2": " ", "City": "TURTLE CREEK", "Zip": "15145-1148", "Leadman": "53", "MuniName": "WILKINS", "MWD": "2270102", "MWD2": 2270102, "NewAddress": "110 PEFFER RD" }, "geometry": { "type": "Point", "coordinates": [ -79.828822158488464, 40.419596073206094 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 529, "OBJECTID": 530, "Muni": 227, "LocName": "BRICKLAYERS & ALLIED CRAFTWORKERS", "Prefix": " ", "House": "100", "Fraction": " ", "Street": "KINGSTON", "Suffix1": "DR", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15235-5254", "Leadman": "53", "MuniName": "WILKINS", "MWD": "2270104", "MWD2": 2270104, "NewAddress": "100 KINGSTON DR" }, "geometry": { "type": "Point", "coordinates": [ -79.809090886184208, 40.431035602357952 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 530, "OBJECTID": 531, "Muni": 227, "LocName": "LAUREL VILLAGE APARTMENTS LEASING OFFICE", "Prefix": " ", "House": "1000", "Fraction": " ", "Street": "PENN CENTER", "Suffix1": "BLVD", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15235-5312", "Leadman": "53", "MuniName": "WILKINS", "MWD": "2270105", "MWD2": 2270105, "NewAddress": "1000 PENN CENTER BLVD" }, "geometry": { "type": "Point", "coordinates": [ -79.81384867420914, 40.426219967097303 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 531, "OBJECTID": 532, "Muni": 227, "LocName": "VOLUNTEER FIRE CO. #3", "Prefix": " ", "House": "109", "Fraction": " ", "Street": "POWELL", "Suffix1": "ST", "Suffix2": " ", "City": "EAST PITTSBURGH", "Zip": "15112-1608", "Leadman": "53", "MuniName": "WILKINS", "MWD": "2270201", "MWD2": 2270201, "NewAddress": "109 POWELL ST" }, "geometry": { "type": "Point", "coordinates": [ -79.839020490989768, 40.417805628398753 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 532, "OBJECTID": 533, "Muni": 227, "LocName": "VOLUNTEER FIRE CO. #3", "Prefix": " ", "House": "109", "Fraction": " ", "Street": "POWELL", "Suffix1": "ST", "Suffix2": " ", "City": "EAST PITTSBURGH", "Zip": "15112-1608", "Leadman": "53", "MuniName": "WILKINS", "MWD": "2270202", "MWD2": 2270202, "NewAddress": "109 POWELL ST" }, "geometry": { "type": "Point", "coordinates": [ -79.839086560944949, 40.417931172326938 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 533, "OBJECTID": 534, "Muni": 228, "LocName": "TURNER SCHOOL", "Prefix": " ", "House": "1836", "Fraction": " ", "Street": "LAKETON", "Suffix1": "RD", "Suffix2": " ", "City": "WILKINSBURG", "Zip": "15221-1608", "Leadman": "52", "MuniName": "WILKINSBURG", "MWD": "2280101", "MWD2": 2280101, "NewAddress": "1836 LAKETON RD" }, "geometry": { "type": "Point", "coordinates": [ -79.865151509742759, 40.449159645472058 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 534, "OBJECTID": 535, "Muni": 228, "LocName": "ST MARKS AME CHURCH", "Prefix": " ", "House": "1409", "Fraction": " ", "Street": "MONTIER", "Suffix1": "ST", "Suffix2": " ", "City": "WILKINSBURG", "Zip": "15221-2402", "Leadman": "52", "MuniName": "WILKINSBURG", "MWD": "2280102", "MWD2": 2280102, "NewAddress": "1409 MONTIER ST" }, "geometry": { "type": "Point", "coordinates": [ -79.87478302712482, 40.444504401363211 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 535, "OBJECTID": 536, "Muni": 228, "LocName": "GRAHAM FLD GR ST VISIT LOCKER RM", "Prefix": " ", "House": "1125", "Fraction": " ", "Street": "PRINCETON", "Suffix1": "BLVD", "Suffix2": " ", "City": "WILKINSBURG", "Zip": "15221", "Leadman": "52", "MuniName": "WILKINSBURG", "MWD": "2280106", "MWD2": 2280106, "NewAddress": "1125 PRINCETON BLVD" }, "geometry": { "type": "Point", "coordinates": [ -79.872954306225822, 40.441179209840719 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 536, "OBJECTID": 537, "Muni": 228, "LocName": "JOHNSTON SCHOOL", "Prefix": " ", "House": "1256", "Fraction": " ", "Street": "FRANKLIN", "Suffix1": "AVE", "Suffix2": " ", "City": "WILKINSBURG", "Zip": "15221-3067", "Leadman": "52", "MuniName": "WILKINSBURG", "MWD": "2280201", "MWD2": 2280201, "NewAddress": "1256 FRANKLIN AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.874590279173049, 40.437656945736798 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 537, "OBJECTID": 538, "Muni": 228, "LocName": "BEACON HILL CONDO-REC. RM. GAR", "Prefix": " ", "House": "745", "Fraction": " ", "Street": "BEACON HILL", "Suffix1": "DR", "Suffix2": " ", "City": "WILKINSBURG", "Zip": "15221-2542", "Leadman": "52", "MuniName": "WILKINSBURG", "MWD": "2280202", "MWD2": 2280202, "NewAddress": "745 BEACON HILL DR" }, "geometry": { "type": "Point", "coordinates": [ -79.863430188519416, 40.442640688896333 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 538, "OBJECTID": 539, "Muni": 228, "LocName": "JOHNSTON SCHOOL", "Prefix": " ", "House": "1256", "Fraction": " ", "Street": "FRANKLIN", "Suffix1": "AVE", "Suffix2": " ", "City": "WILKINSBURG", "Zip": "15221-293", "Leadman": "52", "MuniName": "WILKINSBURG", "MWD": "2280203", "MWD2": 2280203, "NewAddress": "1256 FRANKLIN AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.874566571555192, 40.437509612697923 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 539, "OBJECTID": 540, "Muni": 228, "LocName": "WILKINSBURG BORO OWNED BUILDING", "Prefix": " ", "House": "716", "Fraction": " ", "Street": "ROSS", "Suffix1": "AVE", "Suffix2": " ", "City": "WILKINSBURG", "Zip": "15221-2329", "Leadman": "52", "MuniName": "WILKINSBURG", "MWD": "2280204", "MWD2": 2280204, "NewAddress": "716 ROSS AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.885767121163397, 40.443243272410541 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 540, "OBJECTID": 541, "Muni": 228, "LocName": "ST JAMES SCHOOL LOBBY", "Prefix": " ", "House": "725", "Fraction": " ", "Street": "REBECCA", "Suffix1": "AVE", "Suffix2": " ", "City": "WILKINSBURG", "Zip": "15221-2951", "Leadman": "52", "MuniName": "WILKINSBURG", "MWD": "2280205", "MWD2": 2280205, "NewAddress": "725 REBECCA AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.885405954821735, 40.440464359315243 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 541, "OBJECTID": 542, "Muni": 228, "LocName": "MIFFLIN METHODIST CHURCH", "Prefix": " ", "House": "905", "Fraction": " ", "Street": "MIFFLIN", "Suffix1": "AVE", "Suffix2": " ", "City": "WILKINSBURG", "Zip": "15221-3439", "Leadman": "52", "MuniName": "WILKINSBURG", "MWD": "2280301", "MWD2": 2280301, "NewAddress": "905 MIFFLIN AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.892456299924845, 40.43638590777126 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 542, "OBJECTID": 543, "Muni": 228, "LocName": "SECOND UNITED PRESBYTERIAN CHURCH", "Prefix": " ", "House": "300", "Fraction": " ", "Street": "HAY", "Suffix1": "ST", "Suffix2": " ", "City": "WILKINSBURG", "Zip": "15221-3317", "Leadman": "52", "MuniName": "WILKINSBURG", "MWD": "2280302", "MWD2": 2280302, "NewAddress": "300 HAY ST" }, "geometry": { "type": "Point", "coordinates": [ -79.888478124627085, 40.438911367151434 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 543, "OBJECTID": 544, "Muni": 128, "LocName": "MT LEB METH CH ASBURY CTR", "Prefix": "W", "House": "3319", "Fraction": " ", "Street": "LIBERTY", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15216-2201", "Leadman": "54", "MuniName": "DORMONT", "MWD": "1280007", "MWD2": 1280007, "NewAddress": "3319 LIBERTY AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.042304048782256, 40.388693404756268 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 544, "OBJECTID": 545, "Muni": 128, "LocName": "MT LEBANON METHODIST CHURCH", "Prefix": "W", "House": "3319", "Fraction": " ", "Street": "LIBERTY", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15216-2201", "Leadman": "54", "MuniName": "DORMONT", "MWD": "1280008", "MWD2": 1280008, "NewAddress": "3319 LIBERTY AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.04220851846496, 40.388767385726055 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 545, "OBJECTID": 546, "Muni": 128, "LocName": "DORMONT ELEMENTARY SCHOOL", "Prefix": " ", "House": "3200", "Fraction": " ", "Street": "ANNAPOLIS", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15216-1836", "Leadman": "54", "MuniName": "DORMONT", "MWD": "1280009", "MWD2": 1280009, "NewAddress": "3200 ANNAPOLIS AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.043365140367825, 40.39435490821824 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 546, "OBJECTID": 547, "Muni": 128, "LocName": "DORMONT ELEMENTARY SCHOOL", "Prefix": " ", "House": "3200", "Fraction": " ", "Street": "ANNAPOLIS", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15216-1836", "Leadman": "54", "MuniName": "DORMONT", "MWD": "1280010", "MWD2": 1280010, "NewAddress": "3200 ANNAPOLIS AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.04360403951469, 40.394436137976825 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 547, "OBJECTID": 548, "Muni": 129, "LocName": "DRAVOSBURG BORO BLDG COUNCIL CHAMBER", "Prefix": " ", "House": "226", "Fraction": " ", "Street": "MAPLE", "Suffix1": "AVE", "Suffix2": " ", "City": "DRAVOSBURG", "Zip": "15034-1222", "Leadman": "22", "MuniName": "DRAVOSBURG", "MWD": "1290001", "MWD2": 1290001, "NewAddress": "226 MAPLE AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.891785343616476, 40.347659651938088 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 548, "OBJECTID": 549, "Muni": 129, "LocName": "DRAVOSBURG MUNICIPAL BLDG", "Prefix": " ", "House": "226", "Fraction": " ", "Street": "MAPLE", "Suffix1": "AVE", "Suffix2": " ", "City": "DRAVOSBURG", "Zip": "15034-1032", "Leadman": "22", "MuniName": "DRAVOSBURG", "MWD": "1290002", "MWD2": 1290002, "NewAddress": "226 MAPLE AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.891796553433352, 40.347761393946485 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 549, "OBJECTID": 550, "Muni": 130, "LocName": "ST. HEDWIG CHURCH", "Prefix": "S", "House": "105", "Fraction": " ", "Street": "5TH", "Suffix1": "ST", "Suffix2": " ", "City": "DUQUESNE", "Zip": "15110-1647", "Leadman": "23", "MuniName": "DUQUESNE", "MWD": "1300104", "MWD2": 1300104, "NewAddress": "105 5TH ST" }, "geometry": { "type": "Point", "coordinates": [ -79.849246180336266, 40.370933223333857 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 550, "OBJECTID": 551, "Muni": 131, "LocName": "EAST DEER MUNICIPAL BUILDING", "Prefix": " ", "House": "927", "Fraction": " ", "Street": "FREEPORT", "Suffix1": "RD", "Suffix2": " ", "City": "CREIGHTON", "Zip": "15030-1049", "Leadman": "45", "MuniName": "EAST DEER", "MWD": "1310100", "MWD2": 1310100, "NewAddress": "927 FREEPORT RD" }, "geometry": { "type": "Point", "coordinates": [ -79.778290557294824, 40.583326319984465 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 551, "OBJECTID": 552, "Muni": 133, "LocName": "E. PITTSBURGH COM CTR GYM REAR ENT", "Prefix": " ", "House": "506", "Fraction": " ", "Street": "BESSEMER", "Suffix1": "AVE", "Suffix2": " ", "City": "EAST PITTSBURGH", "Zip": "15112-1100", "Leadman": "53", "MuniName": "E PITTSBURGH", "MWD": "1330100", "MWD2": 1330100, "NewAddress": "506 BESSEMER AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.841146371381129, 40.394505653099671 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 552, "OBJECTID": 553, "Muni": 133, "LocName": "E. PITTSBURGH COM CTR GYM REAR ENT", "Prefix": " ", "House": "506", "Fraction": " ", "Street": "BESSEMER", "Suffix1": "AVE", "Suffix2": " ", "City": "EAST PITTSBURGH", "Zip": "15112-1100", "Leadman": "53", "MuniName": "E PITTSBURGH", "MWD": "1330200", "MWD2": 1330200, "NewAddress": "506 BESSEMER AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.841055999243054, 40.394499272887707 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 553, "OBJECTID": 554, "Muni": 133, "LocName": "E. PITTSBURGH COM CTR GYM REAR ENT", "Prefix": " ", "House": "506", "Fraction": " ", "Street": "BESSEMER", "Suffix1": "AVE", "Suffix2": " ", "City": "EAST PITTSBURGH", "Zip": "15112-1100", "Leadman": "53", "MuniName": "E PITTSBURGH", "MWD": "1330300", "MWD2": 1330300, "NewAddress": "506 BESSEMER AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.841044664921696, 40.39453956310475 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 554, "OBJECTID": 555, "Muni": 134, "LocName": "EDGEWOOD PRIMARY SCHOOL \/ REAR ENT", "Prefix": " ", "House": "241", "Fraction": " ", "Street": "MAPLE", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15218-1523", "Leadman": "31", "MuniName": "EDGEWOOD", "MWD": "1340001", "MWD2": 1340001, "NewAddress": "241 MAPLE AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.882757673592764, 40.432703842427543 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 555, "OBJECTID": 556, "Muni": 135, "LocName": "EDGEWORTH CLUB BALLROOM", "Prefix": " ", "House": "511", "Fraction": " ", "Street": "EAST", "Suffix1": "DR", "Suffix2": " ", "City": "EDGEWORTH", "Zip": "15143-1114", "Leadman": "37", "MuniName": "EDGEWORTH", "MWD": "1350001", "MWD2": 1350001, "NewAddress": "511 EAST DR" }, "geometry": { "type": "Point", "coordinates": [ -80.187740575660186, 40.546166295131876 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 556, "OBJECTID": 557, "Muni": 135, "LocName": "EDGEWORTH CLUB BALLROOM", "Prefix": " ", "House": "511", "Fraction": " ", "Street": "EAST", "Suffix1": "DR", "Suffix2": " ", "City": "EDGEWORTH", "Zip": "15143-1114", "Leadman": "37", "MuniName": "EDGEWORTH", "MWD": "1350002", "MWD2": 1350002, "NewAddress": "511 EAST DR" }, "geometry": { "type": "Point", "coordinates": [ -80.187894913546671, 40.546209660199217 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 557, "OBJECTID": 558, "Muni": 136, "LocName": "BORO BLDG", "Prefix": "S", "House": "206", "Fraction": " ", "Street": "3RD", "Suffix1": "AVE", "Suffix2": " ", "City": "ELIZABETH", "Zip": "15037-1527", "Leadman": "46", "MuniName": "ELIZABETH BR", "MWD": "1360001", "MWD2": 1360001, "NewAddress": "206 3RD AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.887336894089529, 40.271838699376858 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 558, "OBJECTID": 559, "Muni": 137, "LocName": "HIGHLANDS COM UN METH CHURCH", "Prefix": " ", "House": "100", "Fraction": " ", "Street": "TIMOTHY", "Suffix1": "DR", "Suffix2": " ", "City": "ELIZABETH", "Zip": "15037-2340", "Leadman": "46", "MuniName": "ELIZABETH TP", "MWD": "1370101", "MWD2": 1370101, "NewAddress": "100 TIMOTHY DR" }, "geometry": { "type": "Point", "coordinates": [ -79.842091101553024, 40.269777399258089 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 559, "OBJECTID": 560, "Muni": 137, "LocName": "ELIZABETH FORWARD MIDDLE SCHOOL", "Prefix": " ", "House": "401", "Fraction": " ", "Street": "ROCKS RUN", "Suffix1": "RD", "Suffix2": " ", "City": "ELIZABETH", "Zip": "15037-2100", "Leadman": "46", "MuniName": "ELIZABETH TP", "MWD": "1370102", "MWD2": 1370102, "NewAddress": "401 ROCKS RUN RD" }, "geometry": { "type": "Point", "coordinates": [ -79.82640521339799, 40.274356369923375 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 560, "OBJECTID": 561, "Muni": 137, "LocName": "GREENOCK ELEMENTARY", "Prefix": " ", "House": "1101", "Fraction": " ", "Street": "GREENOCK BUENA VISTA", "Suffix1": "RD", "Suffix2": " ", "City": "MCKEESPORT", "Zip": "15135-2325", "Leadman": "46", "MuniName": "ELIZABETH TP", "MWD": "1370200", "MWD2": 1370200, "NewAddress": "1101 GREENOCK BUENA VISTA RD" }, "geometry": { "type": "Point", "coordinates": [ -79.802365202751389, 40.311882143357167 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 561, "OBJECTID": 562, "Muni": 137, "LocName": "BOSTON VOL FIRE CO", "Prefix": " ", "House": "6001", "Fraction": " ", "Street": "SMITHFIELD", "Suffix1": "ST", "Suffix2": " ", "City": "MCKEESPORT", "Zip": "15135-1140", "Leadman": "46", "MuniName": "ELIZABETH TP", "MWD": "1370501", "MWD2": 1370501, "NewAddress": "6001 SMITHFIELD ST" }, "geometry": { "type": "Point", "coordinates": [ -79.822570633007786, 40.313529749984369 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 562, "OBJECTID": 563, "Muni": 137, "LocName": "ELIZABETH FORWARD HIGH SCHOOL", "Prefix": " ", "House": "1000", "Fraction": " ", "Street": "WEIGLES HILLS", "Suffix1": "RD", "Suffix2": " ", "City": "ELIZABETH", "Zip": "15037-2416", "Leadman": "46", "MuniName": "ELIZABETH TP", "MWD": "1370601", "MWD2": 1370601, "NewAddress": "1000 WEIGLES HILLS RD" }, "geometry": { "type": "Point", "coordinates": [ -79.85585214165441, 40.254175487059207 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 563, "OBJECTID": 564, "Muni": 137, "LocName": "BLYTHDALE VFD", "Prefix": " ", "House": "1799", "Fraction": " ", "Street": "BLYTHDALE", "Suffix1": "RD", "Suffix2": " ", "City": "ELIZABETH", "Zip": "15037-2416", "Leadman": "46", "MuniName": "ELIZABETH TP", "MWD": "1370602", "MWD2": 1370602, "NewAddress": "1799 BLYTHDALE RD" }, "geometry": { "type": "Point", "coordinates": [ -79.802564166844036, 40.247980589883262 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 564, "OBJECTID": 565, "Muni": 137, "LocName": "ELIZABETH FORWARD SR HIGH", "Prefix": " ", "House": "1000", "Fraction": " ", "Street": "WEIGLES HILL", "Suffix1": "RD", "Suffix2": " ", "City": "ELIZABETH", "Zip": "15037-2100", "Leadman": "46", "MuniName": "ELIZABETH TP", "MWD": "1370701", "MWD2": 1370701, "NewAddress": "1000 WEIGLES HILL RD" }, "geometry": { "type": "Point", "coordinates": [ -79.856142520776402, 40.254555504911181 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 565, "OBJECTID": 566, "Muni": 138, "LocName": "SACRED HEART CHURCH", "Prefix": " ", "House": "154", "Fraction": " ", "Street": "ORCHARD", "Suffix1": "AVE", "Suffix2": " ", "City": "EMSWORTH", "Zip": "15202", "Leadman": "36", "MuniName": "EMSWORTH", "MWD": "1380001", "MWD2": 1380001, "NewAddress": "154 ORCHARD AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.097436665686331, 40.511291358688077 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 566, "OBJECTID": 567, "Muni": 138, "LocName": "SACRED HEART CHURCH", "Prefix": " ", "House": "154", "Fraction": " ", "Street": "ORCHARD", "Suffix1": "AVE", "Suffix2": " ", "City": "EMSWORTH", "Zip": "15202", "Leadman": "36", "MuniName": "EMSWORTH", "MWD": "1380002", "MWD2": 1380002, "NewAddress": "154 ORCHARD AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.097477809844364, 40.511409659818419 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 567, "OBJECTID": 568, "Muni": 141, "LocName": "FINDLAY TWP MUNICIPAL BLDG", "Prefix": " ", "House": "1271", "Fraction": " ", "Street": "RT 30", "Suffix1": " ", "Suffix2": " ", "City": "CLINTON", "Zip": "15026", "Leadman": "48", "MuniName": "FINDLAY", "MWD": "1410001", "MWD2": 1410001, "NewAddress": "1271 RT 30" }, "geometry": { "type": "Point", "coordinates": [ -80.296429909839659, 40.489858834174413 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 568, "OBJECTID": 569, "Muni": 141, "LocName": "IMPERIAL VOL FIRE CO 1ST FL", "Prefix": " ", "House": "115", "Fraction": " ", "Street": "MAIN", "Suffix1": "ST", "Suffix2": " ", "City": "IMPERIAL", "Zip": "15126", "Leadman": "48", "MuniName": "FINDLAY", "MWD": "1410003", "MWD2": 1410003, "NewAddress": "115 MAIN ST" }, "geometry": { "type": "Point", "coordinates": [ -80.25109958422027, 40.451874209294658 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 569, "OBJECTID": 570, "Muni": 142, "LocName": "FOREST HILLS PRESBY CHURCH", "Prefix": " ", "House": "1840", "Fraction": " ", "Street": "ARDMORE", "Suffix1": "BLVD", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15221-4408", "Leadman": "52", "MuniName": "FOREST HILLS", "MWD": "1420001", "MWD2": 1420001, "NewAddress": "1840 ARDMORE BLVD" }, "geometry": { "type": "Point", "coordinates": [ -79.861341063607824, 40.425057329386377 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 570, "OBJECTID": 571, "Muni": 142, "LocName": "SWIMMING POOL LODGE", "Prefix": " ", "House": "2071", "Fraction": " ", "Street": "ARDMORE", "Suffix1": "BLVD", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15221", "Leadman": "52", "MuniName": "FOREST HILLS", "MWD": "1420002", "MWD2": 1420002, "NewAddress": "2071 ARDMORE BLVD" }, "geometry": { "type": "Point", "coordinates": [ -79.850099934675114, 40.420127644725618 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 571, "OBJECTID": 572, "Muni": 142, "LocName": "HOPE LUTHERAN CHURCH", "Prefix": " ", "House": "335", "Fraction": " ", "Street": "RIDGE AVE AT BRADDOCK", "Suffix1": "RD", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15221", "Leadman": "52", "MuniName": "FOREST HILLS", "MWD": "1420003", "MWD2": 1420003, "NewAddress": "335 RIDGE AVE AT BRADDOCK RD" }, "geometry": { "type": "Point", "coordinates": [ -79.855206334861961, 40.428679152526534 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 572, "OBJECTID": 573, "Muni": 142, "LocName": "FOREST HILLS PRESBYTERIAN CHURCH", "Prefix": " ", "House": "1840", "Fraction": " ", "Street": "ARDMORE", "Suffix1": "BLVD", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15221-4408", "Leadman": "52", "MuniName": "FOREST HILLS", "MWD": "1420006", "MWD2": 1420006, "NewAddress": "1840 ARDMORE BLVD" }, "geometry": { "type": "Point", "coordinates": [ -79.860974513342725, 40.425015900494422 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 573, "OBJECTID": 574, "Muni": 142, "LocName": "FOREST HILLS V.F.D.", "Prefix": " ", "House": "2071", "Fraction": " ", "Street": "ARDMORE", "Suffix1": "BLVD", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15221", "Leadman": "52", "MuniName": "FOREST HILLS", "MWD": "1420007", "MWD2": 1420007, "NewAddress": "2071 ARDMORE BLVD" }, "geometry": { "type": "Point", "coordinates": [ -79.849702601740418, 40.420765628030296 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 574, "OBJECTID": 575, "Muni": 142, "LocName": "HOPE LUTHERAN CHURCH", "Prefix": " ", "House": "335", "Fraction": " ", "Street": "RIDGE AVE AT BRADDOCK", "Suffix1": "RD", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15221", "Leadman": "52", "MuniName": "FOREST HILLS", "MWD": "1420008", "MWD2": 1420008, "NewAddress": "335 RIDGE AVE AT BRADDOCK RD" }, "geometry": { "type": "Point", "coordinates": [ -79.855318034979376, 40.428677117242266 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 575, "OBJECTID": 576, "Muni": 144, "LocName": "FOX CHAPEL EPISCOPAL CHURCH", "Prefix": " ", "House": "630", "Fraction": " ", "Street": "SQUAW RUN", "Suffix1": "RD", "Suffix2": "E", "City": "PITTSBURGH", "Zip": "15238-1924", "Leadman": "38", "MuniName": "FOX CHAPEL", "MWD": "1440002", "MWD2": 1440002, "NewAddress": "630 SQUAW RUN RD" }, "geometry": { "type": "Point", "coordinates": [ -79.893147840358878, 40.526984580505136 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 576, "OBJECTID": 577, "Muni": 144, "LocName": "PRESBYTERIAN CHURCH", "Prefix": " ", "House": "384", "Fraction": " ", "Street": "FOX CHAPEL", "Suffix1": "RD", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15238-2343", "Leadman": "38", "MuniName": "FOX CHAPEL", "MWD": "1440003", "MWD2": 1440003, "NewAddress": "384 FOX CHAPEL RD" }, "geometry": { "type": "Point", "coordinates": [ -79.878409169330922, 40.514072926770453 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 577, "OBJECTID": 578, "Muni": 144, "LocName": "UNITED METHODIST CHRCH FOYER", "Prefix": "W", "House": "261", "Fraction": " ", "Street": "CHAPEL RIDGE", "Suffix1": "RD", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15238-1831", "Leadman": "38", "MuniName": "FOX CHAPEL", "MWD": "1440004", "MWD2": 1440004, "NewAddress": "261 CHAPEL RIDGE RD" }, "geometry": { "type": "Point", "coordinates": [ -79.878920255931249, 40.546295098358144 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 578, "OBJECTID": 579, "Muni": 144, "LocName": "PRESBYTERIAN CHURCH", "Prefix": " ", "House": "384", "Fraction": " ", "Street": "FOX CHAPEL", "Suffix1": "RD", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15238-2343", "Leadman": "38", "MuniName": "FOX CHAPEL", "MWD": "1440005", "MWD2": 1440005, "NewAddress": "384 FOX CHAPEL RD" }, "geometry": { "type": "Point", "coordinates": [ -79.878176818100371, 40.514382095011158 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 579, "OBJECTID": 580, "Muni": 145, "LocName": "FRANKLIN PRK BAPT CH SOCIAL HALL", "Prefix": " ", "House": "2470", "Fraction": " ", "Street": "NICHOLSON", "Suffix1": "RD", "Suffix2": " ", "City": "SEWICKLEY", "Zip": "15143-8507", "Leadman": "42", "MuniName": "FRANKLIN PK", "MWD": "1450101", "MWD2": 1450101, "NewAddress": "2470 NICHOLSON RD" }, "geometry": { "type": "Point", "coordinates": [ -80.099056245149399, 40.597595543491991 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 580, "OBJECTID": 581, "Muni": 145, "LocName": "ST BRENDANS EPISCOPAL CHURCH", "Prefix": " ", "House": "2365", "Fraction": " ", "Street": "MCALEER", "Suffix1": "RD", "Suffix2": " ", "City": "SEWICKLEY", "Zip": "15143-8615", "Leadman": "42", "MuniName": "FRANKLIN PK", "MWD": "1450201", "MWD2": 1450201, "NewAddress": "2365 MCALEER RD" }, "geometry": { "type": "Point", "coordinates": [ -80.084051241288023, 40.580962696398295 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 581, "OBJECTID": 582, "Muni": 145, "LocName": "INGOMAR MIDDLE SCHOOL", "Prefix": " ", "House": "1521", "Fraction": " ", "Street": "INGOMAR HEIGHTS", "Suffix1": "RD", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15237-1626", "Leadman": "42", "MuniName": "FRANKLIN PK", "MWD": "1450303", "MWD2": 1450303, "NewAddress": "1521 INGOMAR HEIGHTS RD" }, "geometry": { "type": "Point", "coordinates": [ -80.072663665565202, 40.58114205165905 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 582, "OBJECTID": 583, "Muni": 146, "LocName": "FRAZER #1 V.F.D.", "Prefix": " ", "House": "2020", "Fraction": " ", "Street": "BAKERSTOWN", "Suffix1": "RD", "Suffix2": " ", "City": "TARENTUM", "Zip": "15084", "Leadman": "45", "MuniName": "FRAZER", "MWD": "1460001", "MWD2": 1460001, "NewAddress": "2020 BAKERSTOWN RD" }, "geometry": { "type": "Point", "coordinates": [ -79.801525314067646, 40.630172147686302 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 583, "OBJECTID": 584, "Muni": 147, "LocName": "MUNICIPAL BLDG", "Prefix": " ", "House": "440", "Fraction": " ", "Street": "MONONGAHELA", "Suffix1": "AVE", "Suffix2": " ", "City": "GLASSPORT", "Zip": "15045", "Leadman": "22", "MuniName": "GLASSPORT", "MWD": "1470001", "MWD2": 1470001, "NewAddress": "440 MONONGAHELA AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.892879970208909, 40.327747390743042 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 584, "OBJECTID": 585, "Muni": 147, "LocName": "MUNCIPAL BLDG.", "Prefix": " ", "House": "440", "Fraction": " ", "Street": "MONONGAHELA", "Suffix1": "AVE", "Suffix2": " ", "City": "GLASSPORT", "Zip": "15045", "Leadman": "22", "MuniName": "GLASSPORT", "MWD": "1470002", "MWD2": 1470002, "NewAddress": "440 MONONGAHELA AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.892727369207321, 40.327751674656575 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 585, "OBJECTID": 586, "Muni": 147, "LocName": "GLASSPORT SR CITIZEN CENTER 1ST FLOOR", "Prefix": " ", "House": "544", "Fraction": " ", "Street": "MONONGAHELA", "Suffix1": " ", "Suffix2": " ", "City": "GLASSPORT", "Zip": "15045-1626", "Leadman": "22", "MuniName": "GLASSPORT", "MWD": "1470003", "MWD2": 1470003, "NewAddress": "544 MONONGAHELA" }, "geometry": { "type": "Point", "coordinates": [ -79.892767740847489, 40.326100136530307 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 586, "OBJECTID": 587, "Muni": 147, "LocName": "GLASSPORT COMMUNITY YOUTH CENTER", "Prefix": " ", "House": "701", "Fraction": " ", "Street": "DELAWARE", "Suffix1": "AVE", "Suffix2": " ", "City": "GLASSPORT", "Zip": "15045-1537", "Leadman": "22", "MuniName": "GLASSPORT", "MWD": "1470004", "MWD2": 1470004, "NewAddress": "701 DELAWARE AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.887037887291854, 40.324193607442524 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 587, "OBJECTID": 588, "Muni": 147, "LocName": "QUEEN OF ROSARY SOCIAL HALL", "Prefix": " ", "House": "530", "Fraction": " ", "Street": "MICHIGAN", "Suffix1": "AVE", "Suffix2": " ", "City": "GLASSPORT", "Zip": "15045-1421", "Leadman": "22", "MuniName": "GLASSPORT", "MWD": "1470005", "MWD2": 1470005, "NewAddress": "530 MICHIGAN AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.890501721260478, 40.326687061259399 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 588, "OBJECTID": 589, "Muni": 147, "LocName": "GLASSPORT COMMUNITY YOUTH CENTER", "Prefix": " ", "House": "701", "Fraction": " ", "Street": "DELAWARE", "Suffix1": "AVE", "Suffix2": " ", "City": "GLASSPORT", "Zip": "15045-1537", "Leadman": "22", "MuniName": "GLASSPORT", "MWD": "1470006", "MWD2": 1470006, "NewAddress": "701 DELAWARE AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.887098160201532, 40.324110652473081 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 589, "OBJECTID": 590, "Muni": 148, "LocName": "GLENFIELD PARK BLDG 1ST FLOOR", "Prefix": " ", "House": "315", "Fraction": " ", "Street": "DAWSON", "Suffix1": "AVE", "Suffix2": " ", "City": "SEWICKLEY", "Zip": "15143-2207", "Leadman": "36", "MuniName": "GLENFIELD", "MWD": "1480001", "MWD2": 1480001, "NewAddress": "315 DAWSON AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.139866297461509, 40.519525832818395 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 590, "OBJECTID": 591, "Muni": 149, "LocName": "BORO FIRE HALL", "Prefix": " ", "House": "825", "Fraction": " ", "Street": "POPLAR", "Suffix1": "ST", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15220-2827", "Leadman": "13", "MuniName": "GREENTREE", "MWD": "1490001", "MWD2": 1490001, "NewAddress": "825 POPLAR ST" }, "geometry": { "type": "Point", "coordinates": [ -80.049716600338357, 40.420561294243093 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 591, "OBJECTID": 592, "Muni": 150, "LocName": "ST URSULA SCHOOL", "Prefix": " ", "House": "3937", "Fraction": " ", "Street": "KIRK", "Suffix1": "AVE", "Suffix2": " ", "City": "ALLISON PARK", "Zip": "15101-3618", "Leadman": "41", "MuniName": "HAMPTON", "MWD": "1500001", "MWD2": 1500001, "NewAddress": "3937 KIRK AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.963480818399177, 40.560687596003085 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 592, "OBJECTID": 593, "Muni": 150, "LocName": "ST URSULA SCHOOL", "Prefix": " ", "House": "3937", "Fraction": " ", "Street": "KIRK", "Suffix1": "AVE", "Suffix2": " ", "City": "ALLISON PARK", "Zip": "15101-3618", "Leadman": "41", "MuniName": "HAMPTON", "MWD": "1500004", "MWD2": 1500004, "NewAddress": "3937 KIRK AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.963592228565901, 40.560652183874012 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 593, "OBJECTID": 594, "Muni": 150, "LocName": "ST PAULS UNITED METH CHURCH", "Prefix": " ", "House": "1965", "Fraction": " ", "Street": "FERGUSON", "Suffix1": "RD", "Suffix2": " ", "City": "ALLISON PARK", "Zip": "15101-3435", "Leadman": "41", "MuniName": "HAMPTON", "MWD": "1500005", "MWD2": 1500005, "NewAddress": "1965 FERGUSON RD" }, "geometry": { "type": "Point", "coordinates": [ -79.988187629489843, 40.564557693742664 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 594, "OBJECTID": 595, "Muni": 150, "LocName": "PARKWOOD UP CH FEL HL (LWR RR ENT)", "Prefix": " ", "House": "4289", "Fraction": " ", "Street": "MOUNT ROYAL", "Suffix1": "BLVD", "Suffix2": " ", "City": "ALLISON PARK", "Zip": "15101-2940", "Leadman": "41", "MuniName": "HAMPTON", "MWD": "1500006", "MWD2": 1500006, "NewAddress": "4289 MOUNT ROYAL BLVD" }, "geometry": { "type": "Point", "coordinates": [ -79.963372571655341, 40.573411711643914 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 595, "OBJECTID": 596, "Muni": 150, "LocName": "NEW TOWNSHIP BLDG", "Prefix": " ", "House": "3101", "Fraction": " ", "Street": "MCCULLY", "Suffix1": "RD", "Suffix2": " ", "City": "ALLISON PARK", "Zip": "15101-1331", "Leadman": "41", "MuniName": "HAMPTON", "MWD": "1500007", "MWD2": 1500007, "NewAddress": "3101 MCCULLY RD" }, "geometry": { "type": "Point", "coordinates": [ -79.934709333910703, 40.582116612863111 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 596, "OBJECTID": 597, "Muni": 150, "LocName": "HAMPTON TWP. COMMUNITY CENTER", "Prefix": " ", "House": "3101", "Fraction": " ", "Street": "MCCULLY", "Suffix1": "RD", "Suffix2": " ", "City": "ALLISON PARK", "Zip": "15101", "Leadman": "41", "MuniName": "HAMPTON", "MWD": "1500008", "MWD2": 1500008, "NewAddress": "3101 MCCULLY RD" }, "geometry": { "type": "Point", "coordinates": [ -79.934354248246194, 40.581924190636236 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 597, "OBJECTID": 598, "Muni": 150, "LocName": "LWR RR ENT-PARKWOOD UP CH FEL HL", "Prefix": " ", "House": "4289", "Fraction": " ", "Street": "MOUNT ROYAL", "Suffix1": "BLVD", "Suffix2": " ", "City": "ALLISON PARK", "Zip": "15101-2940", "Leadman": "41", "MuniName": "HAMPTON", "MWD": "1500012", "MWD2": 1500012, "NewAddress": "4289 MOUNT ROYAL BLVD" }, "geometry": { "type": "Point", "coordinates": [ -79.963471931367906, 40.573695821536276 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 598, "OBJECTID": 599, "Muni": 150, "LocName": "ST PAULS UNITED METH CHURCH", "Prefix": " ", "House": " ", "Fraction": " ", "Street": "FERGUSON", "Suffix1": "RD", "Suffix2": " ", "City": "ALLISON PARK", "Zip": "15101-3435", "Leadman": "41", "MuniName": "HAMPTON", "MWD": "1500013", "MWD2": 1500013, "NewAddress": " FERGUSON RD" }, "geometry": { "type": "Point", "coordinates": [ -79.98815385949689, 40.564788712521057 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 599, "OBJECTID": 600, "Muni": 151, "LocName": "HARMAR TWP MUN GARAGE BLDG", "Prefix": " ", "House": "841", "Fraction": " ", "Street": "RUSSELLTON", "Suffix1": "RD", "Suffix2": " ", "City": "CHESWICK", "Zip": "15024-1042", "Leadman": "45", "MuniName": "HARMAR", "MWD": "1510003", "MWD2": 1510003, "NewAddress": "841 RUSSELLTON RD" }, "geometry": { "type": "Point", "coordinates": [ -79.819495585535208, 40.553843913096713 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 600, "OBJECTID": 601, "Muni": 152, "LocName": "ST MATHIAS HALL", "Prefix": " ", "House": "96", "Fraction": " ", "Street": "POND", "Suffix1": "ST", "Suffix2": " ", "City": "NATRONA HEIGHTS", "Zip": "15065-2671", "Leadman": "44", "MuniName": "HARRISON", "MWD": "1520202", "MWD2": 1520202, "NewAddress": "96 POND ST" }, "geometry": { "type": "Point", "coordinates": [ -79.722082484270985, 40.612572904094023 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 601, "OBJECTID": 602, "Muni": 152, "LocName": "CITIZENS HOSE CO SOCIAL HALL", "Prefix": " ", "House": "965", "Fraction": " ", "Street": "BURTNER", "Suffix1": "RD", "Suffix2": " ", "City": "NATRONA HEIGHTS", "Zip": "15065-2300", "Leadman": "44", "MuniName": "HARRISON", "MWD": "1520302", "MWD2": 1520302, "NewAddress": "965 BURTNER RD" }, "geometry": { "type": "Point", "coordinates": [ -79.716790026972376, 40.628950067180696 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 602, "OBJECTID": 603, "Muni": 152, "LocName": "CITIZENS HOSE CO SOCIAL HALL", "Prefix": " ", "House": "965", "Fraction": " ", "Street": "BURTNER", "Suffix1": "RD", "Suffix2": " ", "City": "NATRONA HEIGHTS", "Zip": "15065-2300", "Leadman": "44", "MuniName": "HARRISON", "MWD": "1520401", "MWD2": 1520401, "NewAddress": "965 BURTNER RD" }, "geometry": { "type": "Point", "coordinates": [ -79.716685582126303, 40.62894016918758 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 603, "OBJECTID": 604, "Muni": 152, "LocName": "HARRISON HI-RISE-COMMUNITY RM", "Prefix": " ", "House": "2006", "Fraction": " ", "Street": "BROADVIEW", "Suffix1": " ", "Suffix2": " ", "City": "NATRONA HEIGHTS", "Zip": "15065-2230", "Leadman": "44", "MuniName": "HARRISON", "MWD": "1520501", "MWD2": 1520501, "NewAddress": "2006 BROADVIEW" }, "geometry": { "type": "Point", "coordinates": [ -79.721245514365819, 40.625748796893383 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 604, "OBJECTID": 605, "Muni": 154, "LocName": "HEIDELBERG FIREHALL", "Prefix": " ", "House": "456", "Fraction": " ", "Street": "FIRST", "Suffix1": "ST", "Suffix2": " ", "City": "CARNEGIE", "Zip": "15106-3947", "Leadman": "26", "MuniName": "HEIDELBERG", "MWD": "1540001", "MWD2": 1540001, "NewAddress": "456 FIRST ST" }, "geometry": { "type": "Point", "coordinates": [ -80.090822004595154, 40.393681413132263 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 605, "OBJECTID": 606, "Muni": 155, "LocName": "HOMESTEAD APTS COMMUNITY RM", "Prefix": "E", "House": "481", "Fraction": " ", "Street": "8TH", "Suffix1": "AVE", "Suffix2": " ", "City": "HOMESTEAD", "Zip": "15120-1901", "Leadman": "20", "MuniName": "HOMESTEAD", "MWD": "1550101", "MWD2": 1550101, "NewAddress": "481 8TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.906773031299508, 40.409031036673767 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 606, "OBJECTID": 607, "Muni": 155, "LocName": "CLARK MEMORIAL BAPTIST CH-GYM", "Prefix": " ", "House": "1301", "Fraction": " ", "Street": "GLENN", "Suffix1": "ST", "Suffix2": " ", "City": "HOMESTEAD", "Zip": "15120-1730", "Leadman": "20", "MuniName": "HOMESTEAD", "MWD": "1550102", "MWD2": 1550102, "NewAddress": "1301 GLENN ST" }, "geometry": { "type": "Point", "coordinates": [ -79.906653168848194, 40.404002203187687 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 607, "OBJECTID": 608, "Muni": 155, "LocName": "HOMESTEAD VFD", "Prefix": "E", "House": "212", "Fraction": " ", "Street": "9TH", "Suffix1": "AVE", "Suffix2": " ", "City": "HOMESTEAD", "Zip": "15120-1602", "Leadman": "20", "MuniName": "HOMESTEAD", "MWD": "1550201", "MWD2": 1550201, "NewAddress": "212 9TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.909515664858802, 40.406529988722468 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 608, "OBJECTID": 609, "Muni": 155, "LocName": "ST ANNES SCHOOL", "Prefix": "W", "House": "363", "Fraction": " ", "Street": "11TH", "Suffix1": "AVE", "Suffix2": " ", "City": "HOMESTEAD", "Zip": "15120-1438", "Leadman": "20", "MuniName": "HOMESTEAD", "MWD": "1550202", "MWD2": 1550202, "NewAddress": "363 11TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.913561878862268, 40.401862509707698 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 609, "OBJECTID": 610, "Muni": 155, "LocName": "18TH AVE ENT-RM 107 STL VAL CN OF GOVT", "Prefix": " ", "House": "1705", "Fraction": " ", "Street": "MAPLE", "Suffix1": "ST", "Suffix2": " ", "City": "HOMESTEAD", "Zip": "15120-1800", "Leadman": "20", "MuniName": "HOMESTEAD", "MWD": "1550301", "MWD2": 1550301, "NewAddress": "1705 MAPLE ST" }, "geometry": { "type": "Point", "coordinates": [ -79.903488360289288, 40.401578747573595 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 610, "OBJECTID": 611, "Muni": 155, "LocName": "STEEL VALLEY COG HUMAN SERVICE CTR", "Prefix": " ", "House": "1705", "Fraction": " ", "Street": "MAPLE", "Suffix1": "ST", "Suffix2": " ", "City": "HOMESTEAD", "Zip": "15120-1414", "Leadman": "20", "MuniName": "HOMESTEAD", "MWD": "1550302", "MWD2": 1550302, "NewAddress": "1705 MAPLE ST" }, "geometry": { "type": "Point", "coordinates": [ -79.903382798096061, 40.401431510713152 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 611, "OBJECTID": 612, "Muni": 156, "LocName": "INDIANA TWP MUNI BLDG", "Prefix": " ", "House": "3710", "Fraction": " ", "Street": "SAXONBURG", "Suffix1": "BLVD", "Suffix2": " ", "City": "PGH", "Zip": "15238-1008", "Leadman": "43", "MuniName": "INDIANA", "MWD": "1560001", "MWD2": 1560001, "NewAddress": "3710 SAXONBURG BLVD" }, "geometry": { "type": "Point", "coordinates": [ -79.888575314378471, 40.574999952564404 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 612, "OBJECTID": 613, "Muni": 156, "LocName": "INDIANA TWP BLDG", "Prefix": " ", "House": "3710", "Fraction": " ", "Street": "SAXONBURG", "Suffix1": " ", "Suffix2": " ", "City": "CHESWICK", "Zip": "15024-4015", "Leadman": "43", "MuniName": "INDIANA", "MWD": "1560002", "MWD2": 1560002, "NewAddress": "3710 SAXONBURG" }, "geometry": { "type": "Point", "coordinates": [ -79.888798176134685, 40.574711887959559 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 613, "OBJECTID": 614, "Muni": 156, "LocName": "RURAL RIDGE VOL FIRE CO", "Prefix": " ", "House": "135", "Fraction": " ", "Street": "LITTLE DEER CREEK", "Suffix1": "RD", "Suffix2": " ", "City": "CHESWICK", "Zip": "15024-2123", "Leadman": "43", "MuniName": "INDIANA", "MWD": "1560003", "MWD2": 1560003, "NewAddress": "135 LITTLE DEER CREEK RD" }, "geometry": { "type": "Point", "coordinates": [ -79.828507075293629, 40.585880319868878 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 614, "OBJECTID": 615, "Muni": 156, "LocName": "MIDDLE RD VOL FIRE CO", "Prefix": " ", "House": "2034", "Fraction": " ", "Street": "MIDDLE", "Suffix1": "RD", "Suffix2": " ", "City": "GLENSHAW", "Zip": "15116-3110", "Leadman": "43", "MuniName": "INDIANA", "MWD": "1560004", "MWD2": 1560004, "NewAddress": "2034 MIDDLE RD" }, "geometry": { "type": "Point", "coordinates": [ -79.932783016334326, 40.544566880638442 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 615, "OBJECTID": 616, "Muni": 156, "LocName": "FAIRVIEW ELEMENTARY SCHOOL CAFE", "Prefix": " ", "House": "738", "Fraction": " ", "Street": "DORSEYVILLE", "Suffix1": "RD", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15238-1102", "Leadman": "43", "MuniName": "INDIANA", "MWD": "1560005", "MWD2": 1560005, "NewAddress": "738 DORSEYVILLE RD" }, "geometry": { "type": "Point", "coordinates": [ -79.900039726695681, 40.546808359529713 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 616, "OBJECTID": 617, "Muni": 157, "LocName": "BORO BLDG.", "Prefix": "W", "House": "40", "Fraction": " ", "Street": "PROSPECT", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15205-2241", "Leadman": "18", "MuniName": "INGRAM", "MWD": "1570001", "MWD2": 1570001, "NewAddress": "40 PROSPECT AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.066836149723542, 40.445750091661644 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 617, "OBJECTID": 618, "Muni": 157, "LocName": "BORO BLDG.", "Prefix": "W", "House": "40", "Fraction": " ", "Street": "PROSPECT", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15205-2241", "Leadman": "18", "MuniName": "INGRAM", "MWD": "1570002", "MWD2": 1570002, "NewAddress": "40 PROSPECT AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.066921404437352, 40.445839999163219 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 618, "OBJECTID": 619, "Muni": 157, "LocName": "INGRAM VOLUNTEER FIRE CO.", "Prefix": " ", "House": "2", "Fraction": " ", "Street": "GREENWOOD", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15205", "Leadman": "18", "MuniName": "INGRAM", "MWD": "1570003", "MWD2": 1570003, "NewAddress": "2 GREENWOOD AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.072934443857207, 40.444192880470943 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 619, "OBJECTID": 620, "Muni": 158, "LocName": "GILL HALL PARK BLDG DWNSTAIR HL", "Prefix": " ", "House": "1255", "Fraction": " ", "Street": "GILL HALL", "Suffix1": "RD", "Suffix2": " ", "City": "JEFFERSON HILLS", "Zip": "15025-3406", "Leadman": "40", "MuniName": "JEFFERSON HL", "MWD": "1580001", "MWD2": 1580001, "NewAddress": "1255 GILL HALL RD" }, "geometry": { "type": "Point", "coordinates": [ -79.956260031751924, 40.28840613527651 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 620, "OBJECTID": 621, "Muni": 158, "LocName": "JEFFERSON HILLS MUNI BLDG", "Prefix": " ", "House": "925", "Fraction": " ", "Street": "OLD CLAIRTON", "Suffix1": "RD", "Suffix2": " ", "City": "JEFFERSON HILLS", "Zip": "15025-3133", "Leadman": "40", "MuniName": "JEFFERSON HL", "MWD": "1580002", "MWD2": 1580002, "NewAddress": "925 OLD CLAIRTON RD" }, "geometry": { "type": "Point", "coordinates": [ -79.929954969689106, 40.297295389048664 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 621, "OBJECTID": 622, "Muni": 158, "LocName": "THOMAS JEFFERSON HIGH SCHOOL AUX GYM", "Prefix": " ", "House": "310", "Fraction": " ", "Street": "OLD CLAIRTON", "Suffix1": "RD", "Suffix2": " ", "City": "JEFFERSON HILLS", "Zip": "15025", "Leadman": "40", "MuniName": "JEFFERSON HL", "MWD": "1580003", "MWD2": 1580003, "NewAddress": "310 OLD CLAIRTON RD" }, "geometry": { "type": "Point", "coordinates": [ -79.933670144367682, 40.297041866829957 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 622, "OBJECTID": 623, "Muni": 158, "LocName": "THOMAS JEFFERSON HIGH SCHOOL AUX GYM", "Prefix": " ", "House": "310", "Fraction": " ", "Street": "OLD CLAIRTON", "Suffix1": "RD", "Suffix2": " ", "City": "JEFFERSON HILLS", "Zip": "15025", "Leadman": "40", "MuniName": "JEFFERSON HL", "MWD": "1580004", "MWD2": 1580004, "NewAddress": "310 OLD CLAIRTON RD" }, "geometry": { "type": "Point", "coordinates": [ -79.932892661219441, 40.296613613866995 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 623, "OBJECTID": 624, "Muni": 158, "LocName": "JEFFERSON HILLS MUNI BLDG", "Prefix": " ", "House": "925", "Fraction": " ", "Street": "OLD CLAIRTON", "Suffix1": "RD", "Suffix2": " ", "City": "JEFFERSON HILLS", "Zip": "15025-3133", "Leadman": "40", "MuniName": "JEFFERSON HL", "MWD": "1580005", "MWD2": 1580005, "NewAddress": "925 OLD CLAIRTON RD" }, "geometry": { "type": "Point", "coordinates": [ -79.929994180262256, 40.297462915274004 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 624, "OBJECTID": 625, "Muni": 158, "LocName": "FLOREFFE VOLUNTEER FIRE CO.", "Prefix": " ", "House": "1540", "Fraction": " ", "Street": "STATE", "Suffix1": "ST", "Suffix2": " ", "City": "JEFFERSON HILLS", "Zip": "15025", "Leadman": "40", "MuniName": "JEFFERSON HL", "MWD": "1580006", "MWD2": 1580006, "NewAddress": "1540 STATE ST" }, "geometry": { "type": "Point", "coordinates": [ -79.917883156979329, 40.258553072493157 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 625, "OBJECTID": 626, "Muni": 158, "LocName": "GILL HALL PARK COMMUNITY CENTER", "Prefix": " ", "House": "1255", "Fraction": " ", "Street": "GILL HALL", "Suffix1": "RD", "Suffix2": " ", "City": "JEFFERSON HILLS", "Zip": "15025", "Leadman": "40", "MuniName": "JEFFERSON HL", "MWD": "1580007", "MWD2": 1580007, "NewAddress": "1255 GILL HALL RD" }, "geometry": { "type": "Point", "coordinates": [ -79.956313989639213, 40.288473310852908 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 626, "OBJECTID": 627, "Muni": 159, "LocName": "KENNEDY TWP VOL FIRE CO", "Prefix": " ", "House": "1796", "Fraction": " ", "Street": "PINE HOLLOW", "Suffix1": "RD", "Suffix2": " ", "City": "MC KEES ROCKS", "Zip": "15136-1536", "Leadman": "50", "MuniName": "KENNEDY", "MWD": "1590002", "MWD2": 1590002, "NewAddress": "1796 PINE HOLLOW RD" }, "geometry": { "type": "Point", "coordinates": [ -80.102732194843597, 40.47826456732696 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 627, "OBJECTID": 628, "Muni": 159, "LocName": "DAVID E WILLIAMS MIDDLE SCHOOL", "Prefix": " ", "House": "60", "Fraction": " ", "Street": "POTTERS HOLLOW", "Suffix1": "RD", "Suffix2": " ", "City": "CORAOPOLIS", "Zip": "15108", "Leadman": "50", "MuniName": "KENNEDY", "MWD": "1590003", "MWD2": 1590003, "NewAddress": "60 POTTERS HOLLOW RD" }, "geometry": { "type": "Point", "coordinates": [ -80.102315840508751, 40.48604856647821 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 628, "OBJECTID": 629, "Muni": 159, "LocName": "KENNEDY TWP VOL FIRE CO", "Prefix": " ", "House": "1796", "Fraction": " ", "Street": "PINE HOLLOW", "Suffix1": "RD", "Suffix2": " ", "City": "MC KEES ROCKS", "Zip": "15136-1536", "Leadman": "50", "MuniName": "KENNEDY", "MWD": "1590004", "MWD2": 1590004, "NewAddress": "1796 PINE HOLLOW RD" }, "geometry": { "type": "Point", "coordinates": [ -80.10284203497622, 40.478302337602884 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 629, "OBJECTID": 630, "Muni": 159, "LocName": "KENMAWR UNITED PRESBYTERIAN CHURCH", "Prefix": " ", "House": "1760", "Fraction": " ", "Street": "PINE HOLLOW", "Suffix1": "RD", "Suffix2": " ", "City": "CORAOPOLIS", "Zip": "15108", "Leadman": "50", "MuniName": "KENNEDY", "MWD": "1590005", "MWD2": 1590005, "NewAddress": "1760 PINE HOLLOW RD" }, "geometry": { "type": "Point", "coordinates": [ -80.099874776073733, 40.476099991436904 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 630, "OBJECTID": 631, "Muni": 159, "LocName": "CHURCH OF JESUS CHRIST", "Prefix": " ", "House": "227", "Fraction": " ", "Street": "HERBST", "Suffix1": "RD", "Suffix2": " ", "City": "CORAOPOLIS", "Zip": "15108", "Leadman": "50", "MuniName": "KENNEDY", "MWD": "1590007", "MWD2": 1590007, "NewAddress": "227 HERBST RD" }, "geometry": { "type": "Point", "coordinates": [ -80.116311272070163, 40.500066658077543 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 631, "OBJECTID": 632, "Muni": 160, "LocName": "KILBUCK TWP. MUNI BLDG", "Prefix": " ", "House": "343", "Fraction": " ", "Street": "EICHER", "Suffix1": "RD", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15237-1012", "Leadman": "36", "MuniName": "KILBUCK", "MWD": "1600001", "MWD2": 1600001, "NewAddress": "343 EICHER RD" }, "geometry": { "type": "Point", "coordinates": [ -80.097247968304657, 40.517164056446902 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 632, "OBJECTID": 633, "Muni": 161, "LocName": "FIRE HALL 1ST FL", "Prefix": " ", "House": "190", "Fraction": " ", "Street": "AMBRIDGE", "Suffix1": "AVE", "Suffix2": " ", "City": "FAIROAKS", "Zip": "15003-1278", "Leadman": "37", "MuniName": "LEET", "MWD": "1610001", "MWD2": 1610001, "NewAddress": "190 AMBRIDGE AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.211111893501254, 40.581889101387191 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 633, "OBJECTID": 634, "Muni": 162, "LocName": "LEETSDALE BORO BLDG COMMUNITY RM", "Prefix": " ", "House": "373", "Fraction": " ", "Street": "BEVER", "Suffix1": "ST", "Suffix2": " ", "City": "LEETSDALE", "Zip": "15056-1200", "Leadman": "37", "MuniName": "LEETSDALE", "MWD": "1620001", "MWD2": 1620001, "NewAddress": "373 BEVER ST" }, "geometry": { "type": "Point", "coordinates": [ -80.209357034027818, 40.566117593627787 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 634, "OBJECTID": 635, "Muni": 163, "LocName": "LIBERTY MUNI BLDG COUNCIL CHAMBER", "Prefix": " ", "House": "2921", "Fraction": " ", "Street": "LIBERTY", "Suffix1": "WAY", "Suffix2": " ", "City": "MCKEESPORT", "Zip": "15133-2717", "Leadman": "22", "MuniName": "LIBERTY", "MWD": "1630001", "MWD2": 1630001, "NewAddress": "2921 LIBERTY WAY" }, "geometry": { "type": "Point", "coordinates": [ -79.856169106942247, 40.325731288205809 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 635, "OBJECTID": 636, "Muni": 165, "LocName": "MARSHALL TOWNSHIP MUNICIPAL BLDG", "Prefix": " ", "House": "525", "Fraction": " ", "Street": "PLEASANT HILL", "Suffix1": "RD", "Suffix2": " ", "City": "WEXFORD", "Zip": "15090-7458", "Leadman": "42", "MuniName": "MARSHALL", "MWD": "1650002", "MWD2": 1650002, "NewAddress": "525 PLEASANT HILL RD" }, "geometry": { "type": "Point", "coordinates": [ -80.113611983195511, 40.653075797360295 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 636, "OBJECTID": 637, "Muni": 165, "LocName": "MARSHALL MIDDLE SCHOOL GYM", "Prefix": " ", "House": "5145", "Fraction": " ", "Street": "WEXFORD RUN", "Suffix1": "RD", "Suffix2": " ", "City": "WEXFORD", "Zip": "15090-7458", "Leadman": "42", "MuniName": "MARSHALL", "MWD": "1650003", "MWD2": 1650003, "NewAddress": "5145 WEXFORD RUN RD" }, "geometry": { "type": "Point", "coordinates": [ -80.095085839709142, 40.643935581440751 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 637, "OBJECTID": 638, "Muni": 165, "LocName": "MARSHALL TOWNSHIP MUNICIPAL BLDG", "Prefix": " ", "House": "525", "Fraction": " ", "Street": "PLEASANT HILL", "Suffix1": "RD", "Suffix2": " ", "City": "WEXFORD", "Zip": "15090-7458", "Leadman": "42", "MuniName": "MARSHALL", "MWD": "1650004", "MWD2": 1650004, "NewAddress": "525 PLEASANT HILL RD" }, "geometry": { "type": "Point", "coordinates": [ -80.114017955766471, 40.653168748389369 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 638, "OBJECTID": 639, "Muni": 165, "LocName": "MARSHALL MIDDLE SCHOOL GYM", "Prefix": " ", "House": "5145", "Fraction": " ", "Street": "WEXFORD RUN", "Suffix1": "RD", "Suffix2": " ", "City": "WEXFORD", "Zip": "15090-7458", "Leadman": "42", "MuniName": "MARSHALL", "MWD": "1650006", "MWD2": 1650006, "NewAddress": "5145 WEXFORD RUN RD" }, "geometry": { "type": "Point", "coordinates": [ -80.094814046517712, 40.644281885674914 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 639, "OBJECTID": 640, "Muni": 166, "LocName": "BAIERL CENTER AT NA HIGH SCHOOL", "Prefix": " ", "House": "10375", "Fraction": " ", "Street": "PERRY", "Suffix1": "HWY", "Suffix2": " ", "City": "WEXFORD", "Zip": "15090-9209", "Leadman": "57", "MuniName": "MCCANDLESS", "MWD": "1660201", "MWD2": 1660201, "NewAddress": "10375 PERRY HWY" }, "geometry": { "type": "Point", "coordinates": [ -80.053537802892933, 40.603904268666035 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 640, "OBJECTID": 641, "Muni": 166, "LocName": "INBAIERL CENTER AT NA HIGH SCHOOL", "Prefix": " ", "House": "10375", "Fraction": " ", "Street": "PERRY", "Suffix1": "HWY", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15237-162", "Leadman": "57", "MuniName": "MCCANDLESS", "MWD": "1660202", "MWD2": 1660202, "NewAddress": "10375 PERRY HWY" }, "geometry": { "type": "Point", "coordinates": [ -80.053277739336338, 40.603442994298064 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 641, "OBJECTID": 642, "Muni": 166, "LocName": "INGOMAR ELEMENTARY SCH CAFETERIA", "Prefix": "W", "House": "602", "Fraction": " ", "Street": "INGOMAR", "Suffix1": "RD", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15237-1626", "Leadman": "57", "MuniName": "MCCANDLESS", "MWD": "1660303", "MWD2": 1660303, "NewAddress": "602 INGOMAR RD" }, "geometry": { "type": "Point", "coordinates": [ -80.053293746965039, 40.582112107071822 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 642, "OBJECTID": 643, "Muni": 166, "LocName": "MCKNIGHT ELEM SCH MAIN ENT LOBBY", "Prefix": " ", "House": "500", "Fraction": " ", "Street": "CUMBERLAND", "Suffix1": "RD", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15237-5414", "Leadman": "57", "MuniName": "MCCANDLESS", "MWD": "1660503", "MWD2": 1660503, "NewAddress": "500 CUMBERLAND RD" }, "geometry": { "type": "Point", "coordinates": [ -80.028069786242526, 40.570902190009761 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 643, "OBJECTID": 644, "Muni": 166, "LocName": "PEEBLES ELEM SCH CAFE DOOR ENT", "Prefix": " ", "House": "8625", "Fraction": " ", "Street": "PEEBLES", "Suffix1": "RD", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15237-5721", "Leadman": "57", "MuniName": "MCCANDLESS", "MWD": "1660601", "MWD2": 1660601, "NewAddress": "8625 PEEBLES RD" }, "geometry": { "type": "Point", "coordinates": [ -80.010359274635192, 40.565246522250931 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 644, "OBJECTID": 645, "Muni": 167, "LocName": "INDEPENDENT BIBLE PRESBY CHURCH", "Prefix": " ", "House": "110", "Fraction": " ", "Street": "DEMPE", "Suffix1": "ST", "Suffix2": " ", "City": "MC DONALD", "Zip": "15057-1301", "Leadman": "49", "MuniName": "MCDONALD", "MWD": "1670005", "MWD2": 1670005, "NewAddress": "110 DEMPE ST" }, "geometry": { "type": "Point", "coordinates": [ -80.227443349541417, 40.373584833671252 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 645, "OBJECTID": 646, "Muni": 168, "LocName": "ISBR MANOR 17 BLDG", "Prefix": " ", "House": " ", "Fraction": " ", "Street": "MARKET", "Suffix1": "MNR", "Suffix2": " ", "City": "MCKEESPORT", "Zip": "15132", "Leadman": "25", "MuniName": "MCKEESPORT", "MWD": "1680301", "MWD2": 1680301, "NewAddress": " MARKET MNR" }, "geometry": { "type": "Point", "coordinates": [ -79.865895834147707, 40.344678555903158 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 646, "OBJECTID": 647, "Muni": 168, "LocName": "11th & Market", "Prefix": " ", "House": "17", "Fraction": " ", "Street": "ISBIR", "Suffix1": "MNR", "Suffix2": " ", "City": "MCKEESPORT", "Zip": "15132", "Leadman": "25", "MuniName": "MCKEESPORT", "MWD": "1680302", "MWD2": 1680302, "NewAddress": "17 ISBIR MNR" }, "geometry": { "type": "Point", "coordinates": [ -79.866454073732584, 40.34463497060576 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 647, "OBJECTID": 648, "Muni": 168, "LocName": "MCKEESPORT DOWNTOWN HOUSING", "Prefix": " ", "House": "523", "Fraction": " ", "Street": "SINCLAIR", "Suffix1": "ST", "Suffix2": " ", "City": "MCKEESPORT", "Zip": "15132-3029", "Leadman": "23", "MuniName": "MCKEESPORT", "MWD": "1680400", "MWD2": 1680400, "NewAddress": "523 SINCLAIR ST" }, "geometry": { "type": "Point", "coordinates": [ -79.861477696696028, 40.350581317111264 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 648, "OBJECTID": 649, "Muni": 168, "LocName": "FIRST CH OF THE OPEN BIBLE-1ST FLOOR", "Prefix": " ", "House": "719", "Fraction": " ", "Street": "UNION", "Suffix1": "AVE", "Suffix2": " ", "City": "MCKEESPORT", "Zip": "15132-3334", "Leadman": "23", "MuniName": "MCKEESPORT", "MWD": "1680601", "MWD2": 1680601, "NewAddress": "719 UNION AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.855226895132304, 40.349119085841174 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 649, "OBJECTID": 650, "Muni": 168, "LocName": "CENTENIAL SCHOOL RM 108", "Prefix": " ", "House": "1601", "Fraction": " ", "Street": "BEAVER", "Suffix1": "ST", "Suffix2": " ", "City": "MCKEESPORT", "Zip": "15132-4518", "Leadman": "25", "MuniName": "MCKEESPORT", "MWD": "1680702", "MWD2": 1680702, "NewAddress": "1601 BEAVER ST" }, "geometry": { "type": "Point", "coordinates": [ -79.855647026514049, 40.342188972662093 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 650, "OBJECTID": 651, "Muni": 168, "LocName": "RIVERVIEW BAPTIST CHURCH", "Prefix": " ", "House": "1911", "Fraction": " ", "Street": "SOLES", "Suffix1": "ST", "Suffix2": " ", "City": "MCKEESPORT", "Zip": "15132-5157", "Leadman": "25", "MuniName": "MCKEESPORT", "MWD": "1680706", "MWD2": 1680706, "NewAddress": "1911 SOLES ST" }, "geometry": { "type": "Point", "coordinates": [ -79.848111336692725, 40.338015970377164 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 651, "OBJECTID": 652, "Muni": 168, "LocName": "HIGHLAND GROVE METH CH BASEMENT", "Prefix": " ", "House": "2909", "Fraction": " ", "Street": "HIGHLAND", "Suffix1": "AVE", "Suffix2": " ", "City": "MCKEESPORT", "Zip": "15132-3249", "Leadman": "23", "MuniName": "MCKEESPORT", "MWD": "1680801", "MWD2": 1680801, "NewAddress": "2909 HIGHLAND AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.832760595750614, 40.360431562936739 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 652, "OBJECTID": 653, "Muni": 168, "LocName": "MCKEESPORT HIGH SCHOOL TIGER INN", "Prefix": " ", "House": "1960", "Fraction": " ", "Street": "EDEN PARK", "Suffix1": "BLVD", "Suffix2": " ", "City": "MCKEESPORT", "Zip": "15132-1643", "Leadman": "23", "MuniName": "MCKEESPORT", "MWD": "1680802", "MWD2": 1680802, "NewAddress": "1960 EDEN PARK BLVD" }, "geometry": { "type": "Point", "coordinates": [ -79.831507680277966, 40.344380377449085 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 653, "OBJECTID": 654, "Muni": 168, "LocName": "STEEL VIEW MANOR 1ST FL", "Prefix": " ", "House": "501", "Fraction": " ", "Street": "PIRL", "Suffix1": "ST", "Suffix2": " ", "City": "MCKEESPORT", "Zip": "15132-1703", "Leadman": "23", "MuniName": "MCKEESPORT", "MWD": "1680805", "MWD2": 1680805, "NewAddress": "501 PIRL ST" }, "geometry": { "type": "Point", "coordinates": [ -79.843973043351085, 40.352193200566866 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 654, "OBJECTID": 655, "Muni": 168, "LocName": "BEULAH PARK UNITED METH CHURCH", "Prefix": " ", "House": "1615", "Fraction": " ", "Street": "GRANDVIEW", "Suffix1": "AVE", "Suffix2": " ", "City": "MCKEESPORT", "Zip": "15132-5528", "Leadman": "25", "MuniName": "MCKEESPORT", "MWD": "1680901", "MWD2": 1680901, "NewAddress": "1615 GRANDVIEW AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.836439184236156, 40.341917411999816 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 655, "OBJECTID": 656, "Muni": 168, "LocName": "GRANDVIEW APTS MAINT RM", "Prefix": " ", "House": "2130", "Fraction": " ", "Street": "GRANDVIEW", "Suffix1": "AVE", "Suffix2": " ", "City": "MCKEESPORT", "Zip": "15132-5809", "Leadman": "25", "MuniName": "MCKEESPORT", "MWD": "1680902", "MWD2": 1680902, "NewAddress": "2130 GRANDVIEW AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.835936363111799, 40.337658255870238 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 656, "OBJECTID": 657, "Muni": 168, "LocName": "BEULAH PRK UM CH FIRE PLACE RM", "Prefix": " ", "House": "1615", "Fraction": " ", "Street": "GRANDVIEW", "Suffix1": "AVE", "Suffix2": " ", "City": "MCKEESPORT", "Zip": "15132-5528", "Leadman": "25", "MuniName": "MCKEESPORT", "MWD": "1680903", "MWD2": 1680903, "NewAddress": "1615 GRANDVIEW AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.836396542721474, 40.341650568464523 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 657, "OBJECTID": 658, "Muni": 168, "LocName": "WESTSIDE UNITED METHODIST CHURCH SOCIAL HALL", "Prefix": " ", "House": "307", "Fraction": " ", "Street": "ATLANTIC", "Suffix1": "AVE", "Suffix2": " ", "City": "MCKEESPORT", "Zip": "15132-3807", "Leadman": "22", "MuniName": "MCKEESPORT", "MWD": "1681001", "MWD2": 1681001, "NewAddress": "307 ATLANTIC AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.875826328672346, 40.350901775618425 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 658, "OBJECTID": 659, "Muni": 168, "LocName": "WESTSIDE UNITED METHODIST CHURCH SOCIAL HALL", "Prefix": " ", "House": "307", "Fraction": " ", "Street": "ATLANTIC", "Suffix1": "AVE", "Suffix2": " ", "City": "MCKEESPORT", "Zip": "15132-3807", "Leadman": "22", "MuniName": "MCKEESPORT", "MWD": "1681002", "MWD2": 1681002, "NewAddress": "307 ATLANTIC AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.875815269307651, 40.350829995116506 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 659, "OBJECTID": 660, "Muni": 168, "LocName": "CHRISTY PARK UNITED METHODIST CHURCH", "Prefix": " ", "House": "436", "Fraction": " ", "Street": "29TH", "Suffix1": "ST", "Suffix2": " ", "City": "MCKEESPORT", "Zip": "15132-7115", "Leadman": "25", "MuniName": "MCKEESPORT", "MWD": "1681101", "MWD2": 1681101, "NewAddress": "436 29TH ST" }, "geometry": { "type": "Point", "coordinates": [ -79.843364909067589, 40.334007911274632 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 660, "OBJECTID": 661, "Muni": 168, "LocName": "ST PATRICK CHURCH BASEMENT HALL", "Prefix": " ", "House": "316", "Fraction": " ", "Street": "32ND", "Suffix1": "ST", "Suffix2": " ", "City": "MCKEESPORT", "Zip": "15132-7204", "Leadman": "25", "MuniName": "MCKEESPORT", "MWD": "1681102", "MWD2": 1681102, "NewAddress": "316 32ND ST" }, "geometry": { "type": "Point", "coordinates": [ -79.842017799328261, 40.330926180311742 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 661, "OBJECTID": 662, "Muni": 168, "LocName": "RIVERVIEW BAPTIST CHURCH", "Prefix": " ", "House": "1911", "Fraction": " ", "Street": "SOLES", "Suffix1": "ST", "Suffix2": " ", "City": "MCKEESPORT", "Zip": "15132-5048", "Leadman": "25", "MuniName": "MCKEESPORT", "MWD": "1681103", "MWD2": 1681103, "NewAddress": "1911 SOLES ST" }, "geometry": { "type": "Point", "coordinates": [ -79.848140301193268, 40.338114598223903 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 662, "OBJECTID": 663, "Muni": 168, "LocName": "FIRST EVANG FREE CH-YOUTH CENTER", "Prefix": " ", "House": "4001", "Fraction": " ", "Street": "UNIVERSITY", "Suffix1": "DR", "Suffix2": " ", "City": "MCKEESPORT", "Zip": "15132-7643", "Leadman": "25", "MuniName": "MCKEESPORT", "MWD": "1681202", "MWD2": 1681202, "NewAddress": "4001 UNIVERSITY DR" }, "geometry": { "type": "Point", "coordinates": [ -79.828636611909928, 40.343962555419218 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 663, "OBJECTID": 664, "Muni": 168, "LocName": "SERRA CATHOLIC HIGH SCHOOL", "Prefix": " ", "House": "200", "Fraction": " ", "Street": "HERSHEY", "Suffix1": "DR", "Suffix2": " ", "City": "MCKEESPORT", "Zip": "15132-7423", "Leadman": "25", "MuniName": "MCKEESPORT", "MWD": "1681203", "MWD2": 1681203, "NewAddress": "200 HERSHEY DR" }, "geometry": { "type": "Point", "coordinates": [ -79.824418860172685, 40.32558213829811 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 664, "OBJECTID": 665, "Muni": 169, "LocName": "MCKEES ROCKS BORO BLDG COUNCIL CHAMBERS", "Prefix": " ", "House": "340", "Fraction": " ", "Street": "BELL", "Suffix1": "AVE", "Suffix2": " ", "City": "MC KEES ROCKS", "Zip": "15136-382", "Leadman": "50", "MuniName": "MCKEES ROCKS", "MWD": "1690101", "MWD2": 1690101, "NewAddress": "340 BELL AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.056447112380781, 40.466547436746879 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 665, "OBJECTID": 666, "Muni": 169, "LocName": "MCKEES ROCKS BORO BLDG COUNCIL CHAMBERS", "Prefix": " ", "House": "340", "Fraction": " ", "Street": "BELL", "Suffix1": "AVE", "Suffix2": " ", "City": "MC KEES ROCKS", "Zip": "15136-382", "Leadman": "50", "MuniName": "MCKEES ROCKS", "MWD": "1690102", "MWD2": 1690102, "NewAddress": "340 BELL AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.058204554291137, 40.465635864359179 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 666, "OBJECTID": 667, "Muni": 169, "LocName": "VFW VESLEY POST 418", "Prefix": " ", "House": "1242", "Fraction": " ", "Street": "CHARTIERS", "Suffix1": "AVE", "Suffix2": " ", "City": "MC KEES ROCKS", "Zip": "15136", "Leadman": "50", "MuniName": "MCKEES ROCKS", "MWD": "1690301", "MWD2": 1690301, "NewAddress": "1242 CHARTIERS AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.073088823888398, 40.465483329704647 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 667, "OBJECTID": 668, "Muni": 169, "LocName": "VFW VESLEY POST 418", "Prefix": " ", "House": "1242", "Fraction": " ", "Street": "CHARTIERS", "Suffix1": "AVE", "Suffix2": " ", "City": "MC KEES ROCKS", "Zip": "15136-3464", "Leadman": "50", "MuniName": "MCKEES ROCKS", "MWD": "1690302", "MWD2": 1690302, "NewAddress": "1242 CHARTIERS AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.073077659328391, 40.46526895177594 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 668, "OBJECTID": 669, "Muni": 170, "LocName": "CHRIST LUTHERAN CHURCH", "Prefix": " ", "House": "917", "Fraction": " ", "Street": "EVERGREEN", "Suffix1": "AVE", "Suffix2": " ", "City": "MILLVALE", "Zip": "15209", "Leadman": "15", "MuniName": "MILLVALE", "MWD": "1700002", "MWD2": 1700002, "NewAddress": "917 EVERGREEN AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.972463999266012, 40.489635122266257 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 669, "OBJECTID": 670, "Muni": 170, "LocName": "HOLY SPIRIT SCHOOL GYM", "Prefix": " ", "House": "100", "Fraction": " ", "Street": "HOWARD", "Suffix1": "ST", "Suffix2": " ", "City": "MILLVALE", "Zip": "15209-2514", "Leadman": "15", "MuniName": "MILLVALE", "MWD": "1700004", "MWD2": 1700004, "NewAddress": "100 HOWARD ST" }, "geometry": { "type": "Point", "coordinates": [ -79.976067701426359, 40.480219752427935 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 670, "OBJECTID": 671, "Muni": 170, "LocName": "CHRIST LUTHERAN CHURCH", "Prefix": " ", "House": "917", "Fraction": " ", "Street": "EVERGREEN", "Suffix1": "AVE", "Suffix2": " ", "City": "MILLVALE", "Zip": "15209", "Leadman": "15", "MuniName": "MILLVALE", "MWD": "1700005", "MWD2": 1700005, "NewAddress": "917 EVERGREEN AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.972334590294707, 40.48964210811851 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 671, "OBJECTID": 672, "Muni": 171, "LocName": "MELLON PLAN MONROEVILLE VOL FIRE CO #3", "Prefix": " ", "House": "2601", "Fraction": " ", "Street": "3RD", "Suffix1": "ST", "Suffix2": " ", "City": "MONROEVILLE", "Zip": "15146-4661", "Leadman": "29", "MuniName": "MONROEVILLE", "MWD": "1710101", "MWD2": 1710101, "NewAddress": "2601 3RD ST" }, "geometry": { "type": "Point", "coordinates": [ -79.802960118458373, 40.397810788775026 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 672, "OBJECTID": 673, "Muni": 171, "LocName": "MOSSIDE ELEMENTARY 1ST FL", "Prefix": " ", "House": "5000", "Fraction": " ", "Street": "GATEWAY CAMPUS", "Suffix1": "BLVD", "Suffix2": " ", "City": "MONROEVILLE", "Zip": "15146-3365", "Leadman": "29", "MuniName": "MONROEVILLE", "MWD": "1710103", "MWD2": 1710103, "NewAddress": "5000 GATEWAY CAMPUS BLVD" }, "geometry": { "type": "Point", "coordinates": [ -79.755047220389329, 40.43113084189897 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 673, "OBJECTID": 674, "Muni": 171, "LocName": "MOSSIDE ELEMENTARY 1ST FL", "Prefix": " ", "House": "5000", "Fraction": " ", "Street": "GATEWAY CAMPUS", "Suffix1": "BLVD", "Suffix2": " ", "City": "MONROEVILLE", "Zip": "15146-3365", "Leadman": "29", "MuniName": "MONROEVILLE", "MWD": "1710104", "MWD2": 1710104, "NewAddress": "5000 GATEWAY CAMPUS BLVD" }, "geometry": { "type": "Point", "coordinates": [ -79.755303342590835, 40.431328255939782 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 674, "OBJECTID": 675, "Muni": 171, "LocName": "GATEWAY MIDDLE SCHOOL", "Prefix": " ", "House": "4450", "Fraction": " ", "Street": "OLD WILLIAM PENN", "Suffix1": "HWY", "Suffix2": " ", "City": "MONROEVILLE", "Zip": "15146-1433", "Leadman": "29", "MuniName": "MONROEVILLE", "MWD": "1710301", "MWD2": 1710301, "NewAddress": "4450 OLD WILLIAM PENN HWY" }, "geometry": { "type": "Point", "coordinates": [ -79.761091710802305, 40.444337786086862 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 675, "OBJECTID": 676, "Muni": 171, "LocName": "UNIVERSITY PARK ELEMENTARY SCHOOL", "Prefix": " ", "House": "320", "Fraction": " ", "Street": "NOEL", "Suffix1": "DR", "Suffix2": " ", "City": "MONROEVILLE", "Zip": "15146", "Leadman": "29", "MuniName": "MONROEVILLE", "MWD": "1710304", "MWD2": 1710304, "NewAddress": "320 NOEL DR" }, "geometry": { "type": "Point", "coordinates": [ -79.733620904733655, 40.451027324411086 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 676, "OBJECTID": 677, "Muni": 171, "LocName": "UNIVERSITY PARK ELEMENTARY SCHOOL", "Prefix": " ", "House": "320", "Fraction": " ", "Street": "NOEL", "Suffix1": "DR", "Suffix2": " ", "City": "MONROEVILLE", "Zip": "15146", "Leadman": "29", "MuniName": "MONROEVILLE", "MWD": "1710403", "MWD2": 1710403, "NewAddress": "320 NOEL DR" }, "geometry": { "type": "Point", "coordinates": [ -79.733569286572873, 40.450621864234016 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 677, "OBJECTID": 678, "Muni": 171, "LocName": "MOSSIDE ELEMENTARY 1ST FL", "Prefix": " ", "House": "5000", "Fraction": " ", "Street": "GATEWAY CAMPUS", "Suffix1": "BLVD", "Suffix2": " ", "City": "MONROEVILLE", "Zip": "15146-3365", "Leadman": "29", "MuniName": "MONROEVILLE", "MWD": "1710503", "MWD2": 1710503, "NewAddress": "5000 GATEWAY CAMPUS BLVD" }, "geometry": { "type": "Point", "coordinates": [ -79.754764556985407, 40.431443846256336 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 678, "OBJECTID": 679, "Muni": 172, "LocName": "NEW MOON SR HIGH SCHOOL MAIN FL FOYER", "Prefix": " ", "House": "8353", "Fraction": " ", "Street": "UNIVERSITY", "Suffix1": "BLVD", "Suffix2": " ", "City": "CORAOPOLIS", "Zip": "15108-2716", "Leadman": "48", "MuniName": "MOON", "MWD": "1720001", "MWD2": 1720001, "NewAddress": "8353 UNIVERSITY BLVD" }, "geometry": { "type": "Point", "coordinates": [ -80.220565883188286, 40.511006684408201 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 679, "OBJECTID": 680, "Muni": 172, "LocName": "TWP MUNI BLDG COUNCIL CHAMBER", "Prefix": " ", "House": "1000", "Fraction": " ", "Street": "BEAVER GRADE", "Suffix1": "RD", "Suffix2": " ", "City": "CORAOPOLIS", "Zip": "15108-2906", "Leadman": "48", "MuniName": "MOON", "MWD": "1720002", "MWD2": 1720002, "NewAddress": "1000 BEAVER GRADE RD" }, "geometry": { "type": "Point", "coordinates": [ -80.207555161959803, 40.504635806604938 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 680, "OBJECTID": 681, "Muni": 172, "LocName": "RICHARD HYDE ELEM SCHOOL", "Prefix": " ", "House": "110", "Fraction": " ", "Street": "WALLRIDGE", "Suffix1": "DR", "Suffix2": " ", "City": "CORAOPOLIS", "Zip": "15108-1144", "Leadman": "48", "MuniName": "MOON", "MWD": "1720003", "MWD2": 1720003, "NewAddress": "110 WALLRIDGE DR" }, "geometry": { "type": "Point", "coordinates": [ -80.196955444460485, 40.523667415643231 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 681, "OBJECTID": 682, "Muni": 172, "LocName": "BON MEADE ELEMENTARY SCH GYM", "Prefix": " ", "House": "1595", "Fraction": " ", "Street": "BRODHEAD", "Suffix1": "RD", "Suffix2": " ", "City": "CORAOPOLIS", "Zip": "15108-3876", "Leadman": "48", "MuniName": "MOON", "MWD": "1720004", "MWD2": 1720004, "NewAddress": "1595 BRODHEAD RD" }, "geometry": { "type": "Point", "coordinates": [ -80.239419588480928, 40.545825265726826 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 682, "OBJECTID": 683, "Muni": 172, "LocName": "BON MEADE ELEMENTARY SCH GYM", "Prefix": " ", "House": "1595", "Fraction": " ", "Street": "BRODHEAD", "Suffix1": "RD", "Suffix2": " ", "City": "CORAOPOLIS", "Zip": "15108-3876", "Leadman": "48", "MuniName": "MOON", "MWD": "1720005", "MWD2": 1720005, "NewAddress": "1595 BRODHEAD RD" }, "geometry": { "type": "Point", "coordinates": [ -80.239561222916706, 40.545908694703698 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 683, "OBJECTID": 684, "Muni": 172, "LocName": "ST ANDREW LUTHERAN CHURCH", "Prefix": " ", "House": "987", "Fraction": " ", "Street": "BEAVER GRADE", "Suffix1": "RD", "Suffix2": " ", "City": "CORAOPOLIS", "Zip": "15108-2509", "Leadman": "48", "MuniName": "MOON", "MWD": "1720007", "MWD2": 1720007, "NewAddress": "987 BEAVER GRADE RD" }, "geometry": { "type": "Point", "coordinates": [ -80.208620814560973, 40.507101765158083 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 684, "OBJECTID": 685, "Muni": 172, "LocName": "ST ANDREW LUTHERAN CHURCH", "Prefix": " ", "House": "987", "Fraction": " ", "Street": "BEAVER GRADE", "Suffix1": "RD", "Suffix2": " ", "City": "CORAOPOLIS", "Zip": "15108-2509", "Leadman": "48", "MuniName": "MOON", "MWD": "1720009", "MWD2": 1720009, "NewAddress": "987 BEAVER GRADE RD" }, "geometry": { "type": "Point", "coordinates": [ -80.20839159131269, 40.506901653178204 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 685, "OBJECTID": 686, "Muni": 172, "LocName": "TOWNSHIP COUNCIL CHAMBERS", "Prefix": " ", "House": "1000", "Fraction": " ", "Street": "BEAVER GRADE", "Suffix1": "RD", "Suffix2": " ", "City": "CORAOPOLIS", "Zip": "15108-2906", "Leadman": "48", "MuniName": "MOON", "MWD": "1720010", "MWD2": 1720010, "NewAddress": "1000 BEAVER GRADE RD" }, "geometry": { "type": "Point", "coordinates": [ -80.207925645886689, 40.50444267949316 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 686, "OBJECTID": 687, "Muni": 173, "LocName": "THOMAS JEFFERSON MIDDLE SCHOOL", "Prefix": " ", "House": "11", "Fraction": " ", "Street": "MOFFETT", "Suffix1": "ST", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15243-1109", "Leadman": "28", "MuniName": "MT LEBANON", "MWD": "1730101", "MWD2": 1730101, "NewAddress": "11 MOFFETT ST" }, "geometry": { "type": "Point", "coordinates": [ -80.060804377373643, 40.381498674024165 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 687, "OBJECTID": 688, "Muni": 173, "LocName": "LINCOLN ELEMENTARY SCHOOL", "Prefix": " ", "House": "2", "Fraction": " ", "Street": "RALSTON", "Suffix1": "PL", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15216-1524", "Leadman": "28", "MuniName": "MT LEBANON", "MWD": "1730102", "MWD2": 1730102, "NewAddress": "2 RALSTON PL" }, "geometry": { "type": "Point", "coordinates": [ -80.048352684489302, 40.388540196933562 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 688, "OBJECTID": 689, "Muni": 173, "LocName": "LINCOLN ELEMENTARY SCHOOL", "Prefix": " ", "House": "2", "Fraction": " ", "Street": "RALSTON", "Suffix1": "PL", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15216-1524", "Leadman": "28", "MuniName": "MT LEBANON", "MWD": "1730103", "MWD2": 1730103, "NewAddress": "2 RALSTON PL" }, "geometry": { "type": "Point", "coordinates": [ -80.048617735825857, 40.388858877383022 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 689, "OBJECTID": 690, "Muni": 173, "LocName": "LINCOLN ELEMENTARY SCHOOL", "Prefix": " ", "House": "2", "Fraction": " ", "Street": "RALSTON", "Suffix1": "PL", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15216-1524", "Leadman": "28", "MuniName": "MT LEBANON", "MWD": "1730104", "MWD2": 1730104, "NewAddress": "2 RALSTON PL" }, "geometry": { "type": "Point", "coordinates": [ -80.048328044544206, 40.388883155614622 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 690, "OBJECTID": 691, "Muni": 173, "LocName": "LINCOLN ELEMENTARY SCHOOL", "Prefix": " ", "House": "2", "Fraction": " ", "Street": "RALSTON", "Suffix1": "PL", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15216-1524", "Leadman": "28", "MuniName": "MT LEBANON", "MWD": "1730105", "MWD2": 1730105, "NewAddress": "2 RALSTON PL" }, "geometry": { "type": "Point", "coordinates": [ -80.048112143509428, 40.388230283936011 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 691, "OBJECTID": 692, "Muni": 173, "LocName": "JEFFERSON ELEM SCH GYM ENT #11", "Prefix": " ", "House": "11", "Fraction": " ", "Street": "MOFFETT", "Suffix1": "ST", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15243-1109", "Leadman": "28", "MuniName": "MT LEBANON", "MWD": "1730106", "MWD2": 1730106, "NewAddress": "11 MOFFETT ST" }, "geometry": { "type": "Point", "coordinates": [ -80.060793975994414, 40.381603070919681 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 692, "OBJECTID": 693, "Muni": 173, "LocName": "LINCOLN ELEMENTARY SCHOOL", "Prefix": " ", "House": "2", "Fraction": " ", "Street": "RALSTON", "Suffix1": "PL", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15216-1524", "Leadman": "28", "MuniName": "MT LEBANON", "MWD": "1730107", "MWD2": 1730107, "NewAddress": "2 RALSTON PL" }, "geometry": { "type": "Point", "coordinates": [ -80.048610807385202, 40.388655385704425 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 693, "OBJECTID": 694, "Muni": 173, "LocName": "MARKHAM SCHOOL BOYS GYM", "Prefix": " ", "House": "165", "Fraction": " ", "Street": "CRESCENT", "Suffix1": "DR", "Suffix2": " ", "City": "MT LEBANON", "Zip": "15228-1005", "Leadman": "28", "MuniName": "MT LEBANON", "MWD": "1730201", "MWD2": 1730201, "NewAddress": "165 CRESCENT DR" }, "geometry": { "type": "Point", "coordinates": [ -80.054944011983167, 40.366837027691645 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 694, "OBJECTID": 695, "Muni": 173, "LocName": "MARKHAM SCHOOL BOYS GYM", "Prefix": " ", "House": "165", "Fraction": " ", "Street": "CRESCENT", "Suffix1": "DR", "Suffix2": " ", "City": "MT LEBANON", "Zip": "15228-1005", "Leadman": "28", "MuniName": "MT LEBANON", "MWD": "1730202", "MWD2": 1730202, "NewAddress": "165 CRESCENT DR" }, "geometry": { "type": "Point", "coordinates": [ -80.055140690895584, 40.367243272308805 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 695, "OBJECTID": 696, "Muni": 173, "LocName": "MARKHAM SCHOOL GIRLS GYM", "Prefix": " ", "House": "165", "Fraction": " ", "Street": "CRESCENT", "Suffix1": "DR", "Suffix2": " ", "City": "MT LEBANON", "Zip": "15228-1005", "Leadman": "28", "MuniName": "MT LEBANON", "MWD": "1730203", "MWD2": 1730203, "NewAddress": "165 CRESCENT DR" }, "geometry": { "type": "Point", "coordinates": [ -80.055181139013015, 40.367000089564755 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 696, "OBJECTID": 697, "Muni": 173, "LocName": "MARKHAM SCHOOL GIRLS GYM", "Prefix": " ", "House": "165", "Fraction": " ", "Street": "CRESCENT", "Suffix1": "DR", "Suffix2": " ", "City": "MT LEBANON", "Zip": "15228-1005", "Leadman": "28", "MuniName": "MT LEBANON", "MWD": "1730204", "MWD2": 1730204, "NewAddress": "165 CRESCENT DR" }, "geometry": { "type": "Point", "coordinates": [ -80.055094710275881, 40.366610287619238 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 697, "OBJECTID": 698, "Muni": 173, "LocName": "HOOVER SCH GROUND FLOOR ENT LWR LVL", "Prefix": " ", "House": "37", "Fraction": " ", "Street": "ROBB HOLLOW", "Suffix1": "RD", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15243-1717", "Leadman": "28", "MuniName": "MT LEBANON", "MWD": "1730205", "MWD2": 1730205, "NewAddress": "37 ROBB HOLLOW RD" }, "geometry": { "type": "Point", "coordinates": [ -80.068874982798761, 40.374464573546263 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 698, "OBJECTID": 699, "Muni": 173, "LocName": "HOOVER SCH GROUND FLOOR ENT LWR LVL", "Prefix": " ", "House": "37", "Fraction": " ", "Street": "ROBB HOLLOW", "Suffix1": "RD", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15243-1717", "Leadman": "28", "MuniName": "MT LEBANON", "MWD": "1730208", "MWD2": 1730208, "NewAddress": "37 ROBB HOLLOW RD" }, "geometry": { "type": "Point", "coordinates": [ -80.069370819828109, 40.374454612658326 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 699, "OBJECTID": 700, "Muni": 173, "LocName": "MARKHAM SCHOOL", "Prefix": " ", "House": "165", "Fraction": " ", "Street": "CRESCENT", "Suffix1": "DR", "Suffix2": " ", "City": "MT LEBANON", "Zip": "15228-1005", "Leadman": "28", "MuniName": "MT LEBANON", "MWD": "1730308", "MWD2": 1730308, "NewAddress": "165 CRESCENT DR" }, "geometry": { "type": "Point", "coordinates": [ -80.054799036597572, 40.367231450417421 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 700, "OBJECTID": 701, "Muni": 173, "LocName": "ST BERNARD SOCIAL HALL", "Prefix": " ", "House": "401", "Fraction": " ", "Street": "WASHINGTON", "Suffix1": "RD", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15216-1621", "Leadman": "28", "MuniName": "MT LEBANON", "MWD": "1730501", "MWD2": 1730501, "NewAddress": "401 WASHINGTON RD" }, "geometry": { "type": "Point", "coordinates": [ -80.042919708946542, 40.386610223928628 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 701, "OBJECTID": 702, "Muni": 173, "LocName": "ST BERNARD SCHOOL GYM", "Prefix": " ", "House": "401", "Fraction": " ", "Street": "WASHINGTON", "Suffix1": "RD", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15216-1621", "Leadman": "28", "MuniName": "MT LEBANON", "MWD": "1730502", "MWD2": 1730502, "NewAddress": "401 WASHINGTON RD" }, "geometry": { "type": "Point", "coordinates": [ -80.042644795843387, 40.386356517679239 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 702, "OBJECTID": 703, "Muni": 173, "LocName": "FIRST CHURCH OF CHRIST SOCIAL HALL", "Prefix": " ", "House": "1100", "Fraction": " ", "Street": "WASHINGTON", "Suffix1": "RD", "Suffix2": " ", "City": "MT LEBANON", "Zip": "15228-1128", "Leadman": "28", "MuniName": "MT LEBANON", "MWD": "1730503", "MWD2": 1730503, "NewAddress": "1100 WASHINGTON RD" }, "geometry": { "type": "Point", "coordinates": [ -80.049807411417987, 40.369630206082213 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 703, "OBJECTID": 704, "Muni": 173, "LocName": "FIRST CHURCH OF CHRIST SOCIAL HALL", "Prefix": " ", "House": "1100", "Fraction": " ", "Street": "WASHINGTON", "Suffix1": "RD", "Suffix2": " ", "City": "MT LEBANON", "Zip": "15228-1128", "Leadman": "28", "MuniName": "MT LEBANON", "MWD": "1730505", "MWD2": 1730505, "NewAddress": "1100 WASHINGTON RD" }, "geometry": { "type": "Point", "coordinates": [ -80.049932585119379, 40.369625254504214 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 704, "OBJECTID": 705, "Muni": 173, "LocName": "FIRST CHURCH OF CHRIST SOCIAL HALL", "Prefix": " ", "House": "1100", "Fraction": " ", "Street": "WASHINGTON", "Suffix1": "RD", "Suffix2": " ", "City": "MT LEBANON", "Zip": "15228-1128", "Leadman": "28", "MuniName": "MT LEBANON", "MWD": "1730508", "MWD2": 1730508, "NewAddress": "1100 WASHINGTON RD" }, "geometry": { "type": "Point", "coordinates": [ -80.050007709131634, 40.369660629867624 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 705, "OBJECTID": 706, "Muni": 174, "LocName": "BECKMAN MOTORS 1ST FLOOR", "Prefix": " ", "House": "110", "Fraction": " ", "Street": "PENN", "Suffix1": "AVE", "Suffix2": " ", "City": "MT OLIVER", "Zip": "15210-2221", "Leadman": "10", "MuniName": "MT OLIVER", "MWD": "1740001", "MWD2": 1740001, "NewAddress": "110 PENN AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.986800576888967, 40.41372916662619 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 706, "OBJECTID": 707, "Muni": 174, "LocName": "TEMPLE BAPTIST CHURCH", "Prefix": " ", "House": "743", "Fraction": " ", "Street": "BROWNSVILLE", "Suffix1": "RD", "Suffix2": " ", "City": "MT OLIVER", "Zip": "15210-2361", "Leadman": "10", "MuniName": "MT OLIVER", "MWD": "1740003", "MWD2": 1740003, "NewAddress": "743 BROWNSVILLE RD" }, "geometry": { "type": "Point", "coordinates": [ -79.990823319341544, 40.408578985754318 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 707, "OBJECTID": 708, "Muni": 175, "LocName": "#1 ENGINE HOUSE", "Prefix": " ", "House": "1300", "Fraction": " ", "Street": "MARTHA", "Suffix1": "ST", "Suffix2": " ", "City": "MUNHALL", "Zip": "15120-2054", "Leadman": "20", "MuniName": "MUNHALL", "MWD": "1750003", "MWD2": 1750003, "NewAddress": "1300 MARTHA ST" }, "geometry": { "type": "Point", "coordinates": [ -79.899385448493888, 40.40532632528469 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 708, "OBJECTID": 709, "Muni": 175, "LocName": "MUNICIPAL BLDG.", "Prefix": " ", "House": "1900", "Fraction": " ", "Street": "WEST", "Suffix1": "ST", "Suffix2": " ", "City": "MUNHALL", "Zip": "15120-2561", "Leadman": "20", "MuniName": "MUNHALL", "MWD": "1750004", "MWD2": 1750004, "NewAddress": "1900 WEST ST" }, "geometry": { "type": "Point", "coordinates": [ -79.904753402834658, 40.399164695307213 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 709, "OBJECTID": 710, "Muni": 175, "LocName": "ANNE ASHLEY MEMORIAL UMC", "Prefix": "E", "House": "334", "Fraction": " ", "Street": "22ND", "Suffix1": "AVE", "Suffix2": " ", "City": "MUNHALL", "Zip": "15120", "Leadman": "20", "MuniName": "MUNHALL", "MWD": "1750005", "MWD2": 1750005, "NewAddress": "334 22ND AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.899609355501752, 40.398613838027778 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 710, "OBJECTID": 711, "Muni": 175, "LocName": "HOMEST PK METH CH IMOGENE RM LOWER LV", "Prefix": " ", "House": "4231", "Fraction": " ", "Street": "SHADY", "Suffix1": "AVE", "Suffix2": " ", "City": "MUNHALL", "Zip": "15120-3471", "Leadman": "20", "MuniName": "MUNHALL", "MWD": "1750008", "MWD2": 1750008, "NewAddress": "4231 SHADY AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.904297274471645, 40.376910957964562 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 711, "OBJECTID": 712, "Muni": 175, "LocName": "ST RITA SCHOOL & PARISH", "Prefix": "W", "House": "201", "Fraction": " ", "Street": "SCHWAB", "Suffix1": "AVE", "Suffix2": " ", "City": "MUNHALL", "Zip": "15120-2238", "Leadman": "20", "MuniName": "MUNHALL", "MWD": "1750009", "MWD2": 1750009, "NewAddress": "201 SCHWAB AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.892303345348637, 40.400362053641956 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 712, "OBJECTID": 713, "Muni": 175, "LocName": "MUNHALL HOMESTEAD HOUSING PROJECT", "Prefix": " ", "House": " ", "Fraction": " ", "Street": "LONGFELLOW", "Suffix1": "DR", "Suffix2": " ", "City": "MUNHALL", "Zip": "15120", "Leadman": "20", "MuniName": "MUNHALL", "MWD": "1750010", "MWD2": 1750010, "NewAddress": " LONGFELLOW DR" }, "geometry": { "type": "Point", "coordinates": [ -79.9124137786294, 40.387673360503136 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 713, "OBJECTID": 714, "Muni": 177, "LocName": "BORO BUILDING DOWNSTAIRS", "Prefix": " ", "House": "600", "Fraction": " ", "Street": "ANDERSON", "Suffix1": "ST", "Suffix2": " ", "City": "BRADDOCK", "Zip": "15104-2565", "Leadman": "32", "MuniName": "N BRADDOCK", "MWD": "1770201", "MWD2": 1770201, "NewAddress": "600 ANDERSON ST" }, "geometry": { "type": "Point", "coordinates": [ -79.860994210103271, 40.402361390372519 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 714, "OBJECTID": 715, "Muni": 177, "LocName": "BORO BUILDING DOWNSTAIRS", "Prefix": " ", "House": "600", "Fraction": " ", "Street": "ANDERSON", "Suffix1": "ST", "Suffix2": " ", "City": "BRADDOCK", "Zip": "15104-2565", "Leadman": "32", "MuniName": "N BRADDOCK", "MWD": "1770202", "MWD2": 1770202, "NewAddress": "600 ANDERSON ST" }, "geometry": { "type": "Point", "coordinates": [ -79.86102419867791, 40.402444590722929 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 715, "OBJECTID": 716, "Muni": 178, "LocName": "N. FAYETTE VOLUNTEER FIRE CO.", "Prefix": " ", "House": "7678", "Fraction": " ", "Street": "STEUBENVILLE", "Suffix1": "PIKE", "Suffix2": " ", "City": "OAKDALE", "Zip": "15071-9300", "Leadman": "49", "MuniName": "N FAYETTE", "MWD": "1780002", "MWD2": 1780002, "NewAddress": "7678 STEUBENVILLE PIKE" }, "geometry": { "type": "Point", "coordinates": [ -80.20649865924004, 40.441498959704241 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 716, "OBJECTID": 717, "Muni": 178, "LocName": "WESTERN ALLEGHENY MUNIC AUTHORITY", "Prefix": " ", "House": "403", "Fraction": " ", "Street": "VIRGINIA", "Suffix1": "DR", "Suffix2": " ", "City": "OAKDALE", "Zip": "15171", "Leadman": "49", "MuniName": "N FAYETTE", "MWD": "1780003", "MWD2": 1780003, "NewAddress": "403 VIRGINIA DR" }, "geometry": { "type": "Point", "coordinates": [ -80.21100425984595, 40.436239065246077 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 717, "OBJECTID": 718, "Muni": 178, "LocName": "N. FAYETTE TWP. COMM. CENTER", "Prefix": " ", "House": "8042", "Fraction": " ", "Street": "STEUBENVILLE", "Suffix1": "PIKE", "Suffix2": " ", "City": "OAKDALE", "Zip": "15171", "Leadman": "49", "MuniName": "N FAYETTE", "MWD": "1780004", "MWD2": 1780004, "NewAddress": "8042 STEUBENVILLE PIKE" }, "geometry": { "type": "Point", "coordinates": [ -80.245368270490857, 40.441476660646273 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 718, "OBJECTID": 719, "Muni": 178, "LocName": "WESTERN ALLEGHENY MUNIC AUTHORITY", "Prefix": " ", "House": "403", "Fraction": " ", "Street": "VIRGINIA", "Suffix1": "DR", "Suffix2": " ", "City": "OAKDALE", "Zip": "15171", "Leadman": "49", "MuniName": "N FAYETTE", "MWD": "1780005", "MWD2": 1780005, "NewAddress": "403 VIRGINIA DR" }, "geometry": { "type": "Point", "coordinates": [ -80.211165964287531, 40.436248376476748 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 719, "OBJECTID": 720, "Muni": 179, "LocName": "TWP BLDG, SR CITIZEN CTR", "Prefix": " ", "House": "1401", "Fraction": " ", "Street": "GREENSBURG", "Suffix1": "AVE", "Suffix2": " ", "City": "NORTH VERSAILLES", "Zip": "15137-1630", "Leadman": "33", "MuniName": "N VERSAILLES", "MWD": "1790201", "MWD2": 1790201, "NewAddress": "1401 GREENSBURG AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.817956496366889, 40.380943897325068 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 720, "OBJECTID": 721, "Muni": 179, "LocName": "TWP BLDG, SR CITIZEN CTR", "Prefix": " ", "House": "1401", "Fraction": " ", "Street": "GREENSBURG", "Suffix1": "AVE", "Suffix2": " ", "City": "NORTH VERSAILLES", "Zip": "15137-1630", "Leadman": "33", "MuniName": "N VERSAILLES", "MWD": "1790202", "MWD2": 1790202, "NewAddress": "1401 GREENSBURG AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.817647189908271, 40.380790688439802 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 721, "OBJECTID": 722, "Muni": 179, "LocName": "EAST ALLEGHENY HIGH SCHOOL", "Prefix": " ", "House": "1150", "Fraction": " ", "Street": "JACKS RUN", "Suffix1": "RD", "Suffix2": " ", "City": "NORTH VERSAILLES", "Zip": "15137-2726", "Leadman": "33", "MuniName": "N VERSAILLES", "MWD": "1790301", "MWD2": 1790301, "NewAddress": "1150 JACKS RUN RD" }, "geometry": { "type": "Point", "coordinates": [ -79.786751712582642, 40.366352382236798 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 722, "OBJECTID": 723, "Muni": 179, "LocName": "EAST ALLEGHENY HIGH SCHOOL", "Prefix": " ", "House": "1150", "Fraction": " ", "Street": "JACKS RUN", "Suffix1": "RD", "Suffix2": " ", "City": "NORTH VERSAILLES", "Zip": "15137-2726", "Leadman": "33", "MuniName": "N VERSAILLES", "MWD": "1790302", "MWD2": 1790302, "NewAddress": "1150 JACKS RUN RD" }, "geometry": { "type": "Point", "coordinates": [ -79.787329517233019, 40.366342185858912 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 723, "OBJECTID": 724, "Muni": 179, "LocName": "GREEN VALLEY ELEMENTARY SCHOOL", "Prefix": " ", "House": "3290", "Fraction": " ", "Street": "CREST VIEW", "Suffix1": "DR", "Suffix2": " ", "City": "NORTH VERSAILLES", "Zip": "15137-2244", "Leadman": "33", "MuniName": "N VERSAILLES", "MWD": "1790401", "MWD2": 1790401, "NewAddress": "3290 CREST VIEW DR" }, "geometry": { "type": "Point", "coordinates": [ -79.825093982849751, 40.374336649500286 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 724, "OBJECTID": 725, "Muni": 179, "LocName": "GREEN VALLEY ELEMENTARY SCHOOL", "Prefix": " ", "House": "3290", "Fraction": " ", "Street": "CREST VIEW", "Suffix1": "DR", "Suffix2": " ", "City": "NORTH VERSAILLES", "Zip": "15137-2244", "Leadman": "33", "MuniName": "N VERSAILLES", "MWD": "1790402", "MWD2": 1790402, "NewAddress": "3290 CREST VIEW DR" }, "geometry": { "type": "Point", "coordinates": [ -79.824968992580636, 40.374455735757074 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 725, "OBJECTID": 726, "Muni": 179, "LocName": "NORTH VERSAILLES VOL FIRE CO", "Prefix": " ", "House": "1021", "Fraction": " ", "Street": "BROAD", "Suffix1": "ST", "Suffix2": " ", "City": "NORTH VERSAILLES", "Zip": "15137-2101", "Leadman": "33", "MuniName": "N VERSAILLES", "MWD": "1790601", "MWD2": 1790601, "NewAddress": "1021 BROAD ST" }, "geometry": { "type": "Point", "coordinates": [ -79.796817616804205, 40.374382666108239 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 726, "OBJECTID": 727, "Muni": 188, "LocName": "CARNEGIE MELLON UNIVERSITY ALUMNI LOUNGE", "Prefix": " ", "House": "5000", "Fraction": " ", "Street": "FORBES", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15217", "Leadman": "02", "MuniName": "PITTSBURGH", "MWD": "1881407", "MWD2": 1881407, "NewAddress": "5000 FORBES AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.946377282297476, 40.444486168658869 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 727, "OBJECTID": 728, "Muni": 179, "LocName": "NORTH VERSAILLES VOL FIRE CO", "Prefix": " ", "House": "1021", "Fraction": " ", "Street": "BROAD", "Suffix1": "ST", "Suffix2": " ", "City": "NORTH VERSAILLES", "Zip": "15137-2101", "Leadman": "33", "MuniName": "N VERSAILLES", "MWD": "1790602", "MWD2": 1790602, "NewAddress": "1021 BROAD ST" }, "geometry": { "type": "Point", "coordinates": [ -79.797100153543724, 40.374494112551986 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 728, "OBJECTID": 729, "Muni": 179, "LocName": "MT CARMEL BAPTIST CHURCH 1ST FL", "Prefix": " ", "House": "90", "Fraction": " ", "Street": "PORT PERRY", "Suffix1": "RD", "Suffix2": " ", "City": "NORTH VERSAILLES", "Zip": "15137", "Leadman": "33", "MuniName": "N VERSAILLES", "MWD": "1790700", "MWD2": 1790700, "NewAddress": "90 PORT PERRY RD" }, "geometry": { "type": "Point", "coordinates": [ -79.833026643879677, 40.386201836881263 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 729, "OBJECTID": 730, "Muni": 180, "LocName": "OAKDALE COMMUNITY CENTER 1ST FL", "Prefix": " ", "House": "104", "Fraction": " ", "Street": "SEMINARY", "Suffix1": "AVE", "Suffix2": " ", "City": "OAKDALE", "Zip": "15071-9745", "Leadman": "49", "MuniName": "OAKDALE", "MWD": "1800001", "MWD2": 1800001, "NewAddress": "104 SEMINARY AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.183994892247227, 40.396484959895155 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 730, "OBJECTID": 731, "Muni": 180, "LocName": "OAKDALE COMMUNITY CENTER 1ST FL", "Prefix": " ", "House": "104", "Fraction": " ", "Street": "SEMINARY", "Suffix1": "AVE", "Suffix2": " ", "City": "OAKDALE", "Zip": "15071-9745", "Leadman": "49", "MuniName": "OAKDALE", "MWD": "1800002", "MWD2": 1800002, "NewAddress": "104 SEMINARY AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.184157828705906, 40.396534910445084 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 731, "OBJECTID": 732, "Muni": 181, "LocName": "10TH ST ELEM SCH.", "Prefix": " ", "House": "901", "Fraction": " ", "Street": "PENNSYLVANIA", "Suffix1": "AVE", "Suffix2": " ", "City": "OAKMONT", "Zip": "15139-1352", "Leadman": "56", "MuniName": "OAKMONT", "MWD": "1810001", "MWD2": 1810001, "NewAddress": "901 PENNSYLVANIA AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.833049233840867, 40.52088699834438 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 732, "OBJECTID": 733, "Muni": 181, "LocName": "10TH ST ELEM SCH.", "Prefix": " ", "House": "901", "Fraction": " ", "Street": "PENNSYLVANIA", "Suffix1": "AVE", "Suffix2": " ", "City": "OAKMONT", "Zip": "15139-1352", "Leadman": "56", "MuniName": "OAKMONT", "MWD": "1810002", "MWD2": 1810002, "NewAddress": "901 PENNSYLVANIA AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.833151148958677, 40.520950911061881 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 733, "OBJECTID": 734, "Muni": 181, "LocName": "MUNICIPAL BLDG.", "Prefix": " ", "House": "206", "Fraction": " ", "Street": "5TH", "Suffix1": "ST", "Suffix2": " ", "City": "OAKMONT", "Zip": "15139-1813", "Leadman": "56", "MuniName": "OAKMONT", "MWD": "1810003", "MWD2": 1810003, "NewAddress": "206 5TH ST" }, "geometry": { "type": "Point", "coordinates": [ -79.838908911704664, 40.522935875245132 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 734, "OBJECTID": 735, "Muni": 181, "LocName": "OAKMONT UNITED METHODIST CHURCH", "Prefix": " ", "House": "419", "Fraction": " ", "Street": "MARYLAND", "Suffix1": "AVE", "Suffix2": " ", "City": "OAKMONT", "Zip": "15139-1665", "Leadman": "56", "MuniName": "OAKMONT", "MWD": "1810004", "MWD2": 1810004, "NewAddress": "419 MARYLAND AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.839458408355071, 40.519122473005744 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 735, "OBJECTID": 736, "Muni": 181, "LocName": "OAKMONT UNITED METHODIST CHURCH", "Prefix": " ", "House": "419", "Fraction": " ", "Street": "MARYLAND", "Suffix1": "AVE", "Suffix2": " ", "City": "OAKMONT", "Zip": "15139-1665", "Leadman": "56", "MuniName": "OAKMONT", "MWD": "1810005", "MWD2": 1810005, "NewAddress": "419 MARYLAND AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.839461054441344, 40.519207805584259 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 736, "OBJECTID": 737, "Muni": 181, "LocName": "RIVERVIEW COMMUNITY ACTION CORP", "Prefix": " ", "House": "501", "Fraction": " ", "Street": "2ND", "Suffix1": "ST", "Suffix2": " ", "City": "OAKMONT", "Zip": "15139-2000", "Leadman": "56", "MuniName": "OAKMONT", "MWD": "1810006", "MWD2": 1810006, "NewAddress": "501 2ND ST" }, "geometry": { "type": "Point", "coordinates": [ -79.846176948765745, 40.517933286959 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 737, "OBJECTID": 738, "Muni": 182, "LocName": "MUNICIPAL BLDG COUNCIL CHAMBERS", "Prefix": " ", "House": "325", "Fraction": " ", "Street": "FOX CHAPEL", "Suffix1": "RD", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15238-2302", "Leadman": "38", "MuniName": "OHARA", "MWD": "1820102", "MWD2": 1820102, "NewAddress": "325 FOX CHAPEL RD" }, "geometry": { "type": "Point", "coordinates": [ -79.88284129862501, 40.495284865124987 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 738, "OBJECTID": 739, "Muni": 182, "LocName": "KERR ELEMENTARY SCH MULTI PURP", "Prefix": " ", "House": "341", "Fraction": " ", "Street": "KITTANNING", "Suffix1": "PIKE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15215-1040", "Leadman": "38", "MuniName": "OHARA", "MWD": "1820201", "MWD2": 1820201, "NewAddress": "341 KITTANNING PIKE" }, "geometry": { "type": "Point", "coordinates": [ -79.918297577357464, 40.512855712279062 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 739, "OBJECTID": 740, "Muni": 182, "LocName": "KERR ELEMENTARY SCH MULTI PURP", "Prefix": " ", "House": "341", "Fraction": " ", "Street": "KITTANNING", "Suffix1": "PIKE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15215-1040", "Leadman": "38", "MuniName": "OHARA", "MWD": "1820202", "MWD2": 1820202, "NewAddress": "341 KITTANNING PIKE" }, "geometry": { "type": "Point", "coordinates": [ -79.918309311121348, 40.512987188119283 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 740, "OBJECTID": 741, "Muni": 182, "LocName": "PLEASANT VALLEY VOL FIRE CO.", "Prefix": " ", "House": "152", "Fraction": " ", "Street": "KITTANNING", "Suffix1": "PIKE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15215-1355", "Leadman": "38", "MuniName": "OHARA", "MWD": "1820301", "MWD2": 1820301, "NewAddress": "152 KITTANNING PIKE" }, "geometry": { "type": "Point", "coordinates": [ -79.921940639498075, 40.501853242891123 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 741, "OBJECTID": 742, "Muni": 182, "LocName": "PARKVIEW VOL FIRE DEPT.", "Prefix": " ", "House": "726", "Fraction": " ", "Street": "MIDWAY", "Suffix1": "DR", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15215-1358", "Leadman": "38", "MuniName": "OHARA", "MWD": "1820302", "MWD2": 1820302, "NewAddress": "726 MIDWAY DR" }, "geometry": { "type": "Point", "coordinates": [ -79.93074396359431, 40.501336033177964 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 742, "OBJECTID": 743, "Muni": 182, "LocName": "MUNICIPAL BUILDING LOBBY", "Prefix": " ", "House": "325", "Fraction": " ", "Street": "FOX CHAPEL", "Suffix1": "RD", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15238-2302", "Leadman": "38", "MuniName": "OHARA", "MWD": "1820401", "MWD2": 1820401, "NewAddress": "325 FOX CHAPEL RD" }, "geometry": { "type": "Point", "coordinates": [ -79.882918895537927, 40.494946706744791 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 743, "OBJECTID": 744, "Muni": 182, "LocName": "KERR ELEMENTARY SCH MULTI PURP", "Prefix": " ", "House": "341", "Fraction": " ", "Street": "KITTANNING", "Suffix1": "PIKE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15215-1040", "Leadman": "38", "MuniName": "OHARA", "MWD": "1820402", "MWD2": 1820402, "NewAddress": "341 KITTANNING PIKE" }, "geometry": { "type": "Point", "coordinates": [ -79.918343997003547, 40.513132549121678 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 744, "OBJECTID": 745, "Muni": 182, "LocName": "REC RM ENT OHARA ELEM SCH STAGE", "Prefix": " ", "House": "115", "Fraction": " ", "Street": "CABIN", "Suffix1": "LN", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15238-2500", "Leadman": "38", "MuniName": "OHARA", "MWD": "1820501", "MWD2": 1820501, "NewAddress": "115 CABIN LN" }, "geometry": { "type": "Point", "coordinates": [ -79.863811142443595, 40.515195939304355 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 745, "OBJECTID": 746, "Muni": 182, "LocName": "REC RM ENT OHARA ELEM SCH STAGE", "Prefix": " ", "House": "115", "Fraction": " ", "Street": "CABIN", "Suffix1": "LN", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15238-2500", "Leadman": "38", "MuniName": "OHARA", "MWD": "1820502", "MWD2": 1820502, "NewAddress": "115 CABIN LN" }, "geometry": { "type": "Point", "coordinates": [ -79.863708972189357, 40.515542937821309 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 746, "OBJECTID": 747, "Muni": 179, "LocName": "SENIOR CITIZEN BLDG", "Prefix": " ", "House": "1401", "Fraction": " ", "Street": "GREENSBURG", "Suffix1": "PIKE", "Suffix2": " ", "City": "NORTH VERSAILLES", "Zip": "15137", "Leadman": "33", "MuniName": "N VERSAILLES", "MWD": "1790501", "MWD2": 1790501, "NewAddress": "1401 GREENSBURG PIKE" }, "geometry": { "type": "Point", "coordinates": [ -79.817925768632961, 40.381015670145381 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 747, "OBJECTID": 748, "Muni": 179, "LocName": "SENIOR CITIZEN BLDG", "Prefix": " ", "House": "1401", "Fraction": " ", "Street": "GREENSBURG", "Suffix1": "PIKE", "Suffix2": " ", "City": "NORTH VERSAILLES", "Zip": "15137", "Leadman": "33", "MuniName": "N VERSAILLES", "MWD": "1790502", "MWD2": 1790502, "NewAddress": "1401 GREENSBURG PIKE" }, "geometry": { "type": "Point", "coordinates": [ -79.817719421880611, 40.380923302516194 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 748, "OBJECTID": 749, "Muni": 183, "LocName": "OHIO TWP. NATURE CTR COMMUNITY RM GROUND FL", "Prefix": " ", "House": "325", "Fraction": " ", "Street": "NICHOLSON", "Suffix1": "RD", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15237-1047", "Leadman": "36", "MuniName": "OHIO", "MWD": "1830002", "MWD2": 1830002, "NewAddress": "325 NICHOLSON RD" }, "geometry": { "type": "Point", "coordinates": [ -80.108976977923447, 40.560609234019935 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 749, "OBJECTID": 750, "Muni": 184, "LocName": "OSBORNE ELEMENTARY SCHOOL", "Prefix": " ", "House": "1414", "Fraction": " ", "Street": "BEAVER", "Suffix1": "ST", "Suffix2": " ", "City": "SEWICKLEY", "Zip": "15143-2010", "Leadman": "37", "MuniName": "OSBORNE", "MWD": "1840001", "MWD2": 1840001, "NewAddress": "1414 BEAVER ST" }, "geometry": { "type": "Point", "coordinates": [ -80.168629685951387, 40.530893078295016 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 750, "OBJECTID": 751, "Muni": 185, "LocName": "HILLTOP COMM ALLIANCE CHURCH", "Prefix": " ", "House": "8351", "Fraction": " ", "Street": "PIERCE", "Suffix1": "ST", "Suffix2": " ", "City": "VERONA", "Zip": "15147", "Leadman": "35", "MuniName": "PENN HILLS", "MWD": "1850101", "MWD2": 1850101, "NewAddress": "8351 PIERCE ST" }, "geometry": { "type": "Point", "coordinates": [ -79.863314370747574, 40.474914677651277 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 751, "OBJECTID": 752, "Muni": 185, "LocName": "VICTORY TEMPLE AUD BACK ENT", "Prefix": " ", "House": "2824", "Fraction": " ", "Street": "GRAHAM", "Suffix1": "BLVD", "Suffix2": " ", "City": "PENN HILLS", "Zip": "15235-1521", "Leadman": "35", "MuniName": "PENN HILLS", "MWD": "1850102", "MWD2": 1850102, "NewAddress": "2824 GRAHAM BLVD" }, "geometry": { "type": "Point", "coordinates": [ -79.862597115428059, 40.459723237306115 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 752, "OBJECTID": 753, "Muni": 185, "LocName": "VICTORY TEMPLE AUD BACK ENT", "Prefix": " ", "House": "2824", "Fraction": " ", "Street": "GRAHAM", "Suffix1": "BLVD", "Suffix2": " ", "City": "PENN HILLS", "Zip": "15235-1521", "Leadman": "35", "MuniName": "PENN HILLS", "MWD": "1850103", "MWD2": 1850103, "NewAddress": "2824 GRAHAM BLVD" }, "geometry": { "type": "Point", "coordinates": [ -79.862403968015983, 40.459765517733096 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 753, "OBJECTID": 754, "Muni": 185, "LocName": "PENN HILLS MULTI PURPOSE CENTER", "Prefix": " ", "House": "2025", "Fraction": " ", "Street": "LINCOLN", "Suffix1": "RD\r\nRD", "Suffix2": " ", "City": "PENN HILLS", "Zip": "15235-1107", "Leadman": "35", "MuniName": "PENN HILLS", "MWD": "1850104", "MWD2": 1850104, "NewAddress": "2025 LINCOLN RD\r\nRD" }, "geometry": { "type": "Point", "coordinates": [ -79.877199253439841, 40.477518829094649 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 754, "OBJECTID": 755, "Muni": 185, "LocName": "PENN HILLS MULTI PURPOSE CENTER", "Prefix": " ", "House": "2025", "Fraction": " ", "Street": "LINCOLN", "Suffix1": "RD", "Suffix2": " ", "City": "PENN HILLS", "Zip": "15235-1107", "Leadman": "35", "MuniName": "PENN HILLS", "MWD": "1850105", "MWD2": 1850105, "NewAddress": "2025 LINCOLN RD" }, "geometry": { "type": "Point", "coordinates": [ -79.877434132035376, 40.477446594932658 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 755, "OBJECTID": 756, "Muni": 185, "LocName": "LAKETON HGTS METHODIST CHURCH", "Prefix": " ", "House": "9601", "Fraction": " ", "Street": "FRANKSTOWN", "Suffix1": "RD", "Suffix2": " ", "City": "PENN HILLS", "Zip": "15235-1542", "Leadman": "35", "MuniName": "PENN HILLS", "MWD": "1850201", "MWD2": 1850201, "NewAddress": "9601 FRANKSTOWN RD" }, "geometry": { "type": "Point", "coordinates": [ -79.859322130820956, 40.462486899830076 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 756, "OBJECTID": 757, "Muni": 185, "LocName": "VICTORY TEMPLE", "Prefix": " ", "House": "2824", "Fraction": " ", "Street": "GRAHAM", "Suffix1": "BLVD", "Suffix2": " ", "City": "PENN HILLS", "Zip": "15235-1521", "Leadman": "35", "MuniName": "PENN HILLS", "MWD": "1850202", "MWD2": 1850202, "NewAddress": "2824 GRAHAM BLVD" }, "geometry": { "type": "Point", "coordinates": [ -79.862441367435594, 40.459609831745382 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 757, "OBJECTID": 758, "Muni": 185, "LocName": "HEBRON U.P. CHURCH-ROOM 110", "Prefix": " ", "House": "10460", "Fraction": " ", "Street": "FRANKSTOWN", "Suffix1": "RD", "Suffix2": " ", "City": "PENN HILLS", "Zip": "15235-2916", "Leadman": "35", "MuniName": "PENN HILLS", "MWD": "1850203", "MWD2": 1850203, "NewAddress": "10460 FRANKSTOWN RD" }, "geometry": { "type": "Point", "coordinates": [ -79.845588896214053, 40.461071550474301 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 758, "OBJECTID": 759, "Muni": 185, "LocName": "FREE METHODIST CHURCH", "Prefix": " ", "House": "715", "Fraction": " ", "Street": "UNIVERSAL", "Suffix1": "RD", "Suffix2": " ", "City": "PENN HILLS", "Zip": "15235-3839", "Leadman": "35", "MuniName": "PENN HILLS", "MWD": "1850604", "MWD2": 1850604, "NewAddress": "715 UNIVERSAL RD" }, "geometry": { "type": "Point", "coordinates": [ -79.813871319389449, 40.462293998888939 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 759, "OBJECTID": 760, "Muni": 185, "LocName": "PENN HILLS SENIOR HIGH SCHOOL", "Prefix": " ", "House": "12200", "Fraction": " ", "Street": "GARLAND", "Suffix1": "DR", "Suffix2": " ", "City": "PENN HILLS", "Zip": "15235-3436", "Leadman": "35", "MuniName": "PENN HILLS", "MWD": "1850605", "MWD2": 1850605, "NewAddress": "12200 GARLAND DR" }, "geometry": { "type": "Point", "coordinates": [ -79.814729739647788, 40.466496655244136 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 760, "OBJECTID": 761, "Muni": 185, "LocName": "PENN HILLS ALLIANCE CHURCH", "Prefix": " ", "House": "7605", "Fraction": " ", "Street": "SALTSBURG", "Suffix1": "RD", "Suffix2": " ", "City": "PENN HILLS", "Zip": "15235-3644", "Leadman": "56", "MuniName": "PENN HILLS", "MWD": "1850606", "MWD2": 1850606, "NewAddress": "7605 SALTSBURG RD" }, "geometry": { "type": "Point", "coordinates": [ -79.779446189690759, 40.477321902363641 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 761, "OBJECTID": 762, "Muni": 185, "LocName": "LINTON INTERMEDIATE SCHOOL", "Prefix": " ", "House": "250", "Fraction": " ", "Street": "ASTER", "Suffix1": "ST", "Suffix2": " ", "City": "PENN HILLS", "Zip": "15235-2059", "Leadman": "56", "MuniName": "PENN HILLS", "MWD": "1850701", "MWD2": 1850701, "NewAddress": "250 ASTER ST" }, "geometry": { "type": "Point", "coordinates": [ -79.813453574572947, 40.481202127057962 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 762, "OBJECTID": 763, "Muni": 185, "LocName": "LINTON INTERMEDIATE SCHOOL", "Prefix": " ", "House": "250", "Fraction": " ", "Street": "ASTER", "Suffix1": "ST", "Suffix2": " ", "City": "PENN HILLS", "Zip": "15235-2059", "Leadman": "56", "MuniName": "PENN HILLS", "MWD": "1850702", "MWD2": 1850702, "NewAddress": "250 ASTER ST" }, "geometry": { "type": "Point", "coordinates": [ -79.812876114733498, 40.481442915902406 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 763, "OBJECTID": 764, "Muni": 185, "LocName": "LINTON INTERMEDIATE SCHOOL-GYM", "Prefix": " ", "House": "250", "Fraction": " ", "Street": "ASTER", "Suffix1": "ST", "Suffix2": " ", "City": "PENN HILLS", "Zip": "15235-2059", "Leadman": "56", "MuniName": "PENN HILLS", "MWD": "1850703", "MWD2": 1850703, "NewAddress": "250 ASTER ST" }, "geometry": { "type": "Point", "coordinates": [ -79.813746537962942, 40.481528221174123 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 764, "OBJECTID": 765, "Muni": 185, "LocName": "NORTH BESSEMER FIRE HALL", "Prefix": " ", "House": "1701", "Fraction": " ", "Street": "LEECHBURG", "Suffix1": "RD", "Suffix2": " ", "City": "PENN HILLS", "Zip": "15235-2352", "Leadman": "56", "MuniName": "PENN HILLS", "MWD": "1850704", "MWD2": 1850704, "NewAddress": "1701 LEECHBURG RD" }, "geometry": { "type": "Point", "coordinates": [ -79.79295587867135, 40.491979582860033 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 765, "OBJECTID": 766, "Muni": 185, "LocName": "TOWNSHIP BUILDING", "Prefix": " ", "House": "12245", "Fraction": " ", "Street": "FRANKSTOWN", "Suffix1": "RD", "Suffix2": " ", "City": "PENN HILLS", "Zip": "15235-3405", "Leadman": "35", "MuniName": "PENN HILLS", "MWD": "1850705", "MWD2": 1850705, "NewAddress": "12245 FRANKSTOWN RD" }, "geometry": { "type": "Point", "coordinates": [ -79.819906733027423, 40.472362911121856 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 766, "OBJECTID": 767, "Muni": 185, "LocName": "TRINITY TOWER UNITED METH CHURCH", "Prefix": " ", "House": "6729", "Fraction": " ", "Street": "SALTSBURG", "Suffix1": "RD", "Suffix2": " ", "City": "PENN HILLS", "Zip": "15235-2118", "Leadman": "56", "MuniName": "PENN HILLS", "MWD": "1850706", "MWD2": 1850706, "NewAddress": "6729 SALTSBURG RD" }, "geometry": { "type": "Point", "coordinates": [ -79.802956423351873, 40.482237462013366 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 767, "OBJECTID": 768, "Muni": 185, "LocName": "NORTH BESSEMER FIRE HALL", "Prefix": " ", "House": "1701", "Fraction": " ", "Street": "LEECHBURG", "Suffix1": "RD", "Suffix2": " ", "City": "PENN HILLS", "Zip": "15235-2352", "Leadman": "56", "MuniName": "PENN HILLS", "MWD": "1850707", "MWD2": 1850707, "NewAddress": "1701 LEECHBURG RD" }, "geometry": { "type": "Point", "coordinates": [ -79.793063490072043, 40.492027022519103 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 768, "OBJECTID": 769, "Muni": 185, "LocName": "ST. GERARD MAJELLA CHURCH HALL", "Prefix": " ", "House": "121", "Fraction": " ", "Street": "DAWN", "Suffix1": "DR", "Suffix2": " ", "City": "VERONA", "Zip": "15147-2920", "Leadman": "56", "MuniName": "PENN HILLS", "MWD": "1850801", "MWD2": 1850801, "NewAddress": "121 DAWN DR" }, "geometry": { "type": "Point", "coordinates": [ -79.817894806865596, 40.49551438632615 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 769, "OBJECTID": 770, "Muni": 185, "LocName": "ROSEDALE VFD", "Prefix": " ", "House": "5806", "Fraction": " ", "Street": "VERONA", "Suffix1": "RD", "Suffix2": " ", "City": "VERONA", "Zip": "15147-2829", "Leadman": "56", "MuniName": "PENN HILLS", "MWD": "1850803", "MWD2": 1850803, "NewAddress": "5806 VERONA RD" }, "geometry": { "type": "Point", "coordinates": [ -79.836936422596835, 40.486894326559096 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 770, "OBJECTID": 771, "Muni": 185, "LocName": "ST GERARD MAJELLA CHURCH", "Prefix": " ", "House": "121", "Fraction": " ", "Street": "DAWN", "Suffix1": "DR", "Suffix2": " ", "City": "VERONA", "Zip": "15147-2914", "Leadman": "56", "MuniName": "PENN HILLS", "MWD": "1850804", "MWD2": 1850804, "NewAddress": "121 DAWN DR" }, "geometry": { "type": "Point", "coordinates": [ -79.818150221658513, 40.495379732906613 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 771, "OBJECTID": 772, "Muni": 185, "LocName": "ST. GERARD MAJELLA CHURCH HALL", "Prefix": " ", "House": "121", "Fraction": " ", "Street": "DAWN", "Suffix1": "DR", "Suffix2": " ", "City": "VERONA", "Zip": "15147-2920", "Leadman": "56", "MuniName": "PENN HILLS", "MWD": "1850805", "MWD2": 1850805, "NewAddress": "121 DAWN DR" }, "geometry": { "type": "Point", "coordinates": [ -79.818369193102455, 40.495472891901152 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 772, "OBJECTID": 773, "Muni": 185, "LocName": "ST. GERARD MAJELLA CHURCH HALL", "Prefix": " ", "House": "121", "Fraction": " ", "Street": "DAWN", "Suffix1": "DR", "Suffix2": " ", "City": "VERONA", "Zip": "15147-2920", "Leadman": "56", "MuniName": "PENN HILLS", "MWD": "1850806", "MWD2": 1850806, "NewAddress": "121 DAWN DR" }, "geometry": { "type": "Point", "coordinates": [ -79.818376628365954, 40.495010596527266 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 773, "OBJECTID": 774, "Muni": 185, "LocName": "ROSEDALE UN METH CH SOCIAL HALL", "Prefix": " ", "House": "5501", "Fraction": " ", "Street": "3RD", "Suffix1": "ST", "Suffix2": " ", "City": "VERONA", "Zip": "15147-2441", "Leadman": "56", "MuniName": "PENN HILLS", "MWD": "1850901", "MWD2": 1850901, "NewAddress": "5501 3RD ST" }, "geometry": { "type": "Point", "coordinates": [ -79.840736054219178, 40.48271861794705 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 774, "OBJECTID": 775, "Muni": 185, "LocName": "ROSEDALE VFD", "Prefix": " ", "House": "5806", "Fraction": " ", "Street": "VERONA", "Suffix1": "RD", "Suffix2": " ", "City": "VERONA", "Zip": "15147-2829", "Leadman": "56", "MuniName": "PENN HILLS", "MWD": "1850902", "MWD2": 1850902, "NewAddress": "5806 VERONA RD" }, "geometry": { "type": "Point", "coordinates": [ -79.836880703781475, 40.48673795767705 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 775, "OBJECTID": 776, "Muni": 185, "LocName": "ROSEDALE UN METH CHURCH", "Prefix": " ", "House": "5501", "Fraction": " ", "Street": "3RD", "Suffix1": "ST", "Suffix2": " ", "City": "VERONA", "Zip": "15147-2441", "Leadman": "56", "MuniName": "PENN HILLS", "MWD": "1850903", "MWD2": 1850903, "NewAddress": "5501 3RD ST" }, "geometry": { "type": "Point", "coordinates": [ -79.841033832951965, 40.482854801332451 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 776, "OBJECTID": 777, "Muni": 185, "LocName": "ALL SAINTS EPISCOPAL CHURCH", "Prefix": " ", "House": "1620", "Fraction": " ", "Street": "RANDOLPH", "Suffix1": "LN", "Suffix2": " ", "City": "VERONA", "Zip": "15147-3010", "Leadman": "56", "MuniName": "PENN HILLS", "MWD": "1850904", "MWD2": 1850904, "NewAddress": "1620 RANDOLPH LN" }, "geometry": { "type": "Point", "coordinates": [ -79.841475791722488, 40.478830983252415 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 777, "OBJECTID": 778, "Muni": 185, "LocName": "HILLTOP COMM ALLIANCE CH.", "Prefix": " ", "House": "8351", "Fraction": " ", "Street": "PIERCE", "Suffix1": "ST", "Suffix2": " ", "City": "VERONA", "Zip": "15147", "Leadman": "35", "MuniName": "PENN HILLS", "MWD": "1850905", "MWD2": 1850905, "NewAddress": "8351 PIERCE ST" }, "geometry": { "type": "Point", "coordinates": [ -79.863205821012826, 40.474835659034994 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 778, "OBJECTID": 779, "Muni": 186, "LocName": "PINE RICHLAND STADIUM", "Prefix": " ", "House": "700", "Fraction": " ", "Street": "WARRENDALE", "Suffix1": "RD", "Suffix2": " ", "City": "GIBSONIA", "Zip": "15044-6175", "Leadman": "42", "MuniName": "PINE", "MWD": "1860001", "MWD2": 1860001, "NewAddress": "700 WARRENDALE RD" }, "geometry": { "type": "Point", "coordinates": [ -80.01672611695956, 40.659863153276923 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 779, "OBJECTID": 780, "Muni": 186, "LocName": "PINE RICHLAND STADIUM", "Prefix": " ", "House": "700", "Fraction": " ", "Street": "WARRENDALE", "Suffix1": "RD", "Suffix2": " ", "City": "GIBSONIA", "Zip": "15044-6175", "Leadman": "42", "MuniName": "PINE", "MWD": "1860002", "MWD2": 1860002, "NewAddress": "700 WARRENDALE RD" }, "geometry": { "type": "Point", "coordinates": [ -80.016635291999918, 40.659260884150846 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 780, "OBJECTID": 781, "Muni": 186, "LocName": "PINE RICHLAND STADIUM", "Prefix": " ", "House": "700", "Fraction": " ", "Street": "WARRENDALE", "Suffix1": "RD", "Suffix2": " ", "City": "GIBSONIA", "Zip": "15044-6175", "Leadman": "42", "MuniName": "PINE", "MWD": "1860003", "MWD2": 1860003, "NewAddress": "700 WARRENDALE RD" }, "geometry": { "type": "Point", "coordinates": [ -80.016536145681471, 40.659559356007414 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 781, "OBJECTID": 782, "Muni": 186, "LocName": "NORTH PARK SKATING RINK MAIN FLOOR", "Prefix": " ", "House": "303", "Fraction": " ", "Street": "PEARCE MILL", "Suffix1": "RD", "Suffix2": " ", "City": "WEXFORD", "Zip": "15090", "Leadman": "42", "MuniName": "PINE", "MWD": "1860006", "MWD2": 1860006, "NewAddress": "303 PEARCE MILL RD" }, "geometry": { "type": "Point", "coordinates": [ -80.023464379495991, 40.615752147563448 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 782, "OBJECTID": 783, "Muni": 186, "LocName": "NORTH PARK SKATING RINK MAIN FLOOR", "Prefix": " ", "House": "303", "Fraction": " ", "Street": "PEARCE MILL", "Suffix1": "RD", "Suffix2": " ", "City": "WEXFORD", "Zip": "15090", "Leadman": "42", "MuniName": "PINE", "MWD": "1860008", "MWD2": 1860008, "NewAddress": "303 PEARCE MILL RD" }, "geometry": { "type": "Point", "coordinates": [ -80.02379511129952, 40.615874389625674 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 783, "OBJECTID": 784, "Muni": 187, "LocName": "PITCAIRN ASSEMBLY OF GOD CHURCH", "Prefix": " ", "House": "520", "Fraction": " ", "Street": "WALL", "Suffix1": "AVE", "Suffix2": " ", "City": "PITCAIRN", "Zip": "15140-1323", "Leadman": "29", "MuniName": "PITCAIRN", "MWD": "1870001", "MWD2": 1870001, "NewAddress": "520 WALL AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.78091411653007, 40.40442528596067 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 784, "OBJECTID": 785, "Muni": 187, "LocName": "PITCAIRN HOSE CO #1-FIRST FLOOR", "Prefix": " ", "House": "100", "Fraction": " ", "Street": "CENTER", "Suffix1": "AVE", "Suffix2": " ", "City": "PITCAIRN", "Zip": "15140-1414", "Leadman": "29", "MuniName": "PITCAIRN", "MWD": "1870002", "MWD2": 1870002, "NewAddress": "100 CENTER AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.77752168762801, 40.400892030708299 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 785, "OBJECTID": 786, "Muni": 188, "LocName": "#4 ENGINE HOUSE", "Prefix": " ", "House": "1324", "Fraction": " ", "Street": "FORBES", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15219-4717", "Leadman": "01", "MuniName": "PITTSBURGH", "MWD": "1880102", "MWD2": 1880102, "NewAddress": "1324 FORBES AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.987282552337504, 40.43753957526463 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 786, "OBJECTID": 787, "Muni": 188, "LocName": "ROOSEVELT ARMS APARTMENTS", "Prefix": " ", "House": "609", "Fraction": " ", "Street": "PENN", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15222-3201", "Leadman": "01", "MuniName": "PITTSBURGH", "MWD": "1880201", "MWD2": 1880201, "NewAddress": "609 PENN AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.00192960302536, 40.443062856430785 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 787, "OBJECTID": 788, "Muni": 188, "LocName": "EMS TRAINING CTR", "Prefix": " ", "House": "220", "Fraction": " ", "Street": "22ND", "Suffix1": "ST", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15235-2064", "Leadman": "01", "MuniName": "PITTSBURGH", "MWD": "1880202", "MWD2": 1880202, "NewAddress": "220 22ND ST" }, "geometry": { "type": "Point", "coordinates": [ -79.981967434707485, 40.451679416902088 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 788, "OBJECTID": 789, "Muni": 188, "LocName": "EBENEZER BAPTIST CHURCH", "Prefix": " ", "House": "2001", "Fraction": " ", "Street": "WYLIE", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15219-5541", "Leadman": "01", "MuniName": "PITTSBURGH", "MWD": "1880301", "MWD2": 1880301, "NewAddress": "2001 WYLIE AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.980704006816069, 40.444493437009015 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 789, "OBJECTID": 790, "Muni": 188, "LocName": "MULTIPURPOSE RM-K.LEROY IRVIS TOWERS", "Prefix": " ", "House": "715", "Fraction": " ", "Street": "MERCER", "Suffix1": "ST", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15219-4147", "Leadman": "01", "MuniName": "PITTSBURGH", "MWD": "1880302", "MWD2": 1880302, "NewAddress": "715 MERCER ST" }, "geometry": { "type": "Point", "coordinates": [ -79.987185292769368, 40.444064550069008 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 790, "OBJECTID": 791, "Muni": 188, "LocName": "EPIPHANY CHURCH", "Prefix": " ", "House": "1018", "Fraction": " ", "Street": "CENTRE", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15219-3502", "Leadman": "01", "MuniName": "PITTSBURGH", "MWD": "1880304", "MWD2": 1880304, "NewAddress": "1018 CENTRE AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.990747269111836, 40.439907830222239 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 791, "OBJECTID": 792, "Muni": 188, "LocName": "CITY OF PITTSBURGH REPAIR SHOP", "Prefix": " ", "House": "1807", "Fraction": " ", "Street": "5TH", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15219-5541", "Leadman": "01", "MuniName": "PITTSBURGH", "MWD": "1880401", "MWD2": 1880401, "NewAddress": "1807 5TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.980342237817283, 40.438539555639089 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 792, "OBJECTID": 793, "Muni": 188, "LocName": "OFFICE\/WAREHOUSE", "Prefix": " ", "House": "2846", "Fraction": " ", "Street": "BLVD OF ALLIIES", "Suffix1": "BLVD", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15213-4204", "Leadman": "02", "MuniName": "PITTSBURGH", "MWD": "1880402", "MWD2": 1880402, "NewAddress": "2846 BLVD OF ALLIIES BLVD" }, "geometry": { "type": "Point", "coordinates": [ -79.963696927016713, 40.435465849889475 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 793, "OBJECTID": 794, "Muni": 188, "LocName": "SENIOR BUILDING, LOBBY", "Prefix": " ", "House": "2415", "Fraction": " ", "Street": "ALLEQUIPPA", "Suffix1": "ST", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15213-2329", "Leadman": "03", "MuniName": "PITTSBURGH", "MWD": "1880403", "MWD2": 1880403, "NewAddress": "2415 ALLEQUIPPA ST" }, "geometry": { "type": "Point", "coordinates": [ -79.968440529515703, 40.44073987619317 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 794, "OBJECTID": 795, "Muni": 188, "LocName": "SENIOR BUILDING LOBBY", "Prefix": " ", "House": "2415", "Fraction": " ", "Street": "ALLEQUIPPA", "Suffix1": "ST", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15213-2459", "Leadman": "03", "MuniName": "PITTSBURGH", "MWD": "1880404", "MWD2": 1880404, "NewAddress": "2415 ALLEQUIPPA ST" }, "geometry": { "type": "Point", "coordinates": [ -79.968521828211664, 40.440845467833299 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 795, "OBJECTID": 796, "Muni": 188, "LocName": "FRIENDSHIP CHURCH", "Prefix": " ", "House": "181", "Fraction": " ", "Street": "ROBINSON", "Suffix1": "ST", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15213", "Leadman": "03", "MuniName": "PITTSBURGH", "MWD": "1880406", "MWD2": 1880406, "NewAddress": "181 ROBINSON ST" }, "geometry": { "type": "Point", "coordinates": [ -79.96580491784961, 40.440107172890933 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 796, "OBJECTID": 797, "Muni": 188, "LocName": "WILLIAM PITT UNION MAIN FLOOR", "Prefix": " ", "House": "3959", "Fraction": " ", "Street": "5TH", "Suffix1": " AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15213", "Leadman": "02", "MuniName": "PITTSBURGH", "MWD": "1880408", "MWD2": 1880408, "NewAddress": "3959 5TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.957387060197476, 40.443122936501204 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 797, "OBJECTID": 798, "Muni": 188, "LocName": "PITTSBURGH COMMUNITY SERVICE", "Prefix": "N", "House": "249", "Fraction": " ", "Street": "CRAIG", "Suffix1": "ST", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15213-1458", "Leadman": "02", "MuniName": "PITTSBURGH", "MWD": "1880409", "MWD2": 1880409, "NewAddress": "249 CRAIG ST" }, "geometry": { "type": "Point", "coordinates": [ -79.951990485720472, 40.451352002904748 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 798, "OBJECTID": 799, "Muni": 188, "LocName": "CHURCH OF ASCENSION NEVILLE ENT", "Prefix": " ", "House": "4729", "Fraction": " ", "Street": "ELLSWORTH", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15213-1556", "Leadman": "02", "MuniName": "PITTSBURGH", "MWD": "1880410", "MWD2": 1880410, "NewAddress": "4729 ELLSWORTH AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.946779090738914, 40.44911029727696 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 799, "OBJECTID": 800, "Muni": 188, "LocName": "CHURCH OF ASCENSION NEVILLE ENT", "Prefix": " ", "House": "4729", "Fraction": " ", "Street": "ELLSWORTH", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15213-1556", "Leadman": "02", "MuniName": "PITTSBURGH", "MWD": "1880411", "MWD2": 1880411, "NewAddress": "4729 ELLSWORTH AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.946797656862714, 40.44904887023678 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 800, "OBJECTID": 801, "Muni": 188, "LocName": "FIRST BAPTIST CHURCH", "Prefix": "N", "House": "159", "Fraction": " ", "Street": "BELLFIELD", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15213-1458", "Leadman": "02", "MuniName": "PITTSBURGH", "MWD": "1880412", "MWD2": 1880412, "NewAddress": "159 BELLFIELD AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.952795304554272, 40.447891106611671 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 801, "OBJECTID": 802, "Muni": 188, "LocName": "ST PAULS SYNOD HALL AUDITORIUM", "Prefix": "N", "House": "125", "Fraction": " ", "Street": "CRAIG", "Suffix1": "ST", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15213-1555", "Leadman": "02", "MuniName": "PITTSBURGH", "MWD": "1880413", "MWD2": 1880413, "NewAddress": "125 CRAIG ST" }, "geometry": { "type": "Point", "coordinates": [ -79.949724849555508, 40.447645830970238 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 802, "OBJECTID": 803, "Muni": 188, "LocName": "FORBES QUAD - LOBBY", "Prefix": "S", "House": "230", "Fraction": " ", "Street": "BOUQUET", "Suffix1": "ST", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15213", "Leadman": "02", "MuniName": "PITTSBURGH", "MWD": "1880414", "MWD2": 1880414, "NewAddress": "230 BOUQUET ST" }, "geometry": { "type": "Point", "coordinates": [ -79.954658244741537, 40.441642273591491 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 803, "OBJECTID": 804, "Muni": 188, "LocName": "ST GEORGE ANTIOCHIAN ORTHODOX CHURCH", "Prefix": " ", "House": "3400", "Fraction": " ", "Street": "DAWSON", "Suffix1": "ST", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15213-411", "Leadman": "02", "MuniName": "PITTSBURGH", "MWD": "1880415", "MWD2": 1880415, "NewAddress": "3400 DAWSON ST" }, "geometry": { "type": "Point", "coordinates": [ -79.952726458772574, 40.43452130679934 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 804, "OBJECTID": 805, "Muni": 188, "LocName": "OAKLAND SR CITIZEN CENTER", "Prefix": " ", "House": "258", "Fraction": " ", "Street": "SEMPLE", "Suffix1": "ST", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15213-3905", "Leadman": "02", "MuniName": "PITTSBURGH", "MWD": "1880416", "MWD2": 1880416, "NewAddress": "258 SEMPLE ST" }, "geometry": { "type": "Point", "coordinates": [ -79.957664665783909, 40.439256052406918 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 805, "OBJECTID": 806, "Muni": 188, "LocName": "FRIENDSHIP CHURCH", "Prefix": " ", "House": "181", "Fraction": " ", "Street": "ROBINSON", "Suffix1": "ST", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15213-2522", "Leadman": "03", "MuniName": "PITTSBURGH", "MWD": "1880418", "MWD2": 1880418, "NewAddress": "181 ROBINSON ST" }, "geometry": { "type": "Point", "coordinates": [ -79.9659230566064, 40.440161911971607 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 806, "OBJECTID": 807, "Muni": 188, "LocName": "OFFICE\/WAREHOUSE", "Prefix": " ", "House": "2846", "Fraction": " ", "Street": "BLVD OF ALLIES", "Suffix1": "BLVD", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15213-4204", "Leadman": "02", "MuniName": "PITTSBURGH", "MWD": "1880419", "MWD2": 1880419, "NewAddress": "2846 BLVD OF ALLIES BLVD" }, "geometry": { "type": "Point", "coordinates": [ -79.96356361465682, 40.435426861916241 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 807, "OBJECTID": 808, "Muni": 188, "LocName": "AMMON REC CENTER", "Prefix": " ", "House": "2217", "Fraction": " ", "Street": "BEDFORD", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15219-4009", "Leadman": "03", "MuniName": "PITTSBURGH", "MWD": "1880503", "MWD2": 1880503, "NewAddress": "2217 BEDFORD AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.978214179786548, 40.448673705294382 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 808, "OBJECTID": 809, "Muni": 188, "LocName": "CALVARY BAPTIST CHURCH OF PGH", "Prefix": " ", "House": "2629", "Fraction": " ", "Street": "WYLIE", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15219-4523", "Leadman": "03", "MuniName": "PITTSBURGH", "MWD": "1880504", "MWD2": 1880504, "NewAddress": "2629 WYLIE AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.96954305267522, 40.449155404163882 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 809, "OBJECTID": 810, "Muni": 188, "LocName": "CHRISTOPHER A SMITH HIGH RISE", "Prefix": " ", "House": "2829", "Fraction": " ", "Street": "BEDFORD", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15219-4072", "Leadman": "03", "MuniName": "PITTSBURGH", "MWD": "1880505", "MWD2": 1880505, "NewAddress": "2829 BEDFORD AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.968786544990209, 40.453314090066499 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 810, "OBJECTID": 811, "Muni": 188, "LocName": "HOPE CTR LOWER LVL CHILD CARE CTR", "Prefix": " ", "House": "2305", "Fraction": " ", "Street": "BEDFORD", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15219-4010", "Leadman": "03", "MuniName": "PITTSBURGH", "MWD": "1880506", "MWD2": 1880506, "NewAddress": "2305 BEDFORD AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.975464775023781, 40.449679768213471 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 811, "OBJECTID": 812, "Muni": 188, "LocName": "ROBERT WILLIAMS MEMORIAL PARK REC CENTER", "Prefix": " ", "House": "3500", "Fraction": " ", "Street": "MILWAUKEE", "Suffix1": "ST", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15219-3909", "Leadman": "03", "MuniName": "PITTSBURGH", "MWD": "1880507", "MWD2": 1880507, "NewAddress": "3500 MILWAUKEE ST" }, "geometry": { "type": "Point", "coordinates": [ -79.959930679716066, 40.454711707712626 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 812, "OBJECTID": 813, "Muni": 188, "LocName": "ROBERT WILLIAMS MEMORIAL PARK REC CENTER", "Prefix": " ", "House": "3500", "Fraction": " ", "Street": "MILWAUKEE", "Suffix1": "ST", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15219-3909", "Leadman": "03", "MuniName": "PITTSBURGH", "MWD": "1880508", "MWD2": 1880508, "NewAddress": "3500 MILWAUKEE ST" }, "geometry": { "type": "Point", "coordinates": [ -79.959787392229813, 40.454967690983544 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 813, "OBJECTID": 814, "Muni": 188, "LocName": "WM S MOREHEAD TOWERS MAIN LOBBY", "Prefix": "N", "House": "375", "Fraction": " ", "Street": "CRAIG", "Suffix1": "ST", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15213-1246", "Leadman": "03", "MuniName": "PITTSBURGH", "MWD": "1880509", "MWD2": 1880509, "NewAddress": "375 CRAIG ST" }, "geometry": { "type": "Point", "coordinates": [ -79.953730346401571, 40.453830029934736 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 814, "OBJECTID": 815, "Muni": 188, "LocName": "GRACE MEMORIAL CHURCH HALL", "Prefix": " ", "House": "1000", "Fraction": " ", "Street": "BRYN MAWR", "Suffix1": "RD", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15219-5700", "Leadman": "03", "MuniName": "PITTSBURGH", "MWD": "1880510", "MWD2": 1880510, "NewAddress": "1000 BRYN MAWR RD" }, "geometry": { "type": "Point", "coordinates": [ -79.957005842534215, 40.451132395519302 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 815, "OBJECTID": 816, "Muni": 188, "LocName": "Y. M. C. A. ALL PURPOSE ROOM", "Prefix": " ", "House": "2621", "Fraction": " ", "Street": "CENTRE", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15219-4903", "Leadman": "03", "MuniName": "PITTSBURGH", "MWD": "1880511", "MWD2": 1880511, "NewAddress": "2621 CENTRE AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.967850669959574, 40.447104204987617 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 816, "OBJECTID": 817, "Muni": 188, "LocName": "WESLEY CENTER AME ZION CH.", "Prefix": " ", "House": "2701", "Fraction": " ", "Street": "CENTRE", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15219-4905", "Leadman": "03", "MuniName": "PITTSBURGH", "MWD": "1880512", "MWD2": 1880512, "NewAddress": "2701 CENTRE AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.967447777949133, 40.447431770256777 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 817, "OBJECTID": 818, "Muni": 188, "LocName": "Y. M. C. A. MEMBERSHIP LOBBY", "Prefix": " ", "House": "2621", "Fraction": " ", "Street": "CENTRE", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15219-4903", "Leadman": "03", "MuniName": "PITTSBURGH", "MWD": "1880513", "MWD2": 1880513, "NewAddress": "2621 CENTRE AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.967778289583535, 40.447134527244351 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 818, "OBJECTID": 819, "Muni": 188, "LocName": "NEW YMCA", "Prefix": " ", "House": "2114", "Fraction": " ", "Street": "CENTRE", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15219-5336", "Leadman": "03", "MuniName": "PITTSBURGH", "MWD": "1880515", "MWD2": 1880515, "NewAddress": "2114 CENTRE AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.977900072329334, 40.444580898865475 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 819, "OBJECTID": 820, "Muni": 188, "LocName": "NEW YMCA", "Prefix": " ", "House": "2114", "Fraction": " ", "Street": "CENTRE", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15219-5254", "Leadman": "03", "MuniName": "PITTSBURGH", "MWD": "1880516", "MWD2": 1880516, "NewAddress": "2114 CENTRE AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.97798024521876, 40.444588512428282 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 820, "OBJECTID": 821, "Muni": 188, "LocName": "WADSWORTH HALL", "Prefix": " ", "House": "480", "Fraction": " ", "Street": "OAKHILL", "Suffix1": "DR", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15213-2459", "Leadman": "03", "MuniName": "PITTSBURGH", "MWD": "1880518", "MWD2": 1880518, "NewAddress": "480 OAKHILL DR" }, "geometry": { "type": "Point", "coordinates": [ -79.969611513475741, 40.442724542067701 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 821, "OBJECTID": 822, "Muni": 188, "LocName": "ST AUGUSTINE PARISH HALL", "Prefix": " ", "House": "220", "Fraction": " ", "Street": "37TH", "Suffix1": "ST", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15201-1806", "Leadman": "04", "MuniName": "PITTSBURGH", "MWD": "1880601", "MWD2": 1880601, "NewAddress": "220 37TH ST" }, "geometry": { "type": "Point", "coordinates": [ -79.964757465214205, 40.465769603111113 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 822, "OBJECTID": 823, "Muni": 188, "LocName": "ST AUGUSTINE PARICH HALL", "Prefix": " ", "House": "220", "Fraction": " ", "Street": "37TH", "Suffix1": "ST", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15201-1806", "Leadman": "04", "MuniName": "PITTSBURGH", "MWD": "1880602", "MWD2": 1880602, "NewAddress": "220 37TH ST" }, "geometry": { "type": "Point", "coordinates": [ -79.96450999945975, 40.465728395173002 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 823, "OBJECTID": 824, "Muni": 188, "LocName": "ST AUGUSTINE PARISH HALL", "Prefix": " ", "House": "220", "Fraction": " ", "Street": "37TH", "Suffix1": "ST", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15201-1806", "Leadman": "04", "MuniName": "PITTSBURGH", "MWD": "1880603", "MWD2": 1880603, "NewAddress": "220 37TH ST" }, "geometry": { "type": "Point", "coordinates": [ -79.964673148607815, 40.465700206714054 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 824, "OBJECTID": 825, "Muni": 188, "LocName": "IMMACULATE HEART OF MARY CHURCH", "Prefix": " ", "House": "3058", "Fraction": " ", "Street": "BRERETON", "Suffix1": "ST", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15219-3706", "Leadman": "04", "MuniName": "PITTSBURGH", "MWD": "1880604", "MWD2": 1880604, "NewAddress": "3058 BRERETON ST" }, "geometry": { "type": "Point", "coordinates": [ -79.967776389967199, 40.456401978359743 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 825, "OBJECTID": 826, "Muni": 188, "LocName": "IMMACULATE HEART OF MARY CHURCH", "Prefix": " ", "House": "3058", "Fraction": " ", "Street": "BRERETON", "Suffix1": "ST", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15219-3706", "Leadman": "04", "MuniName": "PITTSBURGH", "MWD": "1880605", "MWD2": 1880605, "NewAddress": "3058 BRERETON ST" }, "geometry": { "type": "Point", "coordinates": [ -79.96790024726306, 40.456461676212776 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 826, "OBJECTID": 827, "Muni": 188, "LocName": "RODEF SHALOM CONGREGATION FREE HOF HALL", "Prefix": " ", "House": "4905", "Fraction": " ", "Street": "FIFTH", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15232-2116", "Leadman": "05", "MuniName": "PITTSBURGH", "MWD": "1880702", "MWD2": 1880702, "NewAddress": "4905 FIFTH AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.943076873975201, 40.447870473133356 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 827, "OBJECTID": 828, "Muni": 188, "LocName": "PARAMEDIC CENTER", "Prefix": " ", "House": "700", "Fraction": " ", "Street": "FILBERT", "Suffix1": "ST", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15232-2404", "Leadman": "05", "MuniName": "PITTSBURGH", "MWD": "1880704", "MWD2": 1880704, "NewAddress": "700 FILBERT ST" }, "geometry": { "type": "Point", "coordinates": [ -79.933803116759492, 40.452556465569302 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 828, "OBJECTID": 829, "Muni": 188, "LocName": "PARAMEDIC CENTER", "Prefix": " ", "House": "700", "Fraction": " ", "Street": "FILBERT", "Suffix1": "ST", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15232-2404", "Leadman": "05", "MuniName": "PITTSBURGH", "MWD": "1880705", "MWD2": 1880705, "NewAddress": "700 FILBERT ST" }, "geometry": { "type": "Point", "coordinates": [ -79.933958284574814, 40.45249558308668 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 829, "OBJECTID": 830, "Muni": 188, "LocName": "PARAMEDIC CENTER", "Prefix": " ", "House": "700", "Fraction": " ", "Street": "FILBERT", "Suffix1": "ST", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15232-2404", "Leadman": "05", "MuniName": "PITTSBURGH", "MWD": "1880707", "MWD2": 1880707, "NewAddress": "700 FILBERT ST" }, "geometry": { "type": "Point", "coordinates": [ -79.933837407246656, 40.452444055031613 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 830, "OBJECTID": 831, "Muni": 188, "LocName": "CALVARY EPISCOPAL CHURCH PARISH HALL", "Prefix": " ", "House": "315", "Fraction": " ", "Street": "SHADY", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15206-4202", "Leadman": "05", "MuniName": "PITTSBURGH", "MWD": "1880709", "MWD2": 1880709, "NewAddress": "315 SHADY AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.922214667500555, 40.456121507387216 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 831, "OBJECTID": 832, "Muni": 188, "LocName": "CALVARY EPISCOPAL CHURCH-PARISH HALL", "Prefix": " ", "House": "315", "Fraction": " ", "Street": "SHADY", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15206-4301", "Leadman": "05", "MuniName": "PITTSBURGH", "MWD": "1880711", "MWD2": 1880711, "NewAddress": "315 SHADY AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.92211909456465, 40.456206572419319 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 832, "OBJECTID": 833, "Muni": 188, "LocName": "CALVARY EPISCOPAL CHURCH-PARISH HALL", "Prefix": " ", "House": "315", "Fraction": " ", "Street": "SHADY", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15206-4301", "Leadman": "05", "MuniName": "PITTSBURGH", "MWD": "1880712", "MWD2": 1880712, "NewAddress": "315 SHADY AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.921974389392545, 40.456194451813047 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 833, "OBJECTID": 834, "Muni": 188, "LocName": "ST JOSEPH CHURCH", "Prefix": " ", "House": "4712", "Fraction": " ", "Street": "LIBERTY", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15224-1908", "Leadman": "04", "MuniName": "PITTSBURGH", "MWD": "1880802", "MWD2": 1880802, "NewAddress": "4712 LIBERTY AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.949796177616321, 40.461743450934286 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 834, "OBJECTID": 835, "Muni": 188, "LocName": "SHEPARD WELLNESS COMMUNITY", "Prefix": " ", "House": "4800", "Fraction": " ", "Street": "SCIOTA", "Suffix1": "ST", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15224-2127", "Leadman": "04", "MuniName": "PITTSBURGH", "MWD": "1880803", "MWD2": 1880803, "NewAddress": "4800 SCIOTA ST" }, "geometry": { "type": "Point", "coordinates": [ -79.947362762746067, 40.459604819974942 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 835, "OBJECTID": 836, "Muni": 188, "LocName": "THE WESTERN PA HOSPITAL", "Prefix": " ", "House": "4800", "Fraction": " ", "Street": "FRIENDSHIP", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15224-1750", "Leadman": "04", "MuniName": "PITTSBURGH", "MWD": "1880806", "MWD2": 1880806, "NewAddress": "4800 FRIENDSHIP AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.946661388074759, 40.461284291724063 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 836, "OBJECTID": 837, "Muni": 188, "LocName": "MCKEAN KIA 1ST FL", "Prefix": " ", "House": "5001", "Fraction": " ", "Street": "LIBERTY", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15224-2306", "Leadman": "04", "MuniName": "PITTSBURGH", "MWD": "1880807", "MWD2": 1880807, "NewAddress": "5001 LIBERTY AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.944656279262446, 40.459605456693971 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 837, "OBJECTID": 838, "Muni": 188, "LocName": "EVALINE LUTHERAN CH", "Prefix": "S", "House": "259", "Fraction": " ", "Street": "EVALINE", "Suffix1": "ST", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15224-1711", "Leadman": "04", "MuniName": "PITTSBURGH", "MWD": "1880808", "MWD2": 1880808, "NewAddress": "259 EVALINE ST" }, "geometry": { "type": "Point", "coordinates": [ -79.941334203745754, 40.462374785462323 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 838, "OBJECTID": 839, "Muni": 188, "LocName": "ESSEX POOL HOUSE-FIRST FLOOR", "Prefix": " ", "House": "5701", "Fraction": " ", "Street": "CENTRE", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15206-3744", "Leadman": "05", "MuniName": "PITTSBURGH", "MWD": "1880809", "MWD2": 1880809, "NewAddress": "5701 CENTRE AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.933276358716427, 40.457759290272399 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 839, "OBJECTID": 840, "Muni": 188, "LocName": "EVALINE LUTHERAN CH", "Prefix": "S", "House": "259", "Fraction": " ", "Street": "EVALINE", "Suffix1": "ST", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15224-1711", "Leadman": "04", "MuniName": "PITTSBURGH", "MWD": "1880810", "MWD2": 1880810, "NewAddress": "259 EVALINE ST" }, "geometry": { "type": "Point", "coordinates": [ -79.941344023355626, 40.462495931846981 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 840, "OBJECTID": 841, "Muni": 188, "LocName": "TEAMSTER TEMPLE EXTRA LIST ROOM", "Prefix": " ", "House": "4701", "Fraction": " ", "Street": "BUTLER", "Suffix1": "ST", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15201-2907", "Leadman": "04", "MuniName": "PITTSBURGH", "MWD": "1880901", "MWD2": 1880901, "NewAddress": "4701 BUTLER ST" }, "geometry": { "type": "Point", "coordinates": [ -79.958106377083354, 40.474358834513133 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 841, "OBJECTID": 842, "Muni": 188, "LocName": "TEAMSTER TEMPLE-EXTRA LIST ROOM", "Prefix": " ", "House": "4701", "Fraction": " ", "Street": "BUTLER", "Suffix1": "ST", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15201-2907", "Leadman": "04", "MuniName": "PITTSBURGH", "MWD": "1880902", "MWD2": 1880902, "NewAddress": "4701 BUTLER ST" }, "geometry": { "type": "Point", "coordinates": [ -79.958098164285246, 40.474310133013105 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 842, "OBJECTID": 843, "Muni": 188, "LocName": "TEAMSTER TEMPLE-EXTRA LIST ROOM", "Prefix": " ", "House": "4701", "Fraction": " ", "Street": "BUTLER", "Suffix1": "ST", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15201-2907", "Leadman": "04", "MuniName": "PITTSBURGH", "MWD": "1880903", "MWD2": 1880903, "NewAddress": "4701 BUTLER ST" }, "geometry": { "type": "Point", "coordinates": [ -79.958087350319275, 40.474268779088156 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 843, "OBJECTID": 844, "Muni": 188, "LocName": "ST.-MARYS LYCEUM", "Prefix": " ", "House": " ", "Fraction": " ", "Street": "45TH", "Suffix1": "ST", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15201", "Leadman": "04", "MuniName": "PITTSBURGH", "MWD": "1880904", "MWD2": 1880904, "NewAddress": " 45TH ST" }, "geometry": { "type": "Point", "coordinates": [ -79.955711326383792, 40.469839342056808 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 844, "OBJECTID": 845, "Muni": 188, "LocName": "FOSTER COMMUNITY CENTER", "Prefix": " ", "House": "286", "Fraction": " ", "Street": "MAIN", "Suffix1": "ST", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15201-2808", "Leadman": "04", "MuniName": "PITTSBURGH", "MWD": "1880905", "MWD2": 1880905, "NewAddress": "286 MAIN ST" }, "geometry": { "type": "Point", "coordinates": [ -79.958436661768104, 40.467648317065482 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 845, "OBJECTID": 846, "Muni": 188, "LocName": "FOSTER COMMUNITY CENTER", "Prefix": " ", "House": "286", "Fraction": " ", "Street": "MAIN", "Suffix1": "ST", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15201-2808", "Leadman": "04", "MuniName": "PITTSBURGH", "MWD": "1880906", "MWD2": 1880906, "NewAddress": "286 MAIN ST" }, "geometry": { "type": "Point", "coordinates": [ -79.958552890195776, 40.467705642957675 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 846, "OBJECTID": 847, "Muni": 188, "LocName": "ST MARYS LYCEUM 1ST FL", "Prefix": " ", "House": "329", "Fraction": " ", "Street": "45TH", "Suffix1": "ST", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15201", "Leadman": "04", "MuniName": "PITTSBURGH", "MWD": "1880907", "MWD2": 1880907, "NewAddress": "329 45TH ST" }, "geometry": { "type": "Point", "coordinates": [ -79.955603511599605, 40.469744212893374 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 847, "OBJECTID": 848, "Muni": 188, "LocName": "THE WESTERN PA HOSPITAL", "Prefix": " ", "House": "4800", "Fraction": " ", "Street": "FRIENDSHIP", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15224-1315", "Leadman": "04", "MuniName": "PITTSBURGH", "MWD": "1880909", "MWD2": 1880909, "NewAddress": "4800 FRIENDSHIP AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.946310286619976, 40.461838105877177 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 848, "OBJECTID": 849, "Muni": 188, "LocName": "JOHN F MURRY FUNERAL HOME PARLOR", "Prefix": " ", "House": "5175", "Fraction": " ", "Street": "BUTLER", "Suffix1": "ST", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15201-2460", "Leadman": "04", "MuniName": "PITTSBURGH", "MWD": "1881001", "MWD2": 1881001, "NewAddress": "5175 BUTLER ST" }, "geometry": { "type": "Point", "coordinates": [ -79.954876964052929, 40.480505394836491 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 849, "OBJECTID": 850, "Muni": 188, "LocName": "A.O.H. CLUB DIV 23", "Prefix": " ", "House": "5203", "Fraction": " ", "Street": "CARNEGIE", "Suffix1": "ST", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15201-2460", "Leadman": "04", "MuniName": "PITTSBURGH", "MWD": "1881002", "MWD2": 1881002, "NewAddress": "5203 CARNEGIE ST" }, "geometry": { "type": "Point", "coordinates": [ -79.953627620316311, 40.480030186231382 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 850, "OBJECTID": 851, "Muni": 188, "LocName": "A.O.H. CLUB DIV 23", "Prefix": " ", "House": "5203", "Fraction": " ", "Street": "CARNEGIE", "Suffix1": "ST", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15201-2460", "Leadman": "04", "MuniName": "PITTSBURGH", "MWD": "1881003", "MWD2": 1881003, "NewAddress": "5203 CARNEGIE ST" }, "geometry": { "type": "Point", "coordinates": [ -79.953681921932287, 40.48004789827332 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 851, "OBJECTID": 852, "Muni": 188, "LocName": "SUNNYSIDE SCHOOL-FOYER", "Prefix": " ", "House": "4801", "Fraction": " ", "Street": "STANTON", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15201-1627", "Leadman": "06", "MuniName": "PITTSBURGH", "MWD": "1881005", "MWD2": 1881005, "NewAddress": "4801 STANTON AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.933946878764957, 40.481329071717028 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 852, "OBJECTID": 853, "Muni": 188, "LocName": "MORNINGSIDE VFW POST 3945", "Prefix": " ", "House": "1820", "Fraction": " ", "Street": "MORNINGSIDE", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15206-1066", "Leadman": "06", "MuniName": "PITTSBURGH", "MWD": "1881010", "MWD2": 1881010, "NewAddress": "1820 MORNINGSIDE AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.926318207182035, 40.486888392672448 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 853, "OBJECTID": 854, "Muni": 188, "LocName": "MORNINGSIDE VFW POST 3945", "Prefix": " ", "House": "1802", "Fraction": " ", "Street": "MORNINGSIDE", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15206-1066", "Leadman": "06", "MuniName": "PITTSBURGH", "MWD": "1881011", "MWD2": 1881011, "NewAddress": "1802 MORNINGSIDE AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.926224961584467, 40.486859321181583 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 854, "OBJECTID": 855, "Muni": 188, "LocName": "SUNNYSIDE SCHOOL AUDITORIUM", "Prefix": " ", "House": "4801", "Fraction": " ", "Street": "STANTON", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15201-1627", "Leadman": "06", "MuniName": "PITTSBURGH", "MWD": "1881012", "MWD2": 1881012, "NewAddress": "4801 STANTON AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.933519070382289, 40.481282897003474 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 855, "OBJECTID": 856, "Muni": 188, "LocName": "SUNNYSIDE SCHOOL LOBBY", "Prefix": " ", "House": "4801", "Fraction": " ", "Street": "STANTON", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15201-1627", "Leadman": "06", "MuniName": "PITTSBURGH", "MWD": "1881013", "MWD2": 1881013, "NewAddress": "4801 STANTON AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.933274929786208, 40.481423142651693 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 856, "OBJECTID": 857, "Muni": 188, "LocName": "SUNNYSIDE SCHOOL, AUDITORIUM", "Prefix": " ", "House": "4801", "Fraction": " ", "Street": "STANTON", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15201-1627", "Leadman": "06", "MuniName": "PITTSBURGH", "MWD": "1881014", "MWD2": 1881014, "NewAddress": "4801 STANTON AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.933787014179231, 40.481603361438317 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 857, "OBJECTID": 858, "Muni": 188, "LocName": "ST LAWRENCE GYM-USE GYM ENT", "Prefix": "N", "House": "140", "Fraction": " ", "Street": "ATLANTIC", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15224", "Leadman": "06", "MuniName": "PITTSBURGH", "MWD": "1881017", "MWD2": 1881017, "NewAddress": "140 ATLANTIC AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.938153519683553, 40.465054886778731 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 858, "OBJECTID": 859, "Muni": 188, "LocName": "BETHESDA TEMPLE 1ST FLOOR HALL", "Prefix": " ", "House": "5000", "Fraction": " ", "Street": "DEARBORN", "Suffix1": "ST", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15224-2414", "Leadman": "06", "MuniName": "PITTSBURGH", "MWD": "1881018", "MWD2": 1881018, "NewAddress": "5000 DEARBORN ST" }, "geometry": { "type": "Point", "coordinates": [ -79.943799311236134, 40.46565027067863 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 859, "OBJECTID": 860, "Muni": 188, "LocName": "ST. LAWRENCE ACT. BLDG.", "Prefix": "N", "House": "140", "Fraction": " ", "Street": "ATLANTIC", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15224", "Leadman": "06", "MuniName": "PITTSBURGH", "MWD": "1881102", "MWD2": 1881102, "NewAddress": "140 ATLANTIC AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.938247631004998, 40.464968511882603 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 860, "OBJECTID": 861, "Muni": 188, "LocName": "EAST LIBERTY LUTH CHURCH WOLF HALL", "Prefix": " ", "House": "5707", "Fraction": " ", "Street": "PENN", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15206-3603", "Leadman": "06", "MuniName": "PITTSBURGH", "MWD": "1881103", "MWD2": 1881103, "NewAddress": "5707 PENN AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.928256330896502, 40.4629751253592 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 861, "OBJECTID": 862, "Muni": 188, "LocName": "ST. LAWRENCE ACT. BLDG.", "Prefix": "N", "House": "140", "Fraction": " ", "Street": "ATLANTIC", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15224", "Leadman": "06", "MuniName": "PITTSBURGH", "MWD": "1881104", "MWD2": 1881104, "NewAddress": "140 ATLANTIC AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.938068747477843, 40.465144609891922 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 862, "OBJECTID": 863, "Muni": 188, "LocName": "UNION PROJECT", "Prefix": "N", "House": "801", "Fraction": " ", "Street": "NEGLEY", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15206-2819", "Leadman": "06", "MuniName": "PITTSBURGH", "MWD": "1881105", "MWD2": 1881105, "NewAddress": "801 NEGLEY AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.926457542286727, 40.471798585749198 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 863, "OBJECTID": 864, "Muni": 188, "LocName": "UNION PROJECT", "Prefix": "N", "House": "801", "Fraction": " ", "Street": "NEGLEY", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15206-2059", "Leadman": "06", "MuniName": "PITTSBURGH", "MWD": "1881106", "MWD2": 1881106, "NewAddress": "801 NEGLEY AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.926650453819065, 40.471963279880661 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 864, "OBJECTID": 865, "Muni": 188, "LocName": "ST ANDREWS EPISCOPAL CHURCH", "Prefix": " ", "House": "5801", "Fraction": " ", "Street": "HAMPTON", "Suffix1": "ST", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15206-1511", "Leadman": "06", "MuniName": "PITTSBURGH", "MWD": "1881108", "MWD2": 1881108, "NewAddress": "5801 HAMPTON ST" }, "geometry": { "type": "Point", "coordinates": [ -79.920883777734034, 40.47443101997397 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 865, "OBJECTID": 866, "Muni": 188, "LocName": "ST ANDREWS EPISCOPAL CHURCH", "Prefix": " ", "House": "5801", "Fraction": " ", "Street": "HAMPTON", "Suffix1": "ST", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15206-1511", "Leadman": "06", "MuniName": "PITTSBURGH", "MWD": "1881109", "MWD2": 1881109, "NewAddress": "5801 HAMPTON ST" }, "geometry": { "type": "Point", "coordinates": [ -79.920961524666069, 40.474495787365584 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 866, "OBJECTID": 867, "Muni": 188, "LocName": "UNION PROJECT", "Prefix": "N", "House": "801", "Fraction": " ", "Street": "NEGLEY", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15206-2059", "Leadman": "06", "MuniName": "PITTSBURGH", "MWD": "1881111", "MWD2": 1881111, "NewAddress": "801 NEGLEY AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.926413406019194, 40.471740692500617 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 867, "OBJECTID": 868, "Muni": 188, "LocName": "PENTECOSTAL TEMPLE NARTHEX", "Prefix": "E", "House": "6300", "Fraction": " ", "Street": "LIBERTY", "Suffix1": "BLVD", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15206-3218", "Leadman": "05", "MuniName": "PITTSBURGH", "MWD": "1881115", "MWD2": 1881115, "NewAddress": "6300 LIBERTY BLVD" }, "geometry": { "type": "Point", "coordinates": [ -79.917639207160136, 40.462969982139789 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 868, "OBJECTID": 869, "Muni": 188, "LocName": "CROSSROADS CHURCH", "Prefix": "N", "House": "325", "Fraction": " ", "Street": "HIGHLAND", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15206-2526", "Leadman": "06", "MuniName": "PITTSBURGH", "MWD": "1881116", "MWD2": 1881116, "NewAddress": "325 HIGHLAND AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.923916430056224, 40.464539519656107 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 869, "OBJECTID": 870, "Muni": 188, "LocName": "UNION PROJECT", "Prefix": "N", "House": "801", "Fraction": " ", "Street": "NEGLEY", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15206-2059", "Leadman": "06", "MuniName": "PITTSBURGH", "MWD": "1881117", "MWD2": 1881117, "NewAddress": "801 NEGLEY AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.926449058590308, 40.472002365088017 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 870, "OBJECTID": 871, "Muni": 188, "LocName": "KINGSLEY HOUSE, PAULSON AVE EN", "Prefix": " ", "House": "6435", "Fraction": " ", "Street": "FRANKSTOWN", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15206-4117", "Leadman": "07", "MuniName": "PITTSBURGH", "MWD": "1881201", "MWD2": 1881201, "NewAddress": "6435 FRANKSTOWN AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.915473892019733, 40.461271726041289 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 871, "OBJECTID": 872, "Muni": 188, "LocName": "6TH MT ZION BAPT.CH. LINC.AVE ENT.", "Prefix": " ", "House": "6556", "Fraction": " ", "Street": "SHETLAND", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15206-3355", "Leadman": "07", "MuniName": "PITTSBURGH", "MWD": "1881202", "MWD2": 1881202, "NewAddress": "6556 SHETLAND AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.908186116294686, 40.461697528990008 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 872, "OBJECTID": 873, "Muni": 188, "LocName": "KINGSLEY HOUSE, PAULSON AVE EN", "Prefix": " ", "House": "6435", "Fraction": " ", "Street": "FRANKSTOWN", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15206-3141", "Leadman": "07", "MuniName": "PITTSBURGH", "MWD": "1881203", "MWD2": 1881203, "NewAddress": "6435 FRANKSTOWN AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.915592272522019, 40.461305624527292 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 873, "OBJECTID": 874, "Muni": 188, "LocName": "KINGSLEY HOUSE,PAULSON AVE EN", "Prefix": " ", "House": "6435", "Fraction": " ", "Street": "FRANSKTOWN", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15206-3141", "Leadman": "07", "MuniName": "PITTSBURGH", "MWD": "1881204", "MWD2": 1881204, "NewAddress": "6435 FRANSKTOWN AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.915501525561822, 40.461520347078007 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 874, "OBJECTID": 875, "Muni": 188, "LocName": "KINGSLEY HOUSE, PAULSON AVE EN", "Prefix": " ", "House": "6435", "Fraction": " ", "Street": "FRANKSTOWN", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15206-4055", "Leadman": "05", "MuniName": "PITTSBURGH", "MWD": "1881205", "MWD2": 1881205, "NewAddress": "6435 FRANKSTOWN AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.915274870398903, 40.461346826220044 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 875, "OBJECTID": 876, "Muni": 188, "LocName": "KINGSLEY HOUSE, PAULSON AVE EN", "Prefix": " ", "House": "6435", "Fraction": " ", "Street": "FRANKSTOWN", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15206-4055", "Leadman": "05", "MuniName": "PITTSBURGH", "MWD": "1881206", "MWD2": 1881206, "NewAddress": "6435 FRANKSTOWN AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.915113621594799, 40.461349846523959 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 876, "OBJECTID": 877, "Muni": 188, "LocName": "HOMEWOOD\/BRUSHTON YWCA MULTI PR RM", "Prefix": " ", "House": "6907", "Fraction": " ", "Street": "FRANKSTOWN", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15208-1310", "Leadman": "07", "MuniName": "PITTSBURGH", "MWD": "1881208", "MWD2": 1881208, "NewAddress": "6907 FRANKSTOWN AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.903203585799176, 40.458316882036627 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 877, "OBJECTID": 878, "Muni": 188, "LocName": "HOMEWOOD\/BRUSHTON YWCA MULTI PR RM", "Prefix": " ", "House": "6907", "Fraction": " ", "Street": "FRANKSTOWN", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15208-1310", "Leadman": "07", "MuniName": "PITTSBURGH", "MWD": "1881209", "MWD2": 1881209, "NewAddress": "6907 FRANKSTOWN AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.903388930202368, 40.458535712013344 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 878, "OBJECTID": 879, "Muni": 188, "LocName": "#15 ENGINE HOUSE", "Prefix": " ", "House": "7024", "Fraction": " ", "Street": "LEMINGTON", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15206-1256", "Leadman": "07", "MuniName": "PITTSBURGH", "MWD": "1881213", "MWD2": 1881213, "NewAddress": "7024 LEMINGTON AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.897866581990229, 40.470617093160115 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 879, "OBJECTID": 880, "Muni": 188, "LocName": "ST CHARLES LWANGA PARISH", "Prefix": " ", "House": "1550", "Fraction": " ", "Street": "LINCOLN", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15206", "Leadman": "07", "MuniName": "PITTSBURGH", "MWD": "1881215", "MWD2": 1881215, "NewAddress": "1550 LINCOLN AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.894313953894979, 40.469647457743022 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 880, "OBJECTID": 881, "Muni": 188, "LocName": "ST CHARLES LWANGA PARISH", "Prefix": " ", "House": "1550", "Fraction": " ", "Street": "LINCOLN", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15206-1256", "Leadman": "07", "MuniName": "PITTSBURGH", "MWD": "1881216", "MWD2": 1881216, "NewAddress": "1550 LINCOLN AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.894368420248981, 40.469598912427657 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 881, "OBJECTID": 882, "Muni": 188, "LocName": "CARNEGIE LIBRARY OF PGH", "Prefix": " ", "House": "7101", "Fraction": " ", "Street": "HAMILTON", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15208-1763", "Leadman": "07", "MuniName": "PITTSBURGH", "MWD": "1881301", "MWD2": 1881301, "NewAddress": "7101 HAMILTON AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.899295502212823, 40.455225032172656 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 882, "OBJECTID": 883, "Muni": 188, "LocName": "HOMEWOOD HOUSE-COM-RM-SIDE ENT", "Prefix": " ", "House": "7130", "Fraction": " ", "Street": "FRANKSTOWN", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15208-1466", "Leadman": "07", "MuniName": "PITTSBURGH", "MWD": "1881302", "MWD2": 1881302, "NewAddress": "7130 FRANKSTOWN AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.897817003994533, 40.457429861633109 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 883, "OBJECTID": 884, "Muni": 188, "LocName": "LINCOLN INTERMEDIATE SCHOOL", "Prefix": " ", "House": "7109", "Fraction": " ", "Street": "HERMITAGE", "Suffix1": "ST", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15208-1112", "Leadman": "07", "MuniName": "PITTSBURGH", "MWD": "1881303", "MWD2": 1881303, "NewAddress": "7109 HERMITAGE ST" }, "geometry": { "type": "Point", "coordinates": [ -79.897055957674979, 40.460877073957107 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 884, "OBJECTID": 885, "Muni": 188, "LocName": "LINCOLN INTERMEDIATE SCHOOL", "Prefix": " ", "House": "7109", "Fraction": " ", "Street": "HERMITAGE", "Suffix1": "ST", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15208-1112", "Leadman": "07", "MuniName": "PITTSBURGH", "MWD": "1881304", "MWD2": 1881304, "NewAddress": "7109 HERMITAGE ST" }, "geometry": { "type": "Point", "coordinates": [ -79.896933584936377, 40.460847843179607 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 885, "OBJECTID": 886, "Muni": 188, "LocName": "LINCOLN INTERMEDIATE SCHOOL", "Prefix": " ", "House": "7109", "Fraction": " ", "Street": "HERMITAGE", "Suffix1": "ST", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15208-1112", "Leadman": "07", "MuniName": "PITTSBURGH", "MWD": "1881305", "MWD2": 1881305, "NewAddress": "7109 HERMITAGE ST" }, "geometry": { "type": "Point", "coordinates": [ -79.89724707919234, 40.46097853519845 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 886, "OBJECTID": 887, "Muni": 188, "LocName": "BAPTIST TEMPLE CHURCH BASEMENT", "Prefix": " ", "House": "7241", "Fraction": " ", "Street": "RACE", "Suffix1": "ST", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15208-1433", "Leadman": "07", "MuniName": "PITTSBURGH", "MWD": "1881306", "MWD2": 1881306, "NewAddress": "7241 RACE ST" }, "geometry": { "type": "Point", "coordinates": [ -79.893799406869078, 40.458556019533034 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 887, "OBJECTID": 888, "Muni": 188, "LocName": "BETHESDA PR CH RR FLEURY WAY ENT", "Prefix": " ", "House": "7220", "Fraction": " ", "Street": "BENNETT", "Suffix1": "ST", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15208-1471", "Leadman": "07", "MuniName": "PITTSBURGH", "MWD": "1881307", "MWD2": 1881307, "NewAddress": "7220 BENNETT ST" }, "geometry": { "type": "Point", "coordinates": [ -79.896185673939428, 40.45638126635297 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 888, "OBJECTID": 889, "Muni": 188, "LocName": "BETHESDA PR CH RR FLEURY WAY ENT", "Prefix": " ", "House": "7220", "Fraction": " ", "Street": "BENNETT", "Suffix1": "ST", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15208-1471", "Leadman": "07", "MuniName": "PITTSBURGH", "MWD": "1881308", "MWD2": 1881308, "NewAddress": "7220 BENNETT ST" }, "geometry": { "type": "Point", "coordinates": [ -79.896185673939428, 40.45638126635297 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 889, "OBJECTID": 890, "Muni": 188, "LocName": "HELEN S FAISON ARTS ACADEMY GYM", "Prefix": " ", "House": "7430", "Fraction": " ", "Street": "TIOGA", "Suffix1": "ST", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15208-1951", "Leadman": "07", "MuniName": "PITTSBURGH", "MWD": "1881310", "MWD2": 1881310, "NewAddress": "7430 TIOGA ST" }, "geometry": { "type": "Point", "coordinates": [ -79.894211313449361, 40.452618494904051 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 890, "OBJECTID": 891, "Muni": 188, "LocName": "BAXTER SCHOOL, STUDENT ACH CTR", "Prefix": " ", "House": "925", "Fraction": " ", "Street": "BRUSHTON", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15208-1613", "Leadman": "07", "MuniName": "PITTSBURGH", "MWD": "1881311", "MWD2": 1881311, "NewAddress": "925 BRUSHTON AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.88829143858878, 40.45624724984345 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 891, "OBJECTID": 892, "Muni": 188, "LocName": "BETHANY CENTER MULTI-PURPOSE RM", "Prefix": " ", "House": "7745", "Fraction": " ", "Street": "TIOGA", "Suffix1": "ST", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15208-2105", "Leadman": "07", "MuniName": "PITTSBURGH", "MWD": "1881313", "MWD2": 1881313, "NewAddress": "7745 TIOGA ST" }, "geometry": { "type": "Point", "coordinates": [ -79.888121067736421, 40.45062491178922 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 892, "OBJECTID": 894, "Muni": 188, "LocName": "SOUTHSIDE MARKET HOUSE", "Prefix": " ", "House": " ", "Fraction": " ", "Street": "12TH AND BINGHAM", "Suffix1": "ST", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15203", "Leadman": "10", "MuniName": "PITTSBURGH", "MWD": "1881702", "MWD2": 1881702, "NewAddress": " 12TH AND BINGHAM ST" }, "geometry": { "type": "Point", "coordinates": [ -79.986478565451051, 40.429487059709153 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 893, "OBJECTID": 895, "Muni": 188, "LocName": "SOUTHSIDE MARKET HOUSE", "Prefix": " ", "House": " ", "Fraction": " ", "Street": "12TH AND BINGHAM", "Suffix1": "ST", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15203", "Leadman": "10", "MuniName": "PITTSBURGH", "MWD": "1881703", "MWD2": 1881703, "NewAddress": " 12TH AND BINGHAM ST" }, "geometry": { "type": "Point", "coordinates": [ -79.986471960707931, 40.429350541454859 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 894, "OBJECTID": 896, "Muni": 188, "LocName": "AMERICAN LEGION POST #694", "Prefix": " ", "House": "1751", "Fraction": " ", "Street": "ARLINGTON", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15210-1724", "Leadman": "10", "MuniName": "PITTSBURGH", "MWD": "1881706", "MWD2": 1881706, "NewAddress": "1751 ARLINGTON AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.984476578630122, 40.417800827391929 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 895, "OBJECTID": 897, "Muni": 188, "LocName": "ST PAUL CROSS RETREAT CENTER", "Prefix": " ", "House": "1905", "Fraction": " ", "Street": "MONASTERY", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15203-1617", "Leadman": "10", "MuniName": "PITTSBURGH", "MWD": "1881708", "MWD2": 1881708, "NewAddress": "1905 MONASTERY AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.984318599730557, 40.423125594816597 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 896, "OBJECTID": 898, "Muni": 188, "LocName": "MCKINLEY PARK REC CTR GYM", "Prefix": " ", "House": "150", "Fraction": " ", "Street": "AMESBURY", "Suffix1": "ST", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15241-2306", "Leadman": "11", "MuniName": "PITTSBURGH", "MWD": "1881802", "MWD2": 1881802, "NewAddress": "150 AMESBURY ST" }, "geometry": { "type": "Point", "coordinates": [ -80.00409451981362, 40.413670985352752 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 897, "OBJECTID": 899, "Muni": 188, "LocName": "BELTZHOVER COMMUNITY CENTER", "Prefix": " ", "House": "407", "Fraction": " ", "Street": "GEARING", "Suffix1": "ST", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15210-1213", "Leadman": "11", "MuniName": "PITTSBURGH", "MWD": "1881803", "MWD2": 1881803, "NewAddress": "407 GEARING ST" }, "geometry": { "type": "Point", "coordinates": [ -80.004957370051415, 40.41815201626401 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 898, "OBJECTID": 900, "Muni": 188, "LocName": "BAILEY AVE PRESBYTERIAN CHURCH", "Prefix": " ", "House": "213", "Fraction": " ", "Street": "BAILEY", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15211-1705", "Leadman": "11", "MuniName": "PITTSBURGH", "MWD": "1881805", "MWD2": 1881805, "NewAddress": "213 BAILEY AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.002689850919879, 40.427171040416461 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 899, "OBJECTID": 901, "Muni": 188, "LocName": "ST JOHN VIANNEY CATH PARISH", "Prefix": " ", "House": "823", "Fraction": " ", "Street": "CLIMAX", "Suffix1": "ST", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15210-1642", "Leadman": "11", "MuniName": "PITTSBURGH", "MWD": "1881808", "MWD2": 1881808, "NewAddress": "823 CLIMAX ST" }, "geometry": { "type": "Point", "coordinates": [ -79.99337212324636, 40.420194225590407 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 900, "OBJECTID": 902, "Muni": 188, "LocName": "CALIGUIRI PLAZA COM ROOM", "Prefix": "E", "House": "803", "Fraction": " ", "Street": "WARRINGTON", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15210-1515", "Leadman": "11", "MuniName": "PITTSBURGH", "MWD": "1881809", "MWD2": 1881809, "NewAddress": "803 WARRINGTON AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.993643935296632, 40.422035267895268 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 901, "OBJECTID": 903, "Muni": 188, "LocName": "SWEETBRIAR PLACE APTS", "Prefix": " ", "House": "211", "Fraction": " ", "Street": "SWEETBRIAR", "Suffix1": "ST", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15211-1122", "Leadman": "12", "MuniName": "PITTSBURGH", "MWD": "1881902", "MWD2": 1881902, "NewAddress": "211 SWEETBRIAR ST" }, "geometry": { "type": "Point", "coordinates": [ -80.021424638417542, 40.437885942732485 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 902, "OBJECTID": 904, "Muni": 188, "LocName": "GRACE EPISCOPAL CHURCH", "Prefix": "W", "House": "319", "Fraction": " ", "Street": "SYCAMORE", "Suffix1": "ST", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15211-1429", "Leadman": "12", "MuniName": "PITTSBURGH", "MWD": "1881905", "MWD2": 1881905, "NewAddress": "319 SYCAMORE ST" }, "geometry": { "type": "Point", "coordinates": [ -80.011337189608582, 40.432294128108225 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 903, "OBJECTID": 905, "Muni": 188, "LocName": "GRANDVIEW UNITED PRES. CH.", "Prefix": "W", "House": "319", "Fraction": " ", "Street": "SYCAMORE", "Suffix1": "ST", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15211-1500", "Leadman": "12", "MuniName": "PITTSBURGH", "MWD": "1881906", "MWD2": 1881906, "NewAddress": "319 SYCAMORE ST" }, "geometry": { "type": "Point", "coordinates": [ -80.011499108182747, 40.432311539737796 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 904, "OBJECTID": 907, "Muni": 188, "LocName": "ST JUSTIN PLAZA REC RM", "Prefix": " ", "House": "120", "Fraction": " ", "Street": "BOGGS", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15211-2059", "Leadman": "11", "MuniName": "PITTSBURGH", "MWD": "1881910", "MWD2": 1881910, "NewAddress": "120 BOGGS AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.006944926329183, 40.426864432596467 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 905, "OBJECTID": 908, "Muni": 188, "LocName": "ST PAMPHILUS CHURCH", "Prefix": " ", "House": "1000", "Fraction": " ", "Street": "TROPICAL", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15216-3034", "Leadman": "12", "MuniName": "PITTSBURGH", "MWD": "1881912", "MWD2": 1881912, "NewAddress": "1000 TROPICAL AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.025625103498527, 40.418995189536481 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 906, "OBJECTID": 909, "Muni": 188, "LocName": "DILLWORTH SHELTER HOUSE", "Prefix": " ", "House": "557", "Fraction": " ", "Street": "NORTON", "Suffix1": "ST", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15211", "Leadman": "11", "MuniName": "PITTSBURGH", "MWD": "1881913", "MWD2": 1881913, "NewAddress": "557 NORTON ST" }, "geometry": { "type": "Point", "coordinates": [ -80.014029837612, 40.424810957812916 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 907, "OBJECTID": 910, "Muni": 188, "LocName": "ST CATHERINE SCHOOL", "Prefix": " ", "House": "1915", "Fraction": " ", "Street": "BROADWAY", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15216-3129", "Leadman": "12", "MuniName": "PITTSBURGH", "MWD": "1881918", "MWD2": 1881918, "NewAddress": "1915 BROADWAY AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.027264905532959, 40.406593874429632 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 908, "OBJECTID": 911, "Muni": 188, "LocName": "BEECHVIEW UNITED PRESBYTERIAN CHURCH", "Prefix": " ", "House": "1621", "Fraction": " ", "Street": "BROADWAY", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15216-3246", "Leadman": "12", "MuniName": "PITTSBURGH", "MWD": "1881919", "MWD2": 1881919, "NewAddress": "1621 BROADWAY AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.024287921970839, 40.409721528245804 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 909, "OBJECTID": 912, "Muni": 188, "LocName": "ST CATHERINE SCHOOL", "Prefix": " ", "House": "1915", "Fraction": " ", "Street": "BROADWAY", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15216-3129", "Leadman": "12", "MuniName": "PITTSBURGH", "MWD": "1881920", "MWD2": 1881920, "NewAddress": "1915 BROADWAY AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.027226905460935, 40.406468743802485 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 910, "OBJECTID": 913, "Muni": 188, "LocName": "SETON CENTER CONFERENCE RM", "Prefix": " ", "House": "1900", "Fraction": " ", "Street": "PIONEER", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15226-1218", "Leadman": "12", "MuniName": "PITTSBURGH", "MWD": "1881923", "MWD2": 1881923, "NewAddress": "1900 PIONEER AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.015772920884871, 40.403991585768239 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 911, "OBJECTID": 914, "Muni": 188, "LocName": "ST PIUS X SCHOOL", "Prefix": " ", "House": "2690", "Fraction": " ", "Street": "WADDINGTON", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15226-1759", "Leadman": "12", "MuniName": "PITTSBURGH", "MWD": "1881924", "MWD2": 1881924, "NewAddress": "2690 WADDINGTON AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.028771301526987, 40.395677586072885 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 912, "OBJECTID": 915, "Muni": 188, "LocName": "BROOKLINE ELEM SCHOOL - RM 320 A", "Prefix": " ", "House": "500", "Fraction": " ", "Street": "WOODBOURNE", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15226-2102", "Leadman": "12", "MuniName": "PITTSBURGH", "MWD": "1881925", "MWD2": 1881925, "NewAddress": "500 WOODBOURNE AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.024655484833175, 40.394092761819394 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 913, "OBJECTID": 916, "Muni": 188, "LocName": "BROOKLINE TERRACE", "Prefix": " ", "House": "920", "Fraction": " ", "Street": "BROOKLINE", "Suffix1": "BLVD", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15226-2148", "Leadman": "12", "MuniName": "PITTSBURGH", "MWD": "1881926", "MWD2": 1881926, "NewAddress": "920 BROOKLINE BLVD" }, "geometry": { "type": "Point", "coordinates": [ -80.018760381809273, 40.3925006863942 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 914, "OBJECTID": 917, "Muni": 188, "LocName": "RESURRECTION SCH.-RM. A-2", "Prefix": " ", "House": "1100", "Fraction": " ", "Street": "CREEDMOOR", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15226-2254", "Leadman": "19", "MuniName": "PITTSBURGH", "MWD": "1881927", "MWD2": 1881927, "NewAddress": "1100 CREEDMOOR AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.015172095535092, 40.391124798647773 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 915, "OBJECTID": 918, "Muni": 188, "LocName": "BROOKLINE UP CH-CHELTON AVE ENT", "Prefix": " ", "House": "1036", "Fraction": " ", "Street": "BROOKLINE", "Suffix1": "BLVD", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15226-2202", "Leadman": "12", "MuniName": "PITTSBURGH", "MWD": "1881929", "MWD2": 1881929, "NewAddress": "1036 BROOKLINE BLVD" }, "geometry": { "type": "Point", "coordinates": [ -80.016560510697531, 40.391570939476189 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 916, "OBJECTID": 919, "Muni": 188, "LocName": "RESURRECTION SCH. CAFETERIA", "Prefix": " ", "House": "1100", "Fraction": " ", "Street": "CREEDMOOR", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15226-2254", "Leadman": "19", "MuniName": "PITTSBURGH", "MWD": "1881930", "MWD2": 1881930, "NewAddress": "1100 CREEDMOOR AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.01514286456235, 40.390955988295005 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 917, "OBJECTID": 920, "Muni": 188, "LocName": "OUR LADY OF LORETTO SCHOOL SOCIAL HALL", "Prefix": " ", "House": "1901", "Fraction": " ", "Street": "PIONEER", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15226-1449", "Leadman": "12", "MuniName": "PITTSBURGH", "MWD": "1881933", "MWD2": 1881933, "NewAddress": "1901 PIONEER AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.015028682468255, 40.40413888395053 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 918, "OBJECTID": 921, "Muni": 188, "LocName": "OUR LADY OF LORETTO SCHOOL SOCAIL HALL", "Prefix": " ", "House": "1901", "Fraction": " ", "Street": "PIONEER", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15226-1218", "Leadman": "12", "MuniName": "PITTSBURGH", "MWD": "1881934", "MWD2": 1881934, "NewAddress": "1901 PIONEER AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.015057886844161, 40.404161356853812 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 919, "OBJECTID": 922, "Muni": 188, "LocName": "SETON CENTER INFANT ROOM", "Prefix": " ", "House": "1900", "Fraction": " ", "Street": "PIONEER", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15226-1218", "Leadman": "12", "MuniName": "PITTSBURGH", "MWD": "1881935", "MWD2": 1881935, "NewAddress": "1900 PIONEER AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.015558063128822, 40.404005483412689 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 920, "OBJECTID": 923, "Muni": 188, "LocName": "RESURRECTION SCH. RM. A-1", "Prefix": " ", "House": "1100", "Fraction": " ", "Street": "CREEDMOOR", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15226-2254", "Leadman": "19", "MuniName": "PITTSBURGH", "MWD": "1881937", "MWD2": 1881937, "NewAddress": "1100 CREEDMOOR AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.015039721824408, 40.390972426697168 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 921, "OBJECTID": 924, "Muni": 188, "LocName": "BROOKLINE ELEM SCH CAFETERIA", "Prefix": " ", "House": "500", "Fraction": " ", "Street": "WOODBOURNE", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15226-2102", "Leadman": "12", "MuniName": "PITTSBURGH", "MWD": "1881938", "MWD2": 1881938, "NewAddress": "500 WOODBOURNE AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.02473920812966, 40.394219743060198 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 922, "OBJECTID": 925, "Muni": 188, "LocName": "GARAGE OF RESIDENCE", "Prefix": " ", "House": "789", "Fraction": " ", "Street": "TROPICAL", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15216-3051", "Leadman": "12", "MuniName": "PITTSBURGH", "MWD": "1882002", "MWD2": 1882002, "NewAddress": "789 TROPICAL AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.024080319431931, 40.423594147654114 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 923, "OBJECTID": 926, "Muni": 188, "LocName": "WEST END SR COM CTR 1ST FL", "Prefix": " ", "House": "80", "Fraction": " ", "Street": "WABASH", "Suffix1": "ST", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15220-5420", "Leadman": "13", "MuniName": "PITTSBURGH", "MWD": "1882003", "MWD2": 1882003, "NewAddress": "80 WABASH ST" }, "geometry": { "type": "Point", "coordinates": [ -80.034708197282427, 40.438865302639556 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 924, "OBJECTID": 927, "Muni": 188, "LocName": "WEST END SR COM CTR 1ST FL", "Prefix": " ", "House": "80", "Fraction": " ", "Street": "WABASH", "Suffix1": "ST", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15220-5420", "Leadman": "13", "MuniName": "PITTSBURGH", "MWD": "1882004", "MWD2": 1882004, "NewAddress": "80 WABASH ST" }, "geometry": { "type": "Point", "coordinates": [ -80.034715758746756, 40.438952898855788 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 925, "OBJECTID": 928, "Muni": 188, "LocName": "KNIGHTS OF COLUMBUS", "Prefix": " ", "House": "725", "Fraction": " ", "Street": "LORENZ", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15220-5708", "Leadman": "13", "MuniName": "PITTSBURGH", "MWD": "1882006", "MWD2": 1882006, "NewAddress": "725 LORENZ AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.039696585283338, 40.444400677525955 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 926, "OBJECTID": 929, "Muni": 188, "LocName": "AMERICAN LEGION LANGLEY POST 496", "Prefix": " ", "House": "2867", "Fraction": " ", "Street": "CHARTIERS", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15204-1713", "Leadman": "18", "MuniName": "PITTSBURGH", "MWD": "1882007", "MWD2": 1882007, "NewAddress": "2867 CHARTIERS AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.056406090581902, 40.453966356906108 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 927, "OBJECTID": 930, "Muni": 188, "LocName": "EMANUEL METHODIST CHURCH", "Prefix": " ", "House": "856", "Fraction": " ", "Street": "CRUCIBLE", "Suffix1": "ST", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15220-5632", "Leadman": "18", "MuniName": "PITTSBURGH", "MWD": "1882008", "MWD2": 1882008, "NewAddress": "856 CRUCIBLE ST" }, "geometry": { "type": "Point", "coordinates": [ -80.041335168672049, 40.443181171807744 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 928, "OBJECTID": 931, "Muni": 188, "LocName": "SONS OF GOD MINISTRY", "Prefix": " ", "House": "200", "Fraction": " ", "Street": "TABOR", "Suffix1": "ST", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15204-1342", "Leadman": "50", "MuniName": "PITTSBURGH", "MWD": "1882009", "MWD2": 1882009, "NewAddress": "200 TABOR ST" }, "geometry": { "type": "Point", "coordinates": [ -80.052796544000032, 40.462598808061266 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 929, "OBJECTID": 932, "Muni": 188, "LocName": "AMERICAN LEGION LANGLEY POST 496", "Prefix": " ", "House": "2867", "Fraction": " ", "Street": "CHARTIERS", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15204-1713", "Leadman": "18", "MuniName": "PITTSBURGH", "MWD": "1882010", "MWD2": 1882010, "NewAddress": "2867 CHARTIERS AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.056307209626667, 40.453949511290425 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 930, "OBJECTID": 933, "Muni": 188, "LocName": "SHERADEN COMM CENTER", "Prefix": " ", "House": "720", "Fraction": " ", "Street": "SHERWOOD", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15204-1724", "Leadman": "18", "MuniName": "PITTSBURGH", "MWD": "1882011", "MWD2": 1882011, "NewAddress": "720 SHERWOOD AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.056405327083127, 40.45514552170377 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 931, "OBJECTID": 934, "Muni": 188, "LocName": "SHERADEN UNITED METHODIST CH", "Prefix": " ", "House": "2966", "Fraction": " ", "Street": "CHARTIERS", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15204-2304", "Leadman": "18", "MuniName": "PITTSBURGH", "MWD": "1882012", "MWD2": 1882012, "NewAddress": "2966 CHARTIERS AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.057943795716298, 40.454411937746343 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 932, "OBJECTID": 935, "Muni": 188, "LocName": "CHARTIERS ELEMENTARY SCHOOL", "Prefix": " ", "House": "3799", "Fraction": " ", "Street": "CHARTIERS", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15204-1136", "Leadman": "18", "MuniName": "PITTSBURGH", "MWD": "1882013", "MWD2": 1882013, "NewAddress": "3799 CHARTIERS AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.075764470407506, 40.457717002585674 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 933, "OBJECTID": 936, "Muni": 188, "LocName": "ACENSION CHURCH HALL", "Prefix": " ", "House": "114", "Fraction": " ", "Street": "BERRY", "Suffix1": "ST", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15205-2210", "Leadman": "18", "MuniName": "PITTSBURGH", "MWD": "1882014", "MWD2": 1882014, "NewAddress": "114 BERRY ST" }, "geometry": { "type": "Point", "coordinates": [ -80.068261283440194, 40.449058853241652 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 934, "OBJECTID": 937, "Muni": 188, "LocName": "MARIAN MANOR NUR HOME-ACTIV RM", "Prefix": " ", "House": "2695", "Fraction": " ", "Street": "WINCHESTER", "Suffix1": "DR", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15220-4039", "Leadman": "13", "MuniName": "PITTSBURGH", "MWD": "1882015", "MWD2": 1882015, "NewAddress": "2695 WINCHESTER DR" }, "geometry": { "type": "Point", "coordinates": [ -80.042062795699223, 40.408235581993971 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 935, "OBJECTID": 938, "Muni": 188, "LocName": "MARIAN MANOR NUR HOME-ACTIV RM", "Prefix": " ", "House": "2695", "Fraction": " ", "Street": "WINCHESTER", "Suffix1": "DR", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15220-4039", "Leadman": "13", "MuniName": "PITTSBURGH", "MWD": "1882016", "MWD2": 1882016, "NewAddress": "2695 WINCHESTER DR" }, "geometry": { "type": "Point", "coordinates": [ -80.042074389720881, 40.408115567902897 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 936, "OBJECTID": 939, "Muni": 188, "LocName": "BANKSVILLE POOL-FIRST FLOOR", "Prefix": " ", "House": " ", "Fraction": " ", "Street": "CRANE", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15216", "Leadman": "13", "MuniName": "PITTSBURGH", "MWD": "1882017", "MWD2": 1882017, "NewAddress": " CRANE AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.040181595546727, 40.415060472282825 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 937, "OBJECTID": 940, "Muni": 188, "LocName": "BANKSVILLE POOL-FIRST FLOOR", "Prefix": " ", "House": " ", "Fraction": " ", "Street": "CRANE", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15216", "Leadman": "13", "MuniName": "PITTSBURGH", "MWD": "1882018", "MWD2": 1882018, "NewAddress": " CRANE AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.039886336945486, 40.41481946900722 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 938, "OBJECTID": 941, "Muni": 188, "LocName": "MANCHESTER SCHOOL", "Prefix": " ", "House": "1612", "Fraction": " ", "Street": "MANHATTAN", "Suffix1": "ST", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15233-1225", "Leadman": "14", "MuniName": "PITTSBURGH", "MWD": "1882101", "MWD2": 1882101, "NewAddress": "1612 MANHATTAN ST" }, "geometry": { "type": "Point", "coordinates": [ -80.026628616496822, 40.456285099247673 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 939, "OBJECTID": 942, "Muni": 188, "LocName": "MANCHESTER SCHOOL", "Prefix": " ", "House": "1612", "Fraction": " ", "Street": "MANHATTAN", "Suffix1": "ST", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15233-1225", "Leadman": "14", "MuniName": "PITTSBURGH", "MWD": "1882102", "MWD2": 1882102, "NewAddress": "1612 MANHATTAN ST" }, "geometry": { "type": "Point", "coordinates": [ -80.026319204736794, 40.456221930501393 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 940, "OBJECTID": 943, "Muni": 188, "LocName": "PENNSYLVANIA BIDWELL APTS.", "Prefix": " ", "House": "1014", "Fraction": " ", "Street": "SHEFFIELD", "Suffix1": "ST", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15233-1533", "Leadman": "14", "MuniName": "PITTSBURGH", "MWD": "1882103", "MWD2": 1882103, "NewAddress": "1014 SHEFFIELD ST" }, "geometry": { "type": "Point", "coordinates": [ -80.02054904578786, 40.454185064366378 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 941, "OBJECTID": 944, "Muni": 188, "LocName": "PENNA BIDWELL APTS", "Prefix": " ", "House": "1014", "Fraction": " ", "Street": "SHEFFIELD", "Suffix1": "ST", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15233-1533", "Leadman": "14", "MuniName": "PITTSBURGH", "MWD": "1882104", "MWD2": 1882104, "NewAddress": "1014 SHEFFIELD ST" }, "geometry": { "type": "Point", "coordinates": [ -80.020684528591076, 40.454150847541257 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 942, "OBJECTID": 945, "Muni": 188, "LocName": "WEST PARK COURT", "Prefix": "W", "House": "710", "Fraction": " ", "Street": "NORTH", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15212-4563", "Leadman": "14", "MuniName": "PITTSBURGH", "MWD": "1882201", "MWD2": 1882201, "NewAddress": "710 NORTH AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.014055280396278, 40.454376556888604 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 943, "OBJECTID": 946, "Muni": 188, "LocName": "ALLEG. UNITED METHODIST CH.", "Prefix": "W", "House": "114", "Fraction": " ", "Street": "NORTH", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15212-4609", "Leadman": "14", "MuniName": "PITTSBURGH", "MWD": "1882203", "MWD2": 1882203, "NewAddress": "114 NORTH AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.008454967946378, 40.455357139521865 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 944, "OBJECTID": 947, "Muni": 188, "LocName": "CARNEGIE LIBRARY", "Prefix": " ", "House": "5", "Fraction": " ", "Street": "ALLEGHENY", "Suffix1": "SQ", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15212-5350", "Leadman": "14", "MuniName": "PITTSBURGH", "MWD": "1882204", "MWD2": 1882204, "NewAddress": "5 ALLEGHENY SQ" }, "geometry": { "type": "Point", "coordinates": [ -80.005191385535696, 40.452998394655907 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 945, "OBJECTID": 948, "Muni": 188, "LocName": "PRESSLEY HI RISE", "Prefix": " ", "House": "601", "Fraction": " ", "Street": "PRESSLEY", "Suffix1": "ST", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15212-5654", "Leadman": "14", "MuniName": "PITTSBURGH", "MWD": "1882301", "MWD2": 1882301, "NewAddress": "601 PRESSLEY ST" }, "geometry": { "type": "Point", "coordinates": [ -79.998729667621788, 40.451644814962869 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 946, "OBJECTID": 949, "Muni": 188, "LocName": "SPRING HILL SCHOOL", "Prefix": " ", "House": "1351", "Fraction": " ", "Street": "DAMAS", "Suffix1": "ST", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15212-3429", "Leadman": "16", "MuniName": "PITTSBURGH", "MWD": "1882401", "MWD2": 1882401, "NewAddress": "1351 DAMAS ST" }, "geometry": { "type": "Point", "coordinates": [ -79.989150783767826, 40.465005528232183 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 947, "OBJECTID": 950, "Muni": 188, "LocName": "SPRINGHILL SCH-CAFETERIA-HANDICAP ENT", "Prefix": " ", "House": "1351", "Fraction": " ", "Street": "DAMAS", "Suffix1": "ST", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15212-3540", "Leadman": "16", "MuniName": "PITTSBURGH", "MWD": "1882402", "MWD2": 1882402, "NewAddress": "1351 DAMAS ST" }, "geometry": { "type": "Point", "coordinates": [ -79.989214689561663, 40.465210488572573 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 948, "OBJECTID": 951, "Muni": 188, "LocName": "ST. MICHAEL & ALL ANGELS CH.", "Prefix": " ", "House": "1308", "Fraction": " ", "Street": "SPRING GARDEN", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15212-3710", "Leadman": "16", "MuniName": "PITTSBURGH", "MWD": "1882403", "MWD2": 1882403, "NewAddress": "1308 SPRING GARDEN AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.988267466566796, 40.46099245196978 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 949, "OBJECTID": 952, "Muni": 188, "LocName": "MOST HOLY NAME CATHOLIC CHURCH", "Prefix": " ", "House": "1515", "Fraction": " ", "Street": "TINSBURY", "Suffix1": "ST", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15212-4338", "Leadman": "14", "MuniName": "PITTSBURGH", "MWD": "1882404", "MWD2": 1882404, "NewAddress": "1515 TINSBURY ST" }, "geometry": { "type": "Point", "coordinates": [ -79.983369523538641, 40.464087058302894 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 950, "OBJECTID": 953, "Muni": 188, "LocName": "MOST HOLY NAME CATHOLIC CHURCH", "Prefix": " ", "House": "1515", "Fraction": " ", "Street": "TINSBURY", "Suffix1": "ST", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15212-5124", "Leadman": "14", "MuniName": "PITTSBURGH", "MWD": "1882405", "MWD2": 1882405, "NewAddress": "1515 TINSBURY ST" }, "geometry": { "type": "Point", "coordinates": [ -79.983642459038265, 40.464273806661183 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 951, "OBJECTID": 954, "Muni": 188, "LocName": "MOST HOLY NAME CATHOLIC CHURCH", "Prefix": " ", "House": "1515", "Fraction": " ", "Street": "TINSBURY", "Suffix1": "ST", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15212-4338", "Leadman": "14", "MuniName": "PITTSBURGH", "MWD": "1882406", "MWD2": 1882406, "NewAddress": "1515 TINSBURY ST" }, "geometry": { "type": "Point", "coordinates": [ -79.983475298351507, 40.464161112251404 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 952, "OBJECTID": 955, "Muni": 188, "LocName": "BUENA VISTA ST.-METH. CH.", "Prefix": " ", "House": "1400", "Fraction": " ", "Street": "BUENA VISTA", "Suffix1": "ST", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15212-4456", "Leadman": "14", "MuniName": "PITTSBURGH", "MWD": "1882502", "MWD2": 1882502, "NewAddress": "1400 BUENA VISTA ST" }, "geometry": { "type": "Point", "coordinates": [ -80.014259416154417, 40.456625448831844 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 953, "OBJECTID": 956, "Muni": 188, "LocName": "BUENA VISTA ST METH CHURCH", "Prefix": " ", "House": "1400", "Fraction": " ", "Street": "BUENA VISTA", "Suffix1": "ST", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15212-4456", "Leadman": "14", "MuniName": "PITTSBURGH", "MWD": "1882503", "MWD2": 1882503, "NewAddress": "1400 BUENA VISTA ST" }, "geometry": { "type": "Point", "coordinates": [ -80.014175943281401, 40.456591390176747 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 954, "OBJECTID": 957, "Muni": 188, "LocName": "BRANCH 84 NATL. ASSOC. OF LETTER CARRIRERS", "Prefix": " ", "House": "841", "Fraction": " ", "Street": "CALIFORNIA", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15214-3723", "Leadman": "14", "MuniName": "PITTSBURGH", "MWD": "1882504", "MWD2": 1882504, "NewAddress": "841 CALIFORNIA AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.018176824559177, 40.459322068114695 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 955, "OBJECTID": 958, "Muni": 188, "LocName": "CLAYTON ELEMEMENTARY SCHOOL GYM", "Prefix": " ", "House": "1901", "Fraction": " ", "Street": "CLAYTON", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15214-3807", "Leadman": "14", "MuniName": "PITTSBURGH", "MWD": "1882505", "MWD2": 1882505, "NewAddress": "1901 CLAYTON AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.010941674968194, 40.461847395367975 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 956, "OBJECTID": 959, "Muni": 188, "LocName": "CLAYTON SCH GRD LVL CAFETERIA", "Prefix": " ", "House": "1901", "Fraction": " ", "Street": "CLAYTON", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15214-3807", "Leadman": "14", "MuniName": "PITTSBURGH", "MWD": "1882506", "MWD2": 1882506, "NewAddress": "1901 CLAYTON AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.010761649712137, 40.461869082613092 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 957, "OBJECTID": 960, "Muni": 188, "LocName": "PITTSBURGH PROJECT", "Prefix": " ", "House": "2601", "Fraction": " ", "Street": "NORWOOD", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15214-2821", "Leadman": "16", "MuniName": "PITTSBURGH", "MWD": "1882601", "MWD2": 1882601, "NewAddress": "2601 NORWOOD AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.012997930343289, 40.470372679627133 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 958, "OBJECTID": 961, "Muni": 188, "LocName": "PITTSBURGH PROJECT", "Prefix": " ", "House": "2601", "Fraction": " ", "Street": "NORWOOD", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15214-3448", "Leadman": "16", "MuniName": "PITTSBURGH", "MWD": "1882602", "MWD2": 1882602, "NewAddress": "2601 NORWOOD AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.012936886388673, 40.470325218960568 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 959, "OBJECTID": 962, "Muni": 188, "LocName": "MCNAUGHER SCHOOL", "Prefix": " ", "House": "2610", "Fraction": " ", "Street": "MAPLE", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15214-2912", "Leadman": "16", "MuniName": "PITTSBURGH", "MWD": "1882604", "MWD2": 1882604, "NewAddress": "2610 MAPLE AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.007716753258492, 40.471521068118939 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 960, "OBJECTID": 963, "Muni": 188, "LocName": "NORTHVIEW HGTS REC CTR BLD", "Prefix": " ", "House": "525", "Fraction": " ", "Street": "MOUNT PLEASANT", "Suffix1": "RD", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15214-2427", "Leadman": "16", "MuniName": "PITTSBURGH", "MWD": "1882605", "MWD2": 1882605, "NewAddress": "525 MOUNT PLEASANT RD" }, "geometry": { "type": "Point", "coordinates": [ -80.000283626570962, 40.478461151950256 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 961, "OBJECTID": 964, "Muni": 188, "LocName": "NORTHVIEW HGTS REC CTR BLD", "Prefix": " ", "House": "525", "Fraction": " ", "Street": "MOUNT PLEASANT", "Suffix1": "RD", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15214-2427", "Leadman": "16", "MuniName": "PITTSBURGH", "MWD": "1882606", "MWD2": 1882606, "NewAddress": "525 MOUNT PLEASANT RD" }, "geometry": { "type": "Point", "coordinates": [ -80.000510001411698, 40.478217997238559 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 962, "OBJECTID": 965, "Muni": 188, "LocName": "PITTSBURGH PROJECT", "Prefix": " ", "House": "2601", "Fraction": " ", "Street": "NORWOOD", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15214-3448", "Leadman": "16", "MuniName": "PITTSBURGH", "MWD": "1882607", "MWD2": 1882607, "NewAddress": "2601 NORWOOD AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.013045971068038, 40.470297672601838 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 963, "OBJECTID": 966, "Muni": 188, "LocName": "SPRINGHILL SCH-CAFETERIA-HANDICAP ENT", "Prefix": " ", "House": "1351", "Fraction": " ", "Street": "DAMAS", "Suffix1": "ST", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15212-3540", "Leadman": "16", "MuniName": "PITTSBURGH", "MWD": "1882608", "MWD2": 1882608, "NewAddress": "1351 DAMAS ST" }, "geometry": { "type": "Point", "coordinates": [ -79.989612276382047, 40.465159220316835 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 964, "OBJECTID": 967, "Muni": 188, "LocName": "SPRINGHILL SCH-CAFETERIA-HANDICAP ENT", "Prefix": " ", "House": "1351", "Fraction": " ", "Street": "DAMAS", "Suffix1": "ST", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15212-3540", "Leadman": "16", "MuniName": "PITTSBURGH", "MWD": "1882609", "MWD2": 1882609, "NewAddress": "1351 DAMAS ST" }, "geometry": { "type": "Point", "coordinates": [ -79.989318027824282, 40.46507778813865 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 965, "OBJECTID": 968, "Muni": 188, "LocName": "RIVERVIEW UNITED PRESBYTERIAN CHURCH", "Prefix": " ", "House": "3505", "Fraction": " ", "Street": "PERRYSVILLE", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15214-2624", "Leadman": "16", "MuniName": "PITTSBURGH", "MWD": "1882610", "MWD2": 1882610, "NewAddress": "3505 PERRYSVILLE AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.014289922803187, 40.484155608795064 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 966, "OBJECTID": 969, "Muni": 188, "LocName": "RIVERVIEW UNITED PRESBYTERIAN CHURCH", "Prefix": " ", "House": "3505", "Fraction": " ", "Street": "PERRYSVILLE", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15214-2624", "Leadman": "16", "MuniName": "PITTSBURGH", "MWD": "1882611", "MWD2": 1882611, "NewAddress": "3505 PERRYSVILLE AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.014562075498418, 40.484132913979792 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 967, "OBJECTID": 970, "Muni": 188, "LocName": "INCARNATION OF THE LORD NATIVITY", "Prefix": " ", "House": "4071", "Fraction": " ", "Street": "FRANKLIN", "Suffix1": "RD", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15214-1616", "Leadman": "16", "MuniName": "PITTSBURGH", "MWD": "1882612", "MWD2": 1882612, "NewAddress": "4071 FRANKLIN RD" }, "geometry": { "type": "Point", "coordinates": [ -80.020249263131532, 40.49272969082412 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 968, "OBJECTID": 971, "Muni": 188, "LocName": "INCARNATION OF THE LORD NATIVITY", "Prefix": " ", "House": "4071", "Fraction": " ", "Street": "FRANKLIN", "Suffix1": "RD", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15214-1616", "Leadman": "16", "MuniName": "PITTSBURGH", "MWD": "1882613", "MWD2": 1882613, "NewAddress": "4071 FRANKLIN RD" }, "geometry": { "type": "Point", "coordinates": [ -80.02030027171395, 40.492631959624887 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 969, "OBJECTID": 972, "Muni": 188, "LocName": "INCARNATION OF THE LORD NATIVITY", "Prefix": " ", "House": "4071", "Fraction": " ", "Street": "FRANKLIN", "Suffix1": "RD", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15214-1616", "Leadman": "16", "MuniName": "PITTSBURGH", "MWD": "1882615", "MWD2": 1882615, "NewAddress": "4071 FRANKLIN RD" }, "geometry": { "type": "Point", "coordinates": [ -80.020326103731151, 40.492771940660511 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 970, "OBJECTID": 973, "Muni": 188, "LocName": "RIVERVIEW PARK BLDG", "Prefix": " ", "House": " ", "Fraction": " ", "Street": "RIVERVIEW", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15214", "Leadman": "16", "MuniName": "PITTSBURGH", "MWD": "1882616", "MWD2": 1882616, "NewAddress": " RIVERVIEW AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.017622356525919, 40.480770448632391 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 971, "OBJECTID": 974, "Muni": 188, "LocName": "SPRING GARDEN EARLY GHILDHOOD CTR", "Prefix": " ", "House": "1501", "Fraction": " ", "Street": "SPRING GARDEN", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15212-3100", "Leadman": "16", "MuniName": "PITTSBURGH", "MWD": "1882617", "MWD2": 1882617, "NewAddress": "1501 SPRING GARDEN AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.985328957709655, 40.464220666621017 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 972, "OBJECTID": 975, "Muni": 188, "LocName": "LYNN WILLIAMS APTS COM RM", "Prefix": " ", "House": "3710", "Fraction": " ", "Street": "BRIGHTON", "Suffix1": "RD", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15212-1997", "Leadman": "17", "MuniName": "PITTSBURGH", "MWD": "1882701", "MWD2": 1882701, "NewAddress": "3710 BRIGHTON RD" }, "geometry": { "type": "Point", "coordinates": [ -80.035170759970867, 40.483615872977424 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 973, "OBJECTID": 976, "Muni": 188, "LocName": "DESTINY OF FAITH CHURCH", "Prefix": " ", "House": "3737", "Fraction": " ", "Street": "BRIGHTON", "Suffix1": "RD", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15212-1602", "Leadman": "17", "MuniName": "PITTSBURGH", "MWD": "1882702", "MWD2": 1882702, "NewAddress": "3737 BRIGHTON RD" }, "geometry": { "type": "Point", "coordinates": [ -80.036071605077225, 40.484076900039227 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 974, "OBJECTID": 977, "Muni": 188, "LocName": "DESTINY OF FAITH CHURCH", "Prefix": " ", "House": "3737", "Fraction": " ", "Street": "BRIGHTON", "Suffix1": "RD", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15212-1602", "Leadman": "17", "MuniName": "PITTSBURGH", "MWD": "1882703", "MWD2": 1882703, "NewAddress": "3737 BRIGHTON RD" }, "geometry": { "type": "Point", "coordinates": [ -80.036055067865746, 40.484023203760181 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 975, "OBJECTID": 978, "Muni": 188, "LocName": "GREATER ALLEN A.M.E. CHURCH", "Prefix": " ", "House": "3600", "Fraction": " ", "Street": "CALIFORNIA", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15212-1802", "Leadman": "17", "MuniName": "PITTSBURGH", "MWD": "1882704", "MWD2": 1882704, "NewAddress": "3600 CALIFORNIA AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.040850152605771, 40.480339846410629 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 976, "OBJECTID": 979, "Muni": 188, "LocName": "LYNN WILLIAMS APTS COM RM", "Prefix": " ", "House": "3710", "Fraction": " ", "Street": "BRIGHTON", "Suffix1": "RD", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15212-1997", "Leadman": "17", "MuniName": "PITTSBURGH", "MWD": "1882705", "MWD2": 1882705, "NewAddress": "3710 BRIGHTON RD" }, "geometry": { "type": "Point", "coordinates": [ -80.03498482454313, 40.483604890012089 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 977, "OBJECTID": 980, "Muni": 188, "LocName": "MORROW SCHOOL, 1ST FLOOR", "Prefix": " ", "House": "1611", "Fraction": " ", "Street": "DAVIS", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15212-1807", "Leadman": "17", "MuniName": "PITTSBURGH", "MWD": "1882706", "MWD2": 1882706, "NewAddress": "1611 DAVIS AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.039685056615753, 40.480171885293629 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 978, "OBJECTID": 981, "Muni": 188, "LocName": "#34 TRUCK STATION", "Prefix": " ", "House": "3284", "Fraction": " ", "Street": "CENTRAL", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15212-2068", "Leadman": "17", "MuniName": "PITTSBURGH", "MWD": "1882708", "MWD2": 1882708, "NewAddress": "3284 CENTRAL AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.029560417704531, 40.476625786021337 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 979, "OBJECTID": 982, "Muni": 188, "LocName": "CARNEGIE LIBRARY WOODS RUN BRANCH", "Prefix": " ", "House": "1201", "Fraction": " ", "Street": "WOODS RUN", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15212-206", "Leadman": "17", "MuniName": "PITTSBURGH", "MWD": "1882709", "MWD2": 1882709, "NewAddress": "1201 WOODS RUN AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.03009169991013, 40.476207587897896 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 980, "OBJECTID": 983, "Muni": 188, "LocName": "HOLY GHOST CHURCH SOCIAL HALL", "Prefix": " ", "House": "1416", "Fraction": " ", "Street": "SUPERIOR", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15212-2768", "Leadman": "17", "MuniName": "PITTSBURGH", "MWD": "1882710", "MWD2": 1882710, "NewAddress": "1416 SUPERIOR AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.032187059169431, 40.467197839154082 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 981, "OBJECTID": 984, "Muni": 188, "LocName": "PITTSBURGH PARAMEDIC STATION 10", "Prefix": " ", "House": "2800", "Fraction": " ", "Street": "SHADELAND", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15212-2554", "Leadman": "17", "MuniName": "PITTSBURGH", "MWD": "1882711", "MWD2": 1882711, "NewAddress": "2800 SHADELAND AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.030174844988494, 40.46993102784522 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 982, "OBJECTID": 985, "Muni": 188, "LocName": "RISEN LORD PARISH YOUTH REC CT", "Prefix": " ", "House": "3250", "Fraction": " ", "Street": "CALIFORNIA", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15212-2362", "Leadman": "17", "MuniName": "PITTSBURGH", "MWD": "1882712", "MWD2": 1882712, "NewAddress": "3250 CALIFORNIA AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.038924923802512, 40.474837019371101 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 983, "OBJECTID": 986, "Muni": 188, "LocName": "HOLY GHOST CHURCH SOCIAL HALL", "Prefix": " ", "House": "1416", "Fraction": " ", "Street": "SUPERIOR", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15212-2768", "Leadman": "17", "MuniName": "PITTSBURGH", "MWD": "1882713", "MWD2": 1882713, "NewAddress": "1416 SUPERIOR AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.03195514099211, 40.46749101736706 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 984, "OBJECTID": 987, "Muni": 188, "LocName": "ST ANDREW LUTHERAN CHURCH", "Prefix": " ", "House": "218", "Fraction": " ", "Street": "ASTER", "Suffix1": "ST", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15235-2059", "Leadman": "26", "MuniName": "PITTSBURGH", "MWD": "1882801", "MWD2": 1882801, "NewAddress": "218 ASTER ST" }, "geometry": { "type": "Point", "coordinates": [ -80.075220480084809, 40.414944959661632 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 985, "OBJECTID": 988, "Muni": 188, "LocName": "NOBLE TOWERS", "Prefix": " ", "House": "2440", "Fraction": " ", "Street": "BALDWICK", "Suffix1": "RD", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15205-4102", "Leadman": "13", "MuniName": "PITTSBURGH", "MWD": "1882802", "MWD2": 1882802, "NewAddress": "2440 BALDWICK RD" }, "geometry": { "type": "Point", "coordinates": [ -80.059993211126155, 40.427345401038465 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 986, "OBJECTID": 989, "Muni": 188, "LocName": "1ST UNITED PRESBY CH OF CRAFTON HT", "Prefix": " ", "House": "50", "Fraction": " ", "Street": "STRATMORE", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15205-3640", "Leadman": "13", "MuniName": "PITTSBURGH", "MWD": "1882805", "MWD2": 1882805, "NewAddress": "50 STRATMORE AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.055500498003852, 40.438679539759129 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 987, "OBJECTID": 990, "Muni": 188, "LocName": "ST MARTIN SCHOOL", "Prefix": " ", "House": "1000", "Fraction": " ", "Street": "LOGUE", "Suffix1": "ST", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15220-4708", "Leadman": "13", "MuniName": "PITTSBURGH", "MWD": "1882806", "MWD2": 1882806, "NewAddress": "1000 LOGUE ST" }, "geometry": { "type": "Point", "coordinates": [ -80.050817071113258, 40.444562842283354 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 988, "OBJECTID": 991, "Muni": 188, "LocName": "ST. MARTIN SCHOOL", "Prefix": " ", "House": "1000", "Fraction": " ", "Street": "LOGUE", "Suffix1": "ST", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15220-4708", "Leadman": "13", "MuniName": "PITTSBURGH", "MWD": "1882807", "MWD2": 1882807, "NewAddress": "1000 LOGUE ST" }, "geometry": { "type": "Point", "coordinates": [ -80.050615726632273, 40.444525165567107 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 989, "OBJECTID": 992, "Muni": 188, "LocName": "ACENSION CHURCH SOCIAL HALL", "Prefix": " ", "House": "114", "Fraction": " ", "Street": "BERRY", "Suffix1": "ST", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15205-2210", "Leadman": "18", "MuniName": "PITTSBURGH", "MWD": "1882808", "MWD2": 1882808, "NewAddress": "114 BERRY ST" }, "geometry": { "type": "Point", "coordinates": [ -80.068341208221312, 40.448953096421604 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 990, "OBJECTID": 993, "Muni": 188, "LocName": "CHARTIERS SCHOOL", "Prefix": " ", "House": "3799", "Fraction": " ", "Street": "CHARTIERS", "Suffix1": "AVE", "Suffix2": " ", "City": "PITTSBURGH", "Zip": "15204-1136", "Leadman": "18", "MuniName": "PITTSBURGH", "MWD": "1882809", "MWD2": 1882809, "NewAddress": "3799 CHARTIERS AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.075909794446673, 40.457740171949951 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 991, "OBJECTID": 994, "Muni": 222, "LocName": "LEBANON PRESBYTERIAN CHURCH SIDE ENT", "Prefix": " ", "House": "280", "Fraction": " ", "Street": "OLD ELIZABETH", "Suffix1": "RD", "Suffix2": " ", "City": "WEST MIFFLIN", "Zip": "15122-3006", "Leadman": "24", "MuniName": "WEST MIFFLIN", "MWD": "2220016", "MWD2": 2220016, "NewAddress": "280 OLD ELIZABETH RD" }, "geometry": { "type": "Point", "coordinates": [ -79.931065767197666, 40.347580158755839 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 992, "OBJECTID": 995, "Muni": 222, "LocName": "SKY VIEW W. MIFFLIN VFC #4", "Prefix": " ", "House": "660", "Fraction": " ", "Street": "NOBLE", "Suffix1": "DR", "Suffix2": " ", "City": "WEST MIFFLIN", "Zip": "15122-1058", "Leadman": "24", "MuniName": "WEST MIFFLIN", "MWD": "2220017", "MWD2": 2220017, "NewAddress": "660 NOBLE DR" }, "geometry": { "type": "Point", "coordinates": [ -79.929619336496401, 40.360794657170835 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 993, "OBJECTID": 996, "Muni": 222, "LocName": "NEW EMERSON ELEMENTARY SCH GYM", "Prefix": " ", "House": "1922", "Fraction": " ", "Street": "PENNSYLVANIA", "Suffix1": "AVE", "Suffix2": " ", "City": "WEST MIFFLIN", "Zip": "15122-3954", "Leadman": "24", "MuniName": "WEST MIFFLIN", "MWD": "2220018", "MWD2": 2220018, "NewAddress": "1922 PENNSYLVANIA AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.865637379403125, 40.362744653233698 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 994, "OBJECTID": 997, "Muni": 222, "LocName": "CLARA E BARTON SCHOOL", "Prefix": " ", "House": "764", "Fraction": " ", "Street": "BEVERLY", "Suffix1": "DR", "Suffix2": " ", "City": "WEST MIFFLIN", "Zip": "15122-2664", "Leadman": "24", "MuniName": "WEST MIFFLIN", "MWD": "2220019", "MWD2": 2220019, "NewAddress": "764 BEVERLY DR" }, "geometry": { "type": "Point", "coordinates": [ -79.921252337396737, 40.342484137651667 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 995, "OBJECTID": 998, "Muni": 222, "LocName": "W MIFFLIN HI SCH AUD LOBBY ENT", "Prefix": " ", "House": "91", "Fraction": " ", "Street": "COMMONWEALTH", "Suffix1": "AVE", "Suffix2": " ", "City": "WEST MIFFLIN", "Zip": "15122-2310", "Leadman": "24", "MuniName": "WEST MIFFLIN", "MWD": "2220020", "MWD2": 2220020, "NewAddress": "91 COMMONWEALTH AVE" }, "geometry": { "type": "Point", "coordinates": [ -79.873554404672987, 40.381936962132819 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 996, "OBJECTID": 999, "Muni": 222, "LocName": "CLARA E BARTON SCHOOL", "Prefix": " ", "House": "764", "Fraction": " ", "Street": "BEVERLY", "Suffix1": "DR", "Suffix2": " ", "City": "WEST MIFFLIN", "Zip": "15122-2664", "Leadman": "24", "MuniName": "WEST MIFFLIN", "MWD": "2220021", "MWD2": 2220021, "NewAddress": "764 BEVERLY DR" }, "geometry": { "type": "Point", "coordinates": [ -79.921327007806852, 40.342339681058412 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 997, "OBJECTID": 1000, "Muni": 223, "LocName": "#1 FIRE HOUSE", "Prefix": " ", "House": "338", "Fraction": " ", "Street": "RIDGEWOOD", "Suffix1": "AVE", "Suffix2": " ", "City": "WEST VIEW", "Zip": "15229", "Leadman": "27", "MuniName": "WEST VIEW", "MWD": "2230001", "MWD2": 2230001, "NewAddress": "338 RIDGEWOOD AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.027922414896238, 40.516366649830871 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 998, "OBJECTID": 1001, "Muni": 223, "LocName": "ST LUKES EV CH REAR PARKING LOT ENT", "Prefix": " ", "House": "305", "Fraction": " ", "Street": "CENTER", "Suffix1": "AVE", "Suffix2": " ", "City": "WEST VIEW", "Zip": "15229-1917", "Leadman": "27", "MuniName": "WEST VIEW", "MWD": "2230002", "MWD2": 2230002, "NewAddress": "305 CENTER AVE" }, "geometry": { "type": "Point", "coordinates": [ -80.023383968754118, 40.515266992986732 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 999, "OBJECTID": 1002, "Muni": 223, "LocName": "#3 ENGINE HOUSE", "Prefix": " ", "House": "481", "Fraction": " ", "Street": "PERRY", "Suffix1": "HWY", "Suffix2": " ", "City": "WEST VIEW", "Zip": "15229-1818", "Leadman": "27", "MuniName": "WEST VIEW", "MWD": "2230004", "MWD2": 2230004, "NewAddress": "481 PERRY HWY" }, "geometry": { "type": "Point", "coordinates": [ -80.033727990890412, 40.521027141874306 ] } },
{ "type": "Feature", "properties": { "OBJECTID_1": 1000, "OBJECTID": 1003, "Muni": 223, "LocName": "WEST VIEW TOWERS", "Prefix": " ", "House": "808", "Fraction": " ", "Street": "WEST VIEW PARK", "Suffix1": "DR", "Suffix2": " ", "City": "WEST VIEW", "Zip": "15229-1773", "Leadman": "27", "MuniName": "WEST VIEW", "MWD": "2230005", "MWD2": 2230005, "NewAddress": "808 WEST VIEW PARK DR" }, "geometry": { "type": "Point", "coordinates": [ -80.033538315173701, 40.517169150718708 ] } }
]
}
Display the source blob
Display the rendered blob
Raw
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment