diff --git a/.travis.yml b/.travis.yml index b81291a..d15f8ea 100644 --- a/.travis.yml +++ b/.travis.yml @@ -28,7 +28,7 @@ matrix: sources: [ 'ubuntu-toolchain-r-test', ] packages: [ 'libstdc++-5-dev', 'libxi-dev','libglu1-mesa-dev','x11proto-randr-dev','x11proto-xext-dev','libxrandr-dev','x11proto-xf86vidmode-dev','libxxf86vm-dev','libxcursor-dev','libxinerama-dev'] - os: osx - osx_image: xcode7.3 + osx_image: xcode12 env: BUILDTYPE=Release cache: apt diff --git a/Makefile b/Makefile index be11105..9992d0f 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ CXXFLAGS += -I include -std=c++14 -Wall -Wextra -D_GLIBCXX_USE_CXX11_ABI=0 -RELEASE_FLAGS ?= -O3 -DNDEBUG +RELEASE_FLAGS ?= -O3 -DNDEBUG -g -ggdb3 DEBUG_FLAGS ?= -g -O0 -DDEBUG MASON ?= .mason/mason @@ -10,6 +10,7 @@ GEOJSON = geojson 0.4.3 GLFW = glfw 3.1.2 GTEST = gtest 1.8.0 RAPIDJSON = rapidjson 1.1.0 +BENCHMARK = benchmark 1.4.1 VARIANT_FLAGS = `$(MASON) cflags $(VARIANT)` GEOMETRY_FLAGS = `$(MASON) cflags $(GEOMETRY)` @@ -18,6 +19,7 @@ GLFW_FLAGS = `$(MASON) cflags $(GLFW)` `$(MASON) static_libs $(GLFW)` `$(MASON) GTEST_FLAGS = `$(MASON) cflags $(GTEST)` `$(MASON) static_libs $(GTEST)` `$(MASON) ldflags $(GTEST)` RAPIDJSON_FLAGS = `$(MASON) cflags $(RAPIDJSON)` BASE_FLAGS = $(VARIANT_FLAGS) $(GEOMETRY_FLAGS) $(GEOJSON_FLAGS) +BENCHMARK_FLAGS = `$(MASON) cflags $(BENCHMARK)` `$(MASON) static_libs $(BENCHMARK)` `$(MASON) ldflags $(BENCHMARK)` DEPS = mason_packages/headers/geometry include/mapbox/geojsonvt/*.hpp include/mapbox/geojsonvt.hpp bench/util.hpp Makefile @@ -30,12 +32,13 @@ mason_packages/headers/geometry: Makefile $(MASON) install $(GLFW) $(MASON) install $(GTEST) $(MASON) install $(RAPIDJSON) + $(MASON) install $(BENCHMARK) build: mkdir -p build -build/bench: build bench/run.cpp $(DEPS) - $(CXX) $(CFLAGS) $(CXXFLAGS) $(RELEASE_FLAGS) bench/run.cpp -o build/bench $(BASE_FLAGS) $(RAPIDJSON_FLAGS) +build/bench: build bench/main.cpp bench/benchmark.cpp $(DEPS) + $(CXX) $(CFLAGS) $(CXXFLAGS) $(RELEASE_FLAGS) bench/main.cpp bench/benchmark.cpp -o build/bench $(BASE_FLAGS) $(RAPIDJSON_FLAGS) $(BENCHMARK_FLAGS) build/debug: build debug/debug.cpp $(DEPS) $(CXX) $(CFLAGS) $(CXXFLAGS) $(DEBUG_FLAGS) debug/debug.cpp -o build/debug $(BASE_FLAGS) $(GLFW_FLAGS) $(RAPIDJSON_FLAGS) diff --git a/bench/benchmark.cpp b/bench/benchmark.cpp new file mode 100644 index 0000000..46aa90a --- /dev/null +++ b/bench/benchmark.cpp @@ -0,0 +1,110 @@ +#include +#include +#include +#include + +#include "util.hpp" + +static void ParseGeoJSON(::benchmark::State& state) { + const std::string json = loadFile("data/countries.geojson"); + for (auto _ : state) { + mapbox::geojson::parse(json).get(); + } +} +BENCHMARK(ParseGeoJSON)->Unit(benchmark::kMicrosecond); + +static void GenerateTileIndex(::benchmark::State& state) { + const std::string json = loadFile("data/countries.geojson"); + const auto features = mapbox::geojson::parse(json).get(); + mapbox::geojsonvt::Options options; + options.indexMaxZoom = 7; + options.indexMaxPoints = 200; + + for (auto _ : state) { + mapbox::geojsonvt::GeoJSONVT index{ features, options }; + (void)index; + } +} +BENCHMARK(GenerateTileIndex)->Unit(benchmark::kMicrosecond); + +static void TraverseTilePyramid(::benchmark::State& state) { + const std::string json = loadFile("data/countries.geojson"); + const auto features = mapbox::geojson::parse(json).get(); + mapbox::geojsonvt::Options options; + options.indexMaxZoom = 7; + options.indexMaxPoints = 200; + mapbox::geojsonvt::GeoJSONVT index{ features, options }; + + for (auto _ : state) { + const unsigned max_z = 11; + for (unsigned z = 0; z < max_z; ++z) { + unsigned num_tiles = std::pow(2, z); + for (unsigned x = 0; x < num_tiles; ++x) { + for (unsigned y = 0; y < num_tiles; ++y) { + index.getTile(z, x, y); + } + } + } + } +} +BENCHMARK(TraverseTilePyramid)->Unit(benchmark::kMillisecond)->Iterations(3); + +static void LargeGeoJSONParse(::benchmark::State& state) { + const std::string json = loadFile("test/fixtures/points.geojson"); + for (auto _ : state) { + mapbox::geojson::parse(json).get(); + } +} +BENCHMARK(LargeGeoJSONParse)->Unit(benchmark::kMicrosecond); + +static void LargeGeoJSONTileIndex(::benchmark::State& state) { + const std::string json = loadFile("test/fixtures/points.geojson"); + const auto features = mapbox::geojson::parse(json).get(); + mapbox::geojsonvt::Options options; + for (auto _ : state) { + mapbox::geojsonvt::GeoJSONVT index{ features, options }; + } +} +BENCHMARK(LargeGeoJSONTileIndex)->Unit(benchmark::kMicrosecond); + +static void LargeGeoJSONGetTile(::benchmark::State& state) { + const std::string json = loadFile("test/fixtures/points.geojson"); + const auto features = mapbox::geojson::parse(json).get(); + mapbox::geojsonvt::Options options; + mapbox::geojsonvt::GeoJSONVT index{ features, options }; + for (auto _ : state) { + index.getTile(12, 1171, 1566); + } +} +BENCHMARK(LargeGeoJSONGetTile)->Unit(benchmark::kMillisecond)->Iterations(1)->Repetitions(9)->ReportAggregatesOnly(true); + +static void LargeGeoJSONToTile(::benchmark::State& state) { + const std::string json = loadFile("data/countries.geojson"); + const auto features = mapbox::geojson::parse(json).get(); + for (auto _ : state) { + mapbox::geojsonvt::geoJSONToTile(features, 12, 1171, 1566, {}, false, true); + } +} +BENCHMARK(LargeGeoJSONToTile)->Unit(benchmark::kMicrosecond); + +static void SingleTileIndex(::benchmark::State& state) { + const std::string json = loadFile("test/fixtures/single-tile.json"); + const auto features = mapbox::geojson::parse(json); + mapbox::geojsonvt::Options options; + options.indexMaxZoom = 7; + options.indexMaxPoints = 10000; + mapbox::geojsonvt::GeoJSONVT index{ features, options }; + for (auto _ : state) { + index.getTile(12, 1171, 1566); + } +} +BENCHMARK(SingleTileIndex)->Unit(benchmark::kMicrosecond); + +static void SingleTileGeoJSONToTile(::benchmark::State& state) { + const std::string json = loadFile("test/fixtures/single-tile.json"); + const auto features = mapbox::geojson::parse(json); + for (auto _ : state) { + mapbox::geojsonvt::geoJSONToTile(features, 12, 1171, 1566, {}, false, true); + } +} +BENCHMARK(SingleTileGeoJSONToTile)->Unit(benchmark::kMicrosecond); diff --git a/bench/main.cpp b/bench/main.cpp new file mode 100644 index 0000000..0dfe087 --- /dev/null +++ b/bench/main.cpp @@ -0,0 +1,7 @@ +#include + +int main(int argc, char* argv[]) { + ::benchmark::Initialize(&argc, argv); + ::benchmark::RunSpecifiedBenchmarks(); + return 0; +} diff --git a/bench/run.cpp b/bench/run.cpp deleted file mode 100644 index dcb1129..0000000 --- a/bench/run.cpp +++ /dev/null @@ -1,67 +0,0 @@ -#include -#include -#include - -#include "util.hpp" - -#include -#include - -int main() { - Timer timer; - - const std::string json = loadFile("data/countries.geojson"); - timer("read file"); - - const auto features = mapbox::geojson::parse(json).get(); - timer("parse into geometry"); - - mapbox::geojsonvt::Options options; - options.indexMaxZoom = 7; - options.indexMaxPoints = 200; - - mapbox::geojsonvt::GeoJSONVT index{ features, options }; - - for (uint32_t i = 0; i < 100; i++) { - mapbox::geojsonvt::GeoJSONVT index{ features, options }; - } - timer("generate tile index 100 times"); - - printf("tiles generated: %i {\n", static_cast(index.total)); - for (const auto& pair : index.stats) { - printf(" z%i: %i\n", pair.first, pair.second); - } - printf("}\n"); - - const unsigned max_z = 11; - std::size_t count = 0; - for (unsigned z = 0; z < max_z; ++z) { - unsigned num_tiles = std::pow(2, z); - for (unsigned x = 0; x < num_tiles; ++x) { - for (unsigned y = 0; y < num_tiles; ++y) { - auto const& tile = index.getTile(z, x, y); - count += tile.features.size(); - } - } - } - timer("getTile, found " + std::to_string(count) + " features"); - - const std::string singleTileJson = loadFile("test/fixtures/single-tile.json"); - timer("read single tile file"); - - const auto singleTileFeatures = mapbox::geojson::parse(json); - timer("parse into geometry"); - - options.indexMaxPoints = 10000; - - for (uint32_t i = 0; i < 100; i++) { - mapbox::geojsonvt::GeoJSONVT index{ singleTileFeatures, options }; - index.getTile(12, 1171, 1566); - } - timer("GeoJSON VT: generate tile index and getTile(12/1171/1566) x 100"); - - for (uint32_t i = 0; i < 100; i++) { - mapbox::geojsonvt::geoJSONToTile(singleTileFeatures, 12, 1171, 1566, {}, false, true); - } - timer("GeoJSON-to-Tile: generate tile(12/1171/1566) x 100"); -} diff --git a/include/mapbox/geojsonvt/clip.hpp b/include/mapbox/geojsonvt/clip.hpp index 2ffec9a..acb10bd 100644 --- a/include/mapbox/geojsonvt/clip.hpp +++ b/include/mapbox/geojsonvt/clip.hpp @@ -29,7 +29,7 @@ class clipper { for (const auto& p : points) { const double ak = get(p); if (ak >= k1 && ak <= k2) - part.push_back(p); + part.emplace_back(p); } return part; } @@ -57,9 +57,9 @@ class clipper { vt_geometry operator()(const vt_polygon& polygon) const { vt_polygon result; for (const auto& ring : polygon) { - const auto new_ring = clipRing(ring); + auto new_ring = clipRing(ring); if (!new_ring.empty()) - result.push_back(new_ring); + result.emplace_back(std::move(new_ring)); } return result; } @@ -69,12 +69,12 @@ class clipper { for (const auto& polygon : polygons) { vt_polygon p; for (const auto& ring : polygon) { - const auto new_ring = clipRing(ring); + auto new_ring = clipRing(ring); if (!new_ring.empty()) - p.push_back(new_ring); + p.emplace_back(std::move(new_ring)); } if (!p.empty()) - result.push_back(p); + result.emplace_back(std::move(p)); } return result; } @@ -83,7 +83,7 @@ class clipper { vt_geometry_collection result; for (const auto& geometry : geometries) { vt_geometry::visit(geometry, - [&](const auto& g) { result.push_back(this->operator()(g)); }); + [&](const auto& g) { result.emplace_back(this->operator()(g)); }); } return result; } @@ -121,64 +121,64 @@ class clipper { if (ak < k1) { if (bk > k2) { // ---|-----|--> t = calc_progress(a, b, k1); - slice.push_back(intersect(a, b, k1, t)); + slice.emplace_back(intersect(a, b, k1, t)); if (lineMetrics) slice.segStart = lineLen + segLen * t; t = calc_progress(a, b, k2); - slice.push_back(intersect(a, b, k2, t)); + slice.emplace_back(intersect(a, b, k2, t)); if (lineMetrics) slice.segEnd = lineLen + segLen * t; - slices.push_back(std::move(slice)); + slices.emplace_back(std::move(slice)); slice = newSlice(line); } else if (bk > k1) { // ---|--> | t = calc_progress(a, b, k1); - slice.push_back(intersect(a, b, k1, t)); + slice.emplace_back(intersect(a, b, k1, t)); if (lineMetrics) slice.segStart = lineLen + segLen * t; if (i == len - 2) - slice.push_back(b); // last point + slice.emplace_back(b); // last point } } else if (ak > k2) { if (bk < k1) { // <--|-----|--- t = calc_progress(a, b, k2); - slice.push_back(intersect(a, b, k2, t)); + slice.emplace_back(intersect(a, b, k2, t)); if (lineMetrics) slice.segStart = lineLen + segLen * t; t = calc_progress(a, b, k1); - slice.push_back(intersect(a, b, k1, t)); + slice.emplace_back(intersect(a, b, k1, t)); if (lineMetrics) slice.segEnd = lineLen + segLen * t; - slices.push_back(std::move(slice)); + slices.emplace_back(std::move(slice)); slice = newSlice(line); } else if (bk < k2) { // | <--|--- t = calc_progress(a, b, k2); - slice.push_back(intersect(a, b, k2, t)); + slice.emplace_back(intersect(a, b, k2, t)); if (lineMetrics) slice.segStart = lineLen + segLen * t; if (i == len - 2) - slice.push_back(b); // last point + slice.emplace_back(b); // last point } } else { - slice.push_back(a); + slice.emplace_back(a); if (bk < k1) { // <--|--- | t = calc_progress(a, b, k1); - slice.push_back(intersect(a, b, k1, t)); + slice.emplace_back(intersect(a, b, k1, t)); if (lineMetrics) slice.segEnd = lineLen + segLen * t; - slices.push_back(std::move(slice)); + slices.emplace_back(std::move(slice)); slice = newSlice(line); } else if (bk > k2) { // | ---|--> t = calc_progress(a, b, k2); - slice.push_back(intersect(a, b, k2, t)); + slice.emplace_back(intersect(a, b, k2, t)); if (lineMetrics) slice.segEnd = lineLen + segLen * t; - slices.push_back(std::move(slice)); + slices.emplace_back(std::move(slice)); slice = newSlice(line); } else if (i == len - 2) { // | --> | - slice.push_back(b); + slice.emplace_back(b); } } @@ -187,7 +187,7 @@ class clipper { if (!slice.empty()) { // add the final slice slice.segEnd = lineLen; - slices.push_back(std::move(slice)); + slices.emplace_back(std::move(slice)); } } @@ -208,30 +208,30 @@ class clipper { if (ak < k1) { if (bk > k1) { // ---|--> | - slice.push_back(intersect(a, b, k1, calc_progress(a, b, k1))); + slice.emplace_back(intersect(a, b, k1, calc_progress(a, b, k1))); if (bk > k2) // ---|-----|--> - slice.push_back(intersect(a, b, k2, calc_progress(a, b, k2))); + slice.emplace_back(intersect(a, b, k2, calc_progress(a, b, k2))); else if (i == len - 2) - slice.push_back(b); // last point + slice.emplace_back(b); // last point } } else if (ak > k2) { if (bk < k2) { // | <--|--- - slice.push_back(intersect(a, b, k2, calc_progress(a, b, k2))); + slice.emplace_back(intersect(a, b, k2, calc_progress(a, b, k2))); if (bk < k1) // <--|-----|--- - slice.push_back(intersect(a, b, k1, calc_progress(a, b, k1))); + slice.emplace_back(intersect(a, b, k1, calc_progress(a, b, k1))); else if (i == len - 2) - slice.push_back(b); // last point + slice.emplace_back(b); // last point } } else { // | --> | - slice.push_back(a); + slice.emplace_back(a); if (bk < k1) // <--|--- | - slice.push_back(intersect(a, b, k1, calc_progress(a, b, k1))); + slice.emplace_back(intersect(a, b, k1, calc_progress(a, b, k1))); else if (bk > k2) // | ---|--> - slice.push_back(intersect(a, b, k2, calc_progress(a, b, k2))); + slice.emplace_back(intersect(a, b, k2, calc_progress(a, b, k2))); } } @@ -240,7 +240,7 @@ class clipper { const auto& first = slice.front(); const auto& last = slice.back(); if (first != last) { - slice.push_back(first); + slice.emplace_back(first); } } @@ -270,9 +270,11 @@ inline vt_features clip(const vt_features& features, return {}; vt_features clipped; + clipped.reserve(features.size()); for (const auto& feature : features) { const auto& geom = feature.geometry; + assert(feature.properties); const auto& props = feature.properties; const auto& id = feature.id; @@ -280,7 +282,7 @@ inline vt_features clip(const vt_features& features, const double max = get(feature.bbox.max); if (min >= k1 && max < k2) { // trivial accept - clipped.push_back(feature); + clipped.emplace_back(feature); } else if (max < k1 || min >= k2) { // trivial reject continue; diff --git a/include/mapbox/geojsonvt/tile.hpp b/include/mapbox/geojsonvt/tile.hpp index 2c75c54..1586b71 100644 --- a/include/mapbox/geojsonvt/tile.hpp +++ b/include/mapbox/geojsonvt/tile.hpp @@ -48,8 +48,10 @@ class InternalTile { sq_tolerance(tolerance_ * tolerance_), lineMetrics(lineMetrics_) { + tile.features.reserve(source.size()); for (const auto& feature : source) { const auto& geom = feature.geometry; + assert(feature.properties); const auto& props = feature.properties; const auto& id = feature.id; @@ -57,7 +59,7 @@ class InternalTile { vt_geometry::visit(geom, [&](const auto& g) { // `this->` is a workaround for https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61636 - this->addFeature(g, props, id); + this->addFeature(g, *props, id); }); bbox.min.x = std::min(feature.bbox.min.x, bbox.min.x); @@ -69,12 +71,12 @@ class InternalTile { private: void addFeature(const vt_empty& empty, const property_map& props, const identifier& id) { - tile.features.push_back({ transform(empty), props, id }); + tile.features.emplace_back(transform(empty), props, id); } void addFeature(const vt_point& point, const property_map& props, const identifier& id) { - tile.features.push_back({ transform(point), props, id }); + tile.features.emplace_back(transform(point), props, id); } void addFeature(const vt_line_string& line, @@ -84,11 +86,11 @@ class InternalTile { if (!new_line.empty()) { if (lineMetrics) { property_map newProps = props; - newProps["mapbox_clip_start"] = line.segStart / line.dist; - newProps["mapbox_clip_end"] = line.segEnd / line.dist; - tile.features.push_back({ std::move(new_line), newProps, id }); + newProps.emplace(std::make_pair("mapbox_clip_start", line.segStart / line.dist)); + newProps.emplace(std::make_pair("mapbox_clip_end", line.segEnd / line.dist)); + tile.features.emplace_back(std::move(new_line), std::move(newProps), id); } else - tile.features.push_back({ std::move(new_line), props, id }); + tile.features.emplace_back(std::move(new_line), props, id); } } @@ -97,7 +99,7 @@ class InternalTile { const identifier& id) { const auto new_polygon = transform(polygon); if (!new_polygon.empty()) - tile.features.push_back({ std::move(new_polygon), props, id }); + tile.features.emplace_back(std::move(new_polygon), props, id); } void addFeature(const vt_geometry_collection& collection, @@ -119,10 +121,10 @@ class InternalTile { case 0: break; case 1: - tile.features.push_back({ std::move(new_multi[0]), props, id }); + tile.features.emplace_back(std::move(new_multi[0]), props, id); break; default: - tile.features.push_back({ std::move(new_multi), props, id }); + tile.features.emplace_back(std::move(new_multi), props, id); break; } } @@ -141,7 +143,7 @@ class InternalTile { mapbox::geometry::multi_point result; result.reserve(points.size()); for (const auto& p : points) { - result.push_back(transform(p)); + result.emplace_back(transform(p)); } return result; } @@ -149,9 +151,10 @@ class InternalTile { mapbox::geometry::line_string transform(const vt_line_string& line) { mapbox::geometry::line_string result; if (line.dist > tolerance) { + result.reserve(line.size()); for (const auto& p : line) { if (p.z > sq_tolerance) - result.push_back(transform(p)); + result.emplace_back(transform(p)); } } return result; @@ -160,9 +163,10 @@ class InternalTile { mapbox::geometry::linear_ring transform(const vt_linear_ring& ring) { mapbox::geometry::linear_ring result; if (ring.area > sq_tolerance) { + result.reserve(ring.size()); for (const auto& p : ring) { if (p.z > sq_tolerance) - result.push_back(transform(p)); + result.emplace_back(transform(p)); } } return result; @@ -170,28 +174,31 @@ class InternalTile { mapbox::geometry::multi_line_string transform(const vt_multi_line_string& lines) { mapbox::geometry::multi_line_string result; + result.reserve(lines.size()); for (const auto& line : lines) { if (line.dist > tolerance) - result.push_back(transform(line)); + result.emplace_back(transform(line)); } return result; } mapbox::geometry::polygon transform(const vt_polygon& rings) { mapbox::geometry::polygon result; + result.reserve(rings.size()); for (const auto& ring : rings) { if (ring.area > sq_tolerance) - result.push_back(transform(ring)); + result.emplace_back(transform(ring)); } return result; } mapbox::geometry::multi_polygon transform(const vt_multi_polygon& polygons) { mapbox::geometry::multi_polygon result; + result.reserve(polygons.size()); for (const auto& polygon : polygons) { const auto p = transform(polygon); if (!p.empty()) - result.push_back(std::move(p)); + result.emplace_back(std::move(p)); } return result; } diff --git a/include/mapbox/geojsonvt/types.hpp b/include/mapbox/geojsonvt/types.hpp index e13c99e..1ba9eba 100644 --- a/include/mapbox/geojsonvt/types.hpp +++ b/include/mapbox/geojsonvt/types.hpp @@ -8,6 +8,7 @@ #include #include #include +#include namespace mapbox { namespace geojsonvt { @@ -114,6 +115,7 @@ struct vt_geometry_collection : std::vector {}; using null_value = mapbox::feature::null_value_t; using property_map = mapbox::feature::property_map; using identifier = mapbox::feature::identifier; +using value = mapbox::feature::value; template struct vt_geometry_type; @@ -157,16 +159,26 @@ struct vt_geometry_type> { struct vt_feature { vt_geometry geometry; - property_map properties; + std::shared_ptr properties; identifier id; mapbox::geometry::box bbox = { { 2, 1 }, { -1, 0 } }; uint32_t num_points = 0; + vt_feature(const vt_geometry& geom, std::shared_ptr props, const identifier& id_) + : geometry(geom), properties(std::move(props)), id(id_) { + assert(properties); + processGeometry(); + } + vt_feature(const vt_geometry& geom, const property_map& props, const identifier& id_) - : geometry(geom), properties(props), id(id_) { + : geometry(geom), properties(std::make_shared(props)), id(id_) { + processGeometry(); + } - mapbox::geometry::for_each_point(geom, [&](const vt_point& p) { +private: + void processGeometry() { + mapbox::geometry::for_each_point(geometry, [&](const vt_point& p) { bbox.min.x = std::min(p.x, bbox.min.x); bbox.min.y = std::min(p.y, bbox.min.y); bbox.max.x = std::max(p.x, bbox.max.x); diff --git a/test/fixtures/points.geojson b/test/fixtures/points.geojson new file mode 100644 index 0000000..a34f53b --- /dev/null +++ b/test/fixtures/points.geojson @@ -0,0 +1,136346 @@ +{ + "crs": { + "properties": { + "name": "urn:ogc:def:crs:OGC:1.3:CRS84" + }, + "type": "name" + }, + "features": [ + { + "geometry": { + "coordinates": [ + -77.00896639534831, + 38.87031006108791, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

Not In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H04299" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.91636206355402, + 38.89569665945388, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

Not In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H04451" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0238724795834, + 38.908392080284656, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

Not In Service


Last Inspection Date: 11/19/07

Report Problem", + "NAME": "H04488" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97787257022829, + 38.8489449722363, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

Not In Service


Last Inspection Date: 03/12/08

Report Problem", + "NAME": "H04834" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03147970117229, + 38.96902788924794, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

Not In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H04859" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9913552472916, + 38.83709694933415, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

Not In Service


Last Inspection Date: 07/23/07

Report Problem", + "NAME": "H05056" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00040502778565, + 38.85974851759818, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

Not In Service


Last Inspection Date: 07/10/07

Report Problem", + "NAME": "H05098" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99323795575543, + 38.859058565652674, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

Not In Service


Last Inspection Date: 06/04/07

Report Problem", + "NAME": "H05136" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.959878452791, + 38.88617396045632, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

Not In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H05165" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98698481952468, + 38.860417884264336, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

Not In Service


Last Inspection Date: 03/11/08

Report Problem", + "NAME": "H05227" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98993851902051, + 38.839618544962086, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

Not In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H05262" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98987381620425, + 38.84045690178814, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

Not In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H05263" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.91231659856827, + 38.89190091586272, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

Not In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H05286" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99348740940816, + 38.83986590773414, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

Not In Service


Last Inspection Date: 03/11/08

Report Problem", + "NAME": "H05391" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98601664025121, + 38.91047765444307, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

Not In Service


Last Inspection Date: 09/07/07

Report Problem", + "NAME": "H05422" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98957955060457, + 38.837540182413264, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

Not In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H05485" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98470810619855, + 38.84570928130159, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

Not In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H05572" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98317121239893, + 38.845981386046816, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

Not In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H05573" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98780462640617, + 38.834545599644464, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

Not In Service


Last Inspection Date: 07/05/07

Report Problem", + "NAME": "H05654" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9885525170853, + 38.83350723429082, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

Not In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H05655" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93173574657547, + 38.908409952681225, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

Not In Service


Last Inspection Date: 11/02/07

Report Problem", + "NAME": "H05703" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00455649194319, + 38.845714815307616, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

Not In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H05706" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99855738244389, + 38.83314573676457, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

Not In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H05711" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99759077343545, + 38.83484620257337, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

Not In Service


Last Inspection Date: 06/18/07

Report Problem", + "NAME": "H05714" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99878902851339, + 38.83402379395176, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

Not In Service


Last Inspection Date: 06/18/07

Report Problem", + "NAME": "H05715" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99584213768712, + 38.84433254766388, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

Not In Service


Last Inspection Date: 07/02/07

Report Problem", + "NAME": "H05876" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99837327570914, + 38.83016139292818, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

Not In Service


Last Inspection Date: 03/11/08

Report Problem", + "NAME": "H05932" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94244722039106, + 38.8984667850143, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

Not In Service


Last Inspection Date: 05/08/07

Report Problem", + "NAME": "H06014" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93128596530984, + 38.88813824915444, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

Not In Service


Last Inspection Date: 06/08/07

Report Problem", + "NAME": "H06062" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.993404398372, + 38.83796673223114, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

Not In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H06138" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97881935219762, + 38.84695302166241, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

Not In Service


Last Inspection Date: 03/12/08

Report Problem", + "NAME": "H06198" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98093780382641, + 38.84810364743267, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

Not In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H06204" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99151276057596, + 38.84277892390687, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

Not In Service


Last Inspection Date: 12/26/07

Report Problem", + "NAME": "H06281" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94245572382569, + 38.89910077971911, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

Not In Service


Last Inspection Date: 07/10/07

Report Problem", + "NAME": "H06284" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97686929496238, + 38.847532020368746, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

Not In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H06351" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9908307093506, + 38.83445746759559, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Eddy

Not In Service


Last Inspection Date: 08/10/07

Report Problem", + "NAME": "H06371" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93099707003753, + 38.88749531288, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

Not In Service


Last Inspection Date: 01/16/08

Report Problem", + "NAME": "H06421" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99497416142488, + 38.83408459821604, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

Not In Service


Last Inspection Date: 06/18/07

Report Problem", + "NAME": "H06449" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99613574191525, + 38.83427919813744, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, KENNEDY-K81-A/D GUAR

Not In Service


Last Inspection Date: 06/18/07

Report Problem", + "NAME": "H06450" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03172585575031, + 38.91692065774532, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

Not In Service


Last Inspection Date: 02/25/08

Report Problem", + "NAME": "H06618" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00485047487068, + 38.89142723809215, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

Not In Service


Last Inspection Date: 01/22/08

Report Problem", + "NAME": "H06681" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99666296819146, + 38.843205383344355, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

Not In Service


Last Inspection Date: 07/02/07

Report Problem", + "NAME": "H06847" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.992343207122, + 38.86050844281507, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

Not In Service


Last Inspection Date: 10/17/07

Report Problem", + "NAME": "H06936" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99854678638224, + 38.84050507675981, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

Not In Service


Last Inspection Date: 03/11/08

Report Problem", + "NAME": "H07080" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9733590055815, + 38.850989827283605, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

Not In Service


Last Inspection Date: 07/06/07

Report Problem", + "NAME": "H07263" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01012243607381, + 38.8674809483319, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

Not In Service


Last Inspection Date: 07/05/07

Report Problem", + "NAME": "H07374" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05434791651238, + 38.89321416302191, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

Not In Service


Last Inspection Date: 11/06/07

Report Problem", + "NAME": "H07410" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94283195424802, + 38.89090011532114, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

Not In Service


Last Inspection Date: 06/02/07

Report Problem", + "NAME": "H07469" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98402442882518, + 38.841073903098554, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

Not In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H07489" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98553461650069, + 38.834608525707, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

Not In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H07553" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98635144562992, + 38.83527938483727, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

Not In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H07663" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94277587834381, + 38.899779302608884, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

Not In Service


Last Inspection Date: 06/01/07

Report Problem", + "NAME": "H07664" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9761772397151, + 38.85176761201083, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

Not In Service


Last Inspection Date: 07/06/07

Report Problem", + "NAME": "H07676" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98828114282179, + 38.858208327743675, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

Not In Service


Last Inspection Date: 07/17/07

Report Problem", + "NAME": "H07726" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.931872005955, + 38.881380159518855, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

Not In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H07735" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98583667653341, + 38.91526521286277, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP SMITH - O'BRIEN

Not In Service


Last Inspection Date: 02/26/08

Report Problem", + "NAME": "H07797" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98678399344202, + 38.91493268211026, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

Not In Service


Last Inspection Date: 07/31/07

Report Problem", + "NAME": "H07799" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99000306666689, + 38.85427337296903, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP SMITH - O'BRIEN

Not In Service


Last Inspection Date: 06/05/07

Report Problem", + "NAME": "H07843" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0006533530727, + 38.86585272764679, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

Not In Service


Last Inspection Date: 03/12/08

Report Problem", + "NAME": "H07851" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97602904220025, + 38.85269103611326, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

Not In Service


Last Inspection Date: 07/06/07

Report Problem", + "NAME": "H07897" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98793210310468, + 38.87652507359999, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

Not In Service


Last Inspection Date: 01/08/08

Report Problem", + "NAME": "H07904" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99111619748747, + 38.85435082736918, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

Not In Service


Last Inspection Date: 06/05/07

Report Problem", + "NAME": "H07914" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99004411081333, + 38.858518228004314, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

Not In Service


Last Inspection Date: 03/12/08

Report Problem", + "NAME": "H07919" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92398128690964, + 38.904010206187216, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

Not In Service


Last Inspection Date: 05/28/07

Report Problem", + "NAME": "H08001" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98837064326993, + 38.83974025659751, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

Not In Service


Last Inspection Date: 03/11/08

Report Problem", + "NAME": "H08151" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01504314794114, + 38.89115951512574, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

Not In Service


Last Inspection Date: 11/07/07

Report Problem", + "NAME": "H08225" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02875131595142, + 38.898418860484426, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H00030" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95764882330856, + 38.883691300595814, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H00031" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0529977220696, + 38.96280384942628, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 09/21/07

Report Problem", + "NAME": "H00032" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0279853511952, + 38.92300810700433, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/30/07

Report Problem", + "NAME": "H00033" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94119295857982, + 38.87978174909364, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H00034" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94388454003413, + 38.87775490556381, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H00035" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95085670222016, + 38.88763142914867, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/02/07

Report Problem", + "NAME": "H00036" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01632906577423, + 38.815379894850096, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/15/07

Report Problem", + "NAME": "H00037" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0161692070949, + 38.81496240082986, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/15/07

Report Problem", + "NAME": "H00038" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01736558362855, + 38.81439578430056, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/15/07

Report Problem", + "NAME": "H00039" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97584637824413, + 38.850562575855, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/06/07

Report Problem", + "NAME": "H00041" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01470069113194, + 38.902140123803925, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/12/07

Report Problem", + "NAME": "H00043" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00912452852958, + 38.82135233969486, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 08/13/07

Report Problem", + "NAME": "H00044" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95592616553711, + 38.884011091508654, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, CLOW - EDDY

In Service


Last Inspection Date: 07/30/07

Report Problem", + "NAME": "H00045" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97148377126307, + 38.84925439555673, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H00046" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01036125901071, + 38.82445226880478, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 03/11/08

Report Problem", + "NAME": "H00047" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01051174457935, + 38.825275620679086, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 07/09/07

Report Problem", + "NAME": "H00048" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01418080489695, + 38.828572971819355, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/20/07

Report Problem", + "NAME": "H00049" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97146849955459, + 38.84719842287334, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H00050" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96991534493175, + 38.847508707008586, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H00051" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01164835924266, + 38.939619564354835, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H00052" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97074915707135, + 38.84688159815845, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H00053" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96827883483726, + 38.84705917601572, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H00054" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01048335544911, + 38.93900746204618, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H00055" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01043348675512, + 38.9397611453294, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H00056" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09837205432707, + 38.94626249795688, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/04/07

Report Problem", + "NAME": "H00057" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.1002431089394, + 38.94608328309577, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US Pipe, AP Smith

In Service


Last Inspection Date: 06/04/07

Report Problem", + "NAME": "H00058" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.10073059458767, + 38.946548997829375, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US Pipe, AP Smith

In Service


Last Inspection Date: 06/04/07

Report Problem", + "NAME": "H00060" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01446624081542, + 38.90114438742313, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/02/07

Report Problem", + "NAME": "H00061" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01457754925728, + 38.89472288892249, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H00062" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01266954068682, + 38.939815956010804, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H00063" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95160820241006, + 38.86900066345887, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H00064" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9540042960017, + 38.88668825445605, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/01/07

Report Problem", + "NAME": "H00066" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94806876057358, + 38.8675158903519, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H00067" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97907649493274, + 38.86876087754535, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, KENNEDY-K81-A/D GUAR

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H00068" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97979279295288, + 38.8380891347343, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

Not In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H08319" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98591509719353, + 38.85459888533094, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP SMITH - O'BRIEN

Not In Service


Last Inspection Date: 06/05/07

Report Problem", + "NAME": "H08368" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96468572679832, + 38.92540502852441, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

Not In Service


Last Inspection Date: 07/27/07

Report Problem", + "NAME": "H08422" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9934888941163, + 38.83204805424982, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

Not In Service


Last Inspection Date: 06/18/07

Report Problem", + "NAME": "H08435" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9923916315782, + 38.83220582513475, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

Not In Service


Last Inspection Date: 06/18/07

Report Problem", + "NAME": "H08436" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03181078795048, + 38.89578957105822, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Clow Eddy

Not In Service


Last Inspection Date: 02/29/08

Report Problem", + "NAME": "H08515" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97706625283728, + 38.84138399430156, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

Not In Service


Last Inspection Date: 07/17/07

Report Problem", + "NAME": "H08517" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0323454934693, + 38.896124103023254, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Clow Eddy

Not In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H08605" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.91100970788654, + 38.89390220984717, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

Not In Service


Last Inspection Date: 08/08/07

Report Problem", + "NAME": "H08619" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04064814698516, + 38.90268562195885, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Eddy

Not In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H08887" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99703717417856, + 38.86376791978137, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

Not In Service


Last Inspection Date: 08/28/07

Report Problem", + "NAME": "H08962" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98479626988147, + 38.8497942055782, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

Not In Service


Last Inspection Date: 03/10/08

Report Problem", + "NAME": "H09118" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02615757568168, + 38.89395356410638, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

Not In Service


Last Inspection Date: 03/11/08

Report Problem", + "NAME": "H09350" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00734329985171, + 38.83646993289141, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/15/07

Report Problem", + "NAME": "H00003" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98670067697417, + 38.86519768209315, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/28/07

Report Problem", + "NAME": "H00004" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0203117912091, + 38.92266262008507, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 10/04/06

Report Problem", + "NAME": "H00005" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98622199688307, + 38.863276861458345, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/05/07

Report Problem", + "NAME": "H00007" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06871050072776, + 38.944957189195556, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Clow Eddy, Eddy

In Service


Last Inspection Date: 11/10/05

Report Problem", + "NAME": "H00008" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98475995153744, + 38.864828271134506, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 06/05/07

Report Problem", + "NAME": "H00010" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0004914276414, + 38.83780381048957, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H00011" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08564775375521, + 38.90964557354399, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H00012" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06476139670181, + 38.94241042259082, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Eddy

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H00013" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00056245478972, + 38.83420877857179, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H00014" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98659922647472, + 38.85547111685086, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 11/21/07

Report Problem", + "NAME": "H00015" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94285288710866, + 38.87042235053403, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 07/27/07

Report Problem", + "NAME": "H00016" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01418500520768, + 38.96804162964368, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H00017" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99726767139077, + 38.832052708118574, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, CLOW - EDDY

In Service


Last Inspection Date: 06/18/07

Report Problem", + "NAME": "H00018" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04892152546748, + 38.917154075179845, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 10/03/07

Report Problem", + "NAME": "H00023" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99842514975484, + 38.82798879487114, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/18/07

Report Problem", + "NAME": "H00024" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92931049765984, + 38.886476330156206, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/08/07

Report Problem", + "NAME": "H00025" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92706829183449, + 38.8861878004065, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/08/07

Report Problem", + "NAME": "H00026" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00448639241161, + 38.82109143641948, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H00027" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03080027784384, + 38.898386908064644, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H00028" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03096217970821, + 38.89823578603241, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP SMITH - O'BRIEN

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H00029" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9882085093919, + 38.85522304522973, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

Not In Service


Last Inspection Date: 06/05/07

Report Problem", + "NAME": "H00002" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99337048103996, + 38.832965045867496, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

Not In Service


Last Inspection Date: 06/30/07

Report Problem", + "NAME": "H00020" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98960814925373, + 38.83596304770729, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

Not In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H00021" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99628444071986, + 38.83016409270196, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

Not In Service


Last Inspection Date: 06/18/07

Report Problem", + "NAME": "H00022" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97907972723497, + 38.84794629413317, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AM DARLING - B-84-B

Not In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H00059" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98310255748365, + 38.8535688576217, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

Not In Service


Last Inspection Date: 07/06/07

Report Problem", + "NAME": "H00099" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98702802537683, + 38.840136216678005, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

Not In Service


Last Inspection Date: 03/11/08

Report Problem", + "NAME": "H00108" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98590954839855, + 38.84401352998382, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

Not In Service


Last Inspection Date: 03/07/08

Report Problem", + "NAME": "H00162" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00243586107831, + 38.860670144391996, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

Not In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H00242" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9883830443067, + 38.85180131847511, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, U.S. Pipe

Not In Service


Last Inspection Date: 07/06/07

Report Problem", + "NAME": "H00295" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00186057274746, + 38.841555320984845, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

Not In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H00377" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93114705048231, + 38.88879526557277, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Clow Eddy

Not In Service


Last Inspection Date: 06/08/07

Report Problem", + "NAME": "H00407" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98775245098426, + 38.85402117476584, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

Not In Service


Last Inspection Date: 06/05/07

Report Problem", + "NAME": "H00439" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01224787233296, + 38.86738702124701, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

Not In Service


Last Inspection Date: 07/05/07

Report Problem", + "NAME": "H00557" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03435214518555, + 38.90958196669992, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

Not In Service


Last Inspection Date: 03/01/08

Report Problem", + "NAME": "H00916" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00745622900936, + 38.90778876724929, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

Not In Service


Last Inspection Date: 02/27/08

Report Problem", + "NAME": "H00926" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99605934440424, + 38.84661700609712, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

Not In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H01000" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01432579829839, + 38.90474183677433, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

Not In Service


Last Inspection Date: 06/12/07

Report Problem", + "NAME": "H01040" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03288981034959, + 38.9025928093699, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

Not In Service


Last Inspection Date: 03/11/08

Report Problem", + "NAME": "H01174" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99167910301576, + 38.896665588622305, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

Not In Service


Last Inspection Date: 05/30/07

Report Problem", + "NAME": "H01520" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0004169171207, + 38.841816201702336, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

Not In Service


Last Inspection Date: 10/05/07

Report Problem", + "NAME": "H01590" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97841081726658, + 38.86170400692483, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

Not In Service


Last Inspection Date: 06/05/07

Report Problem", + "NAME": "H01954" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9974960635124, + 38.86079489154801, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

Not In Service


Last Inspection Date: 07/10/07

Report Problem", + "NAME": "H02363" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99259102867128, + 38.92844863358593, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

Not In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H02514" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99858811144134, + 38.846513115673616, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

Not In Service


Last Inspection Date: 07/02/07

Report Problem", + "NAME": "H02907" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.91372890917275, + 38.89570302319379, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

Not In Service


Last Inspection Date: 03/12/08

Report Problem", + "NAME": "H02976" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02349137955831, + 38.931629593522736, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP SMITH - O'BRIEN

Not In Service


Last Inspection Date: 05/29/07

Report Problem", + "NAME": "H03110" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.91488830659483, + 38.892943258230794, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

Not In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H03216" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03207439428094, + 38.894753239540144, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

Not In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H03569" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03210933995463, + 38.89420376454046, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

Not In Service


Last Inspection Date: 12/14/07

Report Problem", + "NAME": "H03571" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08984295641454, + 38.92389463648992, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

Not In Service


Last Inspection Date: 02/19/08

Report Problem", + "NAME": "H03846" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99973408710572, + 38.8592151743981, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

Not In Service


Last Inspection Date: 06/05/07

Report Problem", + "NAME": "H03972" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02611904840202, + 38.89309439050424, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Kennedy

Not In Service


Last Inspection Date: 02/08/08

Report Problem", + "NAME": "H04031" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01362136786202, + 38.91814722262231, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 06/11/07

Report Problem", + "NAME": "H00541" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01349750327192, + 38.917126106792715, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 05/20/07

Report Problem", + "NAME": "H00542" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01069416546065, + 38.917051321550225, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 11/18/07

Report Problem", + "NAME": "H00543" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98456614591932, + 38.891509061074494, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 05/01/06

Report Problem", + "NAME": "H00544" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00596500742333, + 38.90362535603583, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H00545" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97431451221271, + 38.93217484609292, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 11/30/07

Report Problem", + "NAME": "H00546" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05530269530544, + 38.926836501875435, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 02/04/08

Report Problem", + "NAME": "H00547" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01222712033929, + 38.91326101385692, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/12/07

Report Problem", + "NAME": "H00548" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01066007478472, + 38.91254226596518, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/12/07

Report Problem", + "NAME": "H00550" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01410302035261, + 38.9148683670127, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/12/07

Report Problem", + "NAME": "H00551" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97905819445877, + 38.889579267396854, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 04/12/06

Report Problem", + "NAME": "H00552" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01060315063076, + 38.918052524624756, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 05/30/07

Report Problem", + "NAME": "H00553" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02081744766905, + 38.89282415955387, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP SMITH - O'BRIEN

In Service


Last Inspection Date: 07/02/07

Report Problem", + "NAME": "H00554" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0580317373795, + 38.904185188942485, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/12/07

Report Problem", + "NAME": "H00555" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05876849720363, + 38.90413805829549, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 02/29/08

Report Problem", + "NAME": "H00556" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00064318580094, + 38.90117898157355, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 05/23/07

Report Problem", + "NAME": "H00558" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03864316498213, + 38.91042496027107, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/13/07

Report Problem", + "NAME": "H00559" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00357821847021, + 38.897471673295854, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H00560" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00358232493264, + 38.89821155696173, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H00561" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01705764608303, + 38.86377615224299, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H00562" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0716960615629, + 38.96484371625319, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Eddy

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H00563" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02283656023243, + 38.914151121175266, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 10/04/06

Report Problem", + "NAME": "H00564" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01765757602736, + 38.88802508136319, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 07/20/07

Report Problem", + "NAME": "H00565" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04728176774067, + 38.91762893071494, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 09/18/07

Report Problem", + "NAME": "H00566" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03699845762682, + 38.935420954181026, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 05/19/07

Report Problem", + "NAME": "H00567" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01062421523633, + 38.92027888571206, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US PIPE-MET 250 M94

In Service


Last Inspection Date: 05/30/07

Report Problem", + "NAME": "H00568" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98753047577941, + 38.91386381710404, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 07/02/07

Report Problem", + "NAME": "H00256" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00380763913427, + 38.87318300584154, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H00257" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98032630731235, + 38.91728943401489, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/30/07

Report Problem", + "NAME": "H00258" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97884164849171, + 38.917360439522476, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, CLOW - EDDY

In Service


Last Inspection Date: 07/30/07

Report Problem", + "NAME": "H00259" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01143896297877, + 38.93683360770177, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H00262" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98487039704727, + 38.917215395627416, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/30/07

Report Problem", + "NAME": "H00263" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98530576893822, + 38.917790389827125, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/30/07

Report Problem", + "NAME": "H00264" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98572468372815, + 38.916337262896796, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/30/07

Report Problem", + "NAME": "H00265" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9862242551418, + 38.91664589425007, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/31/07

Report Problem", + "NAME": "H00266" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9868049342536, + 38.91642178893458, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/31/07

Report Problem", + "NAME": "H00267" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98694665721162, + 38.916751473748825, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/31/07

Report Problem", + "NAME": "H00268" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98649088696031, + 38.916933399241, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/31/07

Report Problem", + "NAME": "H00269" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9864570392697, + 38.91744240202542, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/31/07

Report Problem", + "NAME": "H00270" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94719326544984, + 38.87220963464331, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H00272" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99634567566413, + 38.94269296839883, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H00273" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99727526617477, + 38.94268893102567, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H00274" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95962196848646, + 38.873663784124524, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H00275" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01576688218383, + 38.87062427474521, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/05/07

Report Problem", + "NAME": "H00276" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01600386090753, + 38.870003293131596, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/05/07

Report Problem", + "NAME": "H00277" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03672557398609, + 38.89188592903099, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US PIPE-MET 250 M94

In Service


Last Inspection Date: 05/30/07

Report Problem", + "NAME": "H00278" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94371693141385, + 38.867505883405656, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 07/27/07

Report Problem", + "NAME": "H00279" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01587309197622, + 38.863621897025915, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/06/07

Report Problem", + "NAME": "H00280" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01601303214005, + 38.866915912225586, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H00281" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95679786057359, + 38.871216829973505, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H00283" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92283554447167, + 38.883606961818316, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 01/23/08

Report Problem", + "NAME": "H00284" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97953430553923, + 38.84876394454315, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H00285" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99220698796537, + 38.90754303362449, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H00286" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99431295277785, + 38.90823575276111, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H00287" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0218231958979, + 38.89826036264599, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H00288" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9957448593338, + 38.90712098582479, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H00289" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92957016309505, + 38.885231086982714, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Eddy

In Service


Last Inspection Date: 06/08/07

Report Problem", + "NAME": "H00290" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01475614091855, + 38.92943572517179, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/10/06

Report Problem", + "NAME": "H00291" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99861660534545, + 38.90624099360779, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H00293" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97991711111005, + 38.85057043674555, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 11/30/07

Report Problem", + "NAME": "H00294" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07589836785253, + 38.93573911403619, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H00296" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08869950161862, + 38.93814995551608, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H00297" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98716679418177, + 38.85734559990636, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H00298" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99272928621342, + 38.95636171296229, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Clow Eddy

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H00299" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02818482633154, + 38.88369634398283, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H00300" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96897278522113, + 38.8531391199942, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/06/07

Report Problem", + "NAME": "H00301" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96750467981876, + 38.85346269981682, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/06/07

Report Problem", + "NAME": "H00303" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00813961377256, + 38.85060081548807, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 12/13/07

Report Problem", + "NAME": "H00304" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.10755770729163, + 38.937131878087186, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H00305" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.10704444237716, + 38.936322340626795, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H00306" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00918229614138, + 38.941318270327784, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H00307" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0091695963797, + 38.89674687962059, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 01/01/08

Report Problem", + "NAME": "H00308" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.10705187431056, + 38.93604077025528, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H00309" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9992170519996, + 38.845839551419765, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 01/25/08

Report Problem", + "NAME": "H00310" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00297270660255, + 38.910666916886385, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, CLOW - EDDY

In Service


Last Inspection Date: 06/12/07

Report Problem", + "NAME": "H00311" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0021802943481, + 38.91118632825825, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H00312" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01025315333591, + 38.935422180428716, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H00313" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05537847533314, + 38.974384806254754, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Clow Eddy, Eddy

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H00314" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97548607624007, + 38.86427141378945, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/05/07

Report Problem", + "NAME": "H00316" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0102462601637, + 38.934487686969774, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H00317" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99933858727306, + 38.92361853570536, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/05/07

Report Problem", + "NAME": "H00319" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00476454428953, + 38.910784911867616, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/28/07

Report Problem", + "NAME": "H00321" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01347708245554, + 38.872523830158, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 07/05/07

Report Problem", + "NAME": "H00322" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06869665102082, + 38.92534159147757, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Kennedy

In Service


Last Inspection Date: 07/09/07

Report Problem", + "NAME": "H00323" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04250828420079, + 38.909232246583436, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/06/07

Report Problem", + "NAME": "H00324" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01889359503039, + 38.86400139527415, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/05/07

Report Problem", + "NAME": "H00325" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02369294362221, + 38.88295690634461, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP SMITH - O'BRIEN

In Service


Last Inspection Date: 06/27/07

Report Problem", + "NAME": "H00326" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09036995997808, + 38.93650697620551, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H00328" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95618281048186, + 38.920639360080045, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 11/29/07

Report Problem", + "NAME": "H00329" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95666317316294, + 38.92979609799884, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 08/01/07

Report Problem", + "NAME": "H00330" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01537305124363, + 38.8973986676926, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/02/07

Report Problem", + "NAME": "H00331" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03533097937942, + 38.87670357453863, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H00332" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03786925162169, + 38.897017243828905, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 08/15/07

Report Problem", + "NAME": "H00333" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03733396338757, + 38.903825654245956, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H00334" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03296804929205, + 38.87723707604876, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H00335" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03446942063209, + 38.87831786608508, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H00338" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03782073426443, + 38.8781924770099, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H00339" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0155628569985, + 38.92646573306782, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/21/06

Report Problem", + "NAME": "H00340" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00892532376703, + 38.90917472421178, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 08/13/07

Report Problem", + "NAME": "H00341" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00920006603344, + 38.941902519530075, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H00342" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.029820202144, + 38.89616771783067, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/01/07

Report Problem", + "NAME": "H00343" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9806906561109, + 38.86216415983844, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H00344" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96786732214434, + 38.85145323507563, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 09/26/07

Report Problem", + "NAME": "H00345" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96911550152376, + 38.85260936294394, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/06/07

Report Problem", + "NAME": "H00346" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04562391113357, + 38.943920923827434, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP SMITH - O'BRIEN

In Service


Last Inspection Date: 07/20/07

Report Problem", + "NAME": "H00069" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02884428137328, + 38.899911612945864, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Kennedy

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H00070" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08919221658242, + 38.92148126406963, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 08/11/07

Report Problem", + "NAME": "H00071" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.10044024780534, + 38.949247985252605, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/04/07

Report Problem", + "NAME": "H00072" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01434253792667, + 38.93896985697751, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H00073" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01072271592771, + 38.91912094646436, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 12/03/07

Report Problem", + "NAME": "H00074" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05140781738709, + 38.89400154628643, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/29/07

Report Problem", + "NAME": "H00075" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99480532988413, + 38.90716527790467, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H00076" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96168329394388, + 38.867990570706105, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 07/30/07

Report Problem", + "NAME": "H00077" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08196384915904, + 38.95393408182062, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/05/07

Report Problem", + "NAME": "H00078" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01399817662542, + 38.900671766939126, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/02/07

Report Problem", + "NAME": "H00079" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99350470928859, + 38.90571236448279, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H00080" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03627823127259, + 38.93326317810749, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AM DARLING - B-62-B

In Service


Last Inspection Date: 09/10/07

Report Problem", + "NAME": "H00081" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96990073641807, + 38.853823634337516, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/06/07

Report Problem", + "NAME": "H00082" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96922712112944, + 38.85373850021674, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/06/07

Report Problem", + "NAME": "H00083" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96801989576917, + 38.85369475513178, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/06/07

Report Problem", + "NAME": "H00084" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96792129365996, + 38.852814919623896, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/06/07

Report Problem", + "NAME": "H00085" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01122783997911, + 38.83318230245883, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H00086" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01116943985605, + 38.82960423673855, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H00087" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01267011779255, + 38.82629812897775, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H00088" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00137512739475, + 38.88765957778442, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, CLOW - EDDY

In Service


Last Inspection Date: 01/31/08

Report Problem", + "NAME": "H00089" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01275345631849, + 38.81711423940579, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H00090" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03217511870507, + 38.89835366598179, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/01/07

Report Problem", + "NAME": "H00094" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95786118894493, + 38.85655241831205, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 10/27/07

Report Problem", + "NAME": "H00100" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01409014267682, + 38.892233206687834, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H00101" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00410454472694, + 38.85944279942364, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 01/24/08

Report Problem", + "NAME": "H00102" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96852551838799, + 38.85144440594919, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 07/06/07

Report Problem", + "NAME": "H00103" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03181484685275, + 38.90512353532609, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 07/30/07

Report Problem", + "NAME": "H00104" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03086053488764, + 38.91922655336539, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 09/11/07

Report Problem", + "NAME": "H00106" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97588963989415, + 38.851132755659265, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/06/07

Report Problem", + "NAME": "H00107" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0767485924733, + 38.937601295254325, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Clow Eddy, Eddy

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H00109" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9770972901543, + 38.849803858246176, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/06/07

Report Problem", + "NAME": "H00110" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01448334419943, + 38.892263462756794, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H00111" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07438465119466, + 38.93626089311794, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/02/07

Report Problem", + "NAME": "H00112" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96856560928313, + 38.85196747343772, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/06/07

Report Problem", + "NAME": "H00113" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07814558270415, + 38.93855273593855, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H00114" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01024814055796, + 38.936255772818505, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H00115" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04671075337184, + 38.90471109966362, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 11/03/07

Report Problem", + "NAME": "H00116" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98018379838011, + 38.84270567203858, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 09/25/07

Report Problem", + "NAME": "H00117" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94751942978968, + 38.88420063031798, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/11/07

Report Problem", + "NAME": "H00118" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99357708817912, + 38.84477729096918, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/02/07

Report Problem", + "NAME": "H00119" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96186241344085, + 38.87386676687686, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H00120" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94004624971504, + 38.888246679549276, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/08/07

Report Problem", + "NAME": "H00121" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95425937955709, + 38.87464137127418, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US PIPE-MET 250 M94

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H00122" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95537249147377, + 38.87455030363314, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H00123" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00298434436891, + 38.82506546490317, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/15/07

Report Problem", + "NAME": "H00124" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97938931186481, + 38.86238359863203, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/05/07

Report Problem", + "NAME": "H00125" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98201825306879, + 38.85228714716915, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H00126" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93777143950871, + 38.87524685211913, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H00127" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98837569652838, + 38.880297887520015, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H00128" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97771001006961, + 38.86754646236409, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H00129" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96692471794726, + 38.84980654513702, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/06/07

Report Problem", + "NAME": "H00130" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98090277857703, + 38.865174987341696, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/05/07

Report Problem", + "NAME": "H00131" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97084763145918, + 38.87268148076737, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H00132" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98375701162509, + 38.86891795431268, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/28/07

Report Problem", + "NAME": "H00133" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98037972997913, + 38.84557619192893, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H00134" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93800802719893, + 38.883210911238, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 08/03/07

Report Problem", + "NAME": "H00135" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98524563899609, + 38.860024901296775, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H00136" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9506005301701, + 38.87180333326891, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H00137" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9532239833161, + 38.88368123450846, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, CLOW - EDDY

In Service


Last Inspection Date: 12/20/07

Report Problem", + "NAME": "H00138" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96197631902415, + 38.869233484548666, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H00139" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07716348694093, + 38.934740517019485, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, CLOW - EDDY

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H00142" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07839208956898, + 38.93675254156028, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Clow Eddy, Eddy

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H00143" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07824937420085, + 38.93973405954898, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Clow Eddy, Eddy

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H00144" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01418898467888, + 38.892283668625964, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H00145" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.011409409811, + 38.934438330832734, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H00146" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07791650819983, + 38.925749713392534, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H00147" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98876879161352, + 38.876270399626904, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 10/18/06

Report Problem", + "NAME": "H00149" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05244606758697, + 38.96160427976706, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 09/21/07

Report Problem", + "NAME": "H00150" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98002742095711, + 38.88283768216455, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 04/26/06

Report Problem", + "NAME": "H00151" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00011864938733, + 38.876478916455284, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H00152" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01229212334901, + 38.83161182222366, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H00153" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.10036145753229, + 38.94706963388548, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US Pipe, AP Smith

In Service


Last Inspection Date: 06/04/07

Report Problem", + "NAME": "H00154" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97871037060538, + 38.8647029186449, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Clow Eddy

In Service


Last Inspection Date: 06/05/07

Report Problem", + "NAME": "H00155" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98684375657275, + 38.90124365223176, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 05/12/07

Report Problem", + "NAME": "H00156" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03907844803614, + 38.989393503894014, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H00157" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05459386424639, + 38.97493890217225, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 12/21/07

Report Problem", + "NAME": "H00158" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97431139178099, + 38.88747110735175, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 04/06/06

Report Problem", + "NAME": "H00159" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92888796611612, + 38.8830643548754, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Clow Eddy

In Service


Last Inspection Date: 06/08/07

Report Problem", + "NAME": "H00160" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95230945556914, + 38.86365794542221, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 01/07/08

Report Problem", + "NAME": "H00161" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01145551537157, + 38.93482911542911, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H00163" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97587730476666, + 38.88494169875132, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 04/10/06

Report Problem", + "NAME": "H00164" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97601809412953, + 38.88575813039, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 04/10/06

Report Problem", + "NAME": "H00165" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97508266360155, + 38.8858589996089, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 04/10/06

Report Problem", + "NAME": "H00166" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00499639843575, + 38.90895532585457, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, KENNEDY-K81-A/D GUAR

In Service


Last Inspection Date: 08/14/07

Report Problem", + "NAME": "H00167" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95350539572817, + 38.863316423222805, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 12/26/07

Report Problem", + "NAME": "H00168" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04782306063719, + 38.89741051957247, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/29/07

Report Problem", + "NAME": "H00169" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01518868806883, + 38.863994702229185, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/05/07

Report Problem", + "NAME": "H00170" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01087636205634, + 38.94190102433504, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H00172" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9297421383169, + 38.88445997368586, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 01/18/08

Report Problem", + "NAME": "H00173" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00399840817738, + 38.91066981399904, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/18/07

Report Problem", + "NAME": "H00174" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9879116750212, + 38.91663473050051, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/31/07

Report Problem", + "NAME": "H00176" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98578460926737, + 38.92229680993157, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 10/25/07

Report Problem", + "NAME": "H00177" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01079902681498, + 38.94072699013935, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H00178" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03328945585672, + 38.91562460835372, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 11/01/07

Report Problem", + "NAME": "H00180" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96105167707513, + 38.89247180719127, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/01/07

Report Problem", + "NAME": "H00181" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97401398306715, + 38.88256312153113, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H00182" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97355180925192, + 38.88239338085669, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 04/10/06

Report Problem", + "NAME": "H00183" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97388070108195, + 38.88181441375457, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 04/10/06

Report Problem", + "NAME": "H00184" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93790051446518, + 38.89028596502925, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Kennedy

In Service


Last Inspection Date: 11/26/07

Report Problem", + "NAME": "H00185" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97532470681075, + 38.88226215634162, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H00186" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93498955252282, + 38.896603375266864, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 10/15/07

Report Problem", + "NAME": "H00187" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9406267442465, + 38.89182535536861, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H00188" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94150203726983, + 38.891825571780615, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H00189" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94256043501382, + 38.89138156080858, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/02/07

Report Problem", + "NAME": "H00190" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93768796897564, + 38.891124315390975, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H00191" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92984053568262, + 38.90131258081229, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H00192" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96014255603326, + 38.88999564820024, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, USP

In Service


Last Inspection Date: 06/01/07

Report Problem", + "NAME": "H00193" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93762449042534, + 38.90069668953318, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 05/12/07

Report Problem", + "NAME": "H00194" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92740120700508, + 38.89922650165815, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H00195" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93616273371121, + 38.90442165709111, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Clow Eddy

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H00196" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92808163404881, + 38.89469275059905, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, USP

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H00197" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92998761313903, + 38.889932793951, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Kennedy

In Service


Last Inspection Date: 11/06/07

Report Problem", + "NAME": "H00198" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06869847175086, + 38.92534016709285, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H00199" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02980271376337, + 38.89842786659362, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/02/07

Report Problem", + "NAME": "H00200" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02933363140882, + 38.89843036352863, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H00201" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97055289101735, + 38.86390449620404, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, CLOW - EDDY

In Service


Last Inspection Date: 08/20/07

Report Problem", + "NAME": "H00202" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98373254958011, + 38.85612086378365, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/05/07

Report Problem", + "NAME": "H00203" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03690126059846, + 38.897222574965035, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 08/15/07

Report Problem", + "NAME": "H00204" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03611144749854, + 38.89717469009673, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 08/15/07

Report Problem", + "NAME": "H00205" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03589500139472, + 38.897676108255936, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 08/15/07

Report Problem", + "NAME": "H00206" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02606614777152, + 38.90630553957762, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/30/07

Report Problem", + "NAME": "H00207" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98507420812717, + 38.85412452308332, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/06/07

Report Problem", + "NAME": "H00209" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0173067810556, + 38.94217394797017, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H00211" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03839435134978, + 38.917538114824, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/13/07

Report Problem", + "NAME": "H00212" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05821410178804, + 38.95227231287798, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H00214" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93528487102279, + 38.89934459522741, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/01/07

Report Problem", + "NAME": "H00216" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00597057035456, + 38.96636700239988, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H00217" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06890241705057, + 38.94419414644325, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller, Centurion

In Service


Last Inspection Date: 11/10/05

Report Problem", + "NAME": "H00218" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0055542916195, + 38.8495445208484, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Eddy

In Service


Last Inspection Date: 07/02/07

Report Problem", + "NAME": "H00219" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0129859458632, + 38.92879006643523, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/10/06

Report Problem", + "NAME": "H00221" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0373985480442, + 38.91622795073391, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/13/07

Report Problem", + "NAME": "H00222" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06776439944746, + 38.94213282339662, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 05/19/07

Report Problem", + "NAME": "H00223" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07600587709034, + 38.93826107090418, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H00225" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07464539247651, + 38.93693514232407, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 11/02/07

Report Problem", + "NAME": "H00226" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02823805697693, + 38.89824261997391, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H00227" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05934433393793, + 38.912457984493045, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/02/07

Report Problem", + "NAME": "H00228" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0758885368004, + 38.95772215084292, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H00229" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01143304842086, + 38.94080497767452, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H00230" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00793189101918, + 38.829123548710456, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/15/07

Report Problem", + "NAME": "H00231" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08084565509309, + 38.938359914690835, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H00232" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94083540044919, + 38.89508179812879, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/29/07

Report Problem", + "NAME": "H00233" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94102513008227, + 38.893729026171556, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H00234" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94123945077173, + 38.89248856432943, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H00235" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94309501188107, + 38.893190064075576, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Eddy

In Service


Last Inspection Date: 06/02/07

Report Problem", + "NAME": "H00236" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95303850482532, + 38.8915753650969, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 09/28/06

Report Problem", + "NAME": "H00237" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00882879162891, + 38.91061905710018, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/12/07

Report Problem", + "NAME": "H00238" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00181283627983, + 38.83464268527077, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H00239" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96964749770346, + 38.86249699656329, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 08/20/07

Report Problem", + "NAME": "H00240" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09295776572175, + 38.9161181284181, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H00241" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01446994649278, + 38.900657881629506, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/02/07

Report Problem", + "NAME": "H00244" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01063328287496, + 38.90243995748425, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H00246" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00079662454145, + 38.83268450077431, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H00247" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9464390539857, + 38.89090581570778, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H00248" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94478835184364, + 38.903767559143944, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H00249" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02012199961224, + 38.89621957115775, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H00250" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00720972052048, + 38.83390272006717, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 09/22/07

Report Problem", + "NAME": "H00251" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00010156022566, + 38.84515275035851, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Eddy

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H00252" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99944051392958, + 38.92569877302764, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/30/07

Report Problem", + "NAME": "H00253" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01208031394737, + 38.90787046469469, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 09/13/07

Report Problem", + "NAME": "H00255" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00866705467641, + 38.883805019399325, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H00527" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08187605088469, + 38.95338970142369, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, American Darling

In Service


Last Inspection Date: 06/05/07

Report Problem", + "NAME": "H00528" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05275825743661, + 38.917043008718245, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 11/15/06

Report Problem", + "NAME": "H00529" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0351353106222, + 38.91816395795987, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/13/07

Report Problem", + "NAME": "H00530" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03887333368164, + 38.922267472073464, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, SUP CENT 250

In Service


Last Inspection Date: 08/29/07

Report Problem", + "NAME": "H00531" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00959026346318, + 38.9213528484761, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US PIPE-MET 250 M94

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H00532" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06903003675079, + 38.9107348449838, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 08/08/07

Report Problem", + "NAME": "H00533" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06291833562312, + 38.90264884291127, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/11/07

Report Problem", + "NAME": "H00534" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0238248431285, + 38.918309314133154, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 03/02/07

Report Problem", + "NAME": "H00535" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00928441127117, + 38.89727314814548, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H00536" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04172793539733, + 38.925516563401246, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/04/07

Report Problem", + "NAME": "H00537" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01211642021528, + 38.86474831802853, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 07/05/07

Report Problem", + "NAME": "H00538" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01210907436096, + 38.87449229747678, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP SMITH - O'BRIEN

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H00539" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98525877404899, + 38.866717984758424, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Eddy

In Service


Last Inspection Date: 08/10/07

Report Problem", + "NAME": "H00540" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95217414060144, + 38.85961233496263, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 12/27/07

Report Problem", + "NAME": "H00429" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92687672045909, + 38.8885028797306, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 01/16/08

Report Problem", + "NAME": "H00430" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95130901968231, + 38.8602779340048, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H00433" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99170733798083, + 38.83177770542, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/18/07

Report Problem", + "NAME": "H00434" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92716397720932, + 38.88491508350542, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/08/07

Report Problem", + "NAME": "H00435" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92955533814974, + 38.88730015048535, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/08/07

Report Problem", + "NAME": "H00436" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99006439803618, + 38.830060708127355, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H00437" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9672844518499, + 38.854389912092174, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/23/07

Report Problem", + "NAME": "H00438" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98626578239839, + 38.86482887235028, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H00440" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97210596775659, + 38.871568556724625, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H00441" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98714488667319, + 38.85104297586446, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 08/04/07

Report Problem", + "NAME": "H00442" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09222814167765, + 38.9140042243332, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H00443" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04014351051762, + 38.920703287681384, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 12/18/07

Report Problem", + "NAME": "H00444" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04691221619966, + 38.92842015730996, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 11/09/06

Report Problem", + "NAME": "H00445" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98862110852838, + 38.865636657788876, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H00446" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00991295946864, + 38.88456260644426, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H00447" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98097328380578, + 38.92901800516747, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 07/30/07

Report Problem", + "NAME": "H00448" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03949788537298, + 38.89820151146847, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H00449" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08309822228358, + 38.95583880029729, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, American Darling

In Service


Last Inspection Date: 06/05/07

Report Problem", + "NAME": "H00451" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00016916398467, + 38.93615738291501, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H00452" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99731516469797, + 38.90443831907664, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 02/29/08

Report Problem", + "NAME": "H00453" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0473504826842, + 38.91886420614517, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 10/31/06

Report Problem", + "NAME": "H00454" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03295566411798, + 38.89653415540334, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H00455" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03389096640534, + 38.89747251427745, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H00456" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03387295099684, + 38.89793909864431, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US Pipe

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H00457" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.031864567533, + 38.89757868061877, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H00458" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02386963411597, + 38.89785670310835, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H00459" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02607378039431, + 38.89719134270353, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 08/29/07

Report Problem", + "NAME": "H00460" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0260855407902, + 38.896692682102554, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H00461" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02176073511433, + 38.896211268952726, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H00462" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02086210386048, + 38.89621576591644, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H00463" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07727501880086, + 38.96584663625259, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H00464" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02545588300819, + 38.89409276329198, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H00465" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01201875853117, + 38.942084168068654, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H00466" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01121533486227, + 38.941207345033476, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H00467" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99015250140971, + 38.90288808388267, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 09/06/07

Report Problem", + "NAME": "H00468" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00578517133305, + 38.90264670657341, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 02/29/08

Report Problem", + "NAME": "H00469" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01124529457459, + 38.94305895974434, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H00470" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04058153724093, + 38.89742157434607, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 05/24/07

Report Problem", + "NAME": "H00471" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0407174157212, + 38.89825063876422, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 11/22/07

Report Problem", + "NAME": "H00472" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06092418606342, + 38.934669197263865, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 01/19/07

Report Problem", + "NAME": "H00474" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06857756478493, + 38.93261656788015, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 02/25/08

Report Problem", + "NAME": "H00475" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02817853997549, + 38.895736840863236, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Clow Eddy

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H00476" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0258225598813, + 38.89621380182162, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H00477" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03659642809735, + 38.922561392155025, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 08/02/07

Report Problem", + "NAME": "H00478" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07670766441386, + 38.96716455620272, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H00479" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0241586426541, + 38.89743017880579, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 07/19/07

Report Problem", + "NAME": "H00480" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03919622241256, + 38.92887361359118, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - JUMBO

In Service


Last Inspection Date: 09/19/07

Report Problem", + "NAME": "H00481" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03901413927103, + 38.92461154334142, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 08/29/07

Report Problem", + "NAME": "H00482" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02207583073152, + 38.89621359704856, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H00483" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06081355906596, + 38.933539424399484, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 01/22/07

Report Problem", + "NAME": "H00484" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05861137787707, + 38.93352747841943, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 01/01/06

Report Problem", + "NAME": "H00485" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02530127041605, + 38.944088112135255, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 08/08/07

Report Problem", + "NAME": "H00486" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99609624521014, + 38.88489097510951, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 08/08/07

Report Problem", + "NAME": "H00487" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03357254807193, + 38.9254748068058, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US PIPE-MET 250 M94

In Service


Last Inspection Date: 05/21/07

Report Problem", + "NAME": "H00489" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04146675127683, + 38.93061303739658, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP SMITH - O'BRIEN

In Service


Last Inspection Date: 09/14/07

Report Problem", + "NAME": "H00490" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03479306358672, + 38.93382801788214, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP SMITH - O'BRIEN

In Service


Last Inspection Date: 05/24/07

Report Problem", + "NAME": "H00491" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02280657678641, + 38.89387341630787, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H00492" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97224782585256, + 38.92463332653775, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 08/06/07

Report Problem", + "NAME": "H00493" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00849093256782, + 38.88913373237844, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 06/27/07

Report Problem", + "NAME": "H00494" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00849101342658, + 38.889135191729466, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 06/27/07

Report Problem", + "NAME": "H00495" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03531538315417, + 38.94830092313481, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 08/14/07

Report Problem", + "NAME": "H00496" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98723919459903, + 38.90715805736616, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US PIPE-A P SMITH

In Service


Last Inspection Date: 02/08/08

Report Problem", + "NAME": "H00497" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0284065576634, + 38.93578323967515, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 09/11/07

Report Problem", + "NAME": "H00498" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03322413239843, + 38.88710630441911, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H00499" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99958513570448, + 38.9167148535573, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US PIPE-MET 250 M94

In Service


Last Inspection Date: 05/28/07

Report Problem", + "NAME": "H00500" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01058191558528, + 38.873091729747365, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - JUMBO

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H00501" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99017389550977, + 38.879476928858466, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, CLOW - EDDY

In Service


Last Inspection Date: 05/08/07

Report Problem", + "NAME": "H00502" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06493506387731, + 38.934591539194955, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 01/19/07

Report Problem", + "NAME": "H00503" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01061684626094, + 38.914776931836116, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H00504" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02335471479023, + 38.940975658402245, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/06/07

Report Problem", + "NAME": "H00505" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02317612065625, + 38.93973212634408, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 05/29/07

Report Problem", + "NAME": "H00506" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98093954908359, + 38.88971702131883, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 09/25/07

Report Problem", + "NAME": "H00507" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01751320993249, + 38.94000700008668, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 09/25/07

Report Problem", + "NAME": "H00508" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05489077157895, + 38.91551923072498, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/11/07

Report Problem", + "NAME": "H00509" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98690928232688, + 38.879830899565206, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 03/05/07

Report Problem", + "NAME": "H00510" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98803484510809, + 38.86125526613529, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 08/28/07

Report Problem", + "NAME": "H00511" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01930052394003, + 38.931424493893914, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 09/08/07

Report Problem", + "NAME": "H00512" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01071714309293, + 38.8852602076266, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 01/10/08

Report Problem", + "NAME": "H00513" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98237317635046, + 38.881212298090894, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 05/17/06

Report Problem", + "NAME": "H00514" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98094933322828, + 38.881349650627, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 05/17/06

Report Problem", + "NAME": "H00515" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99143154390538, + 38.886706959824046, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 11/03/06

Report Problem", + "NAME": "H00516" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98372533177708, + 38.89550844659728, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - JUMBO

In Service


Last Inspection Date: 08/27/07

Report Problem", + "NAME": "H00517" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98624058132604, + 38.89483897087784, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Eddy

In Service


Last Inspection Date: 09/04/07

Report Problem", + "NAME": "H00518" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07101762896404, + 38.93621500016529, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 03/20/07

Report Problem", + "NAME": "H00519" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07829633267208, + 38.96583511092745, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H00520" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0578063566818, + 38.92876439380731, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 01/09/07

Report Problem", + "NAME": "H00521" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0207455996933, + 38.89314136605035, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H00522" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02003091776506, + 38.89346029698376, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, UNKNOWN

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H00523" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0268386306364, + 38.89972459094567, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 07/19/07

Report Problem", + "NAME": "H00524" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02825325281327, + 38.89990688385605, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US Pipe

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H00525" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03253507965007, + 38.93766094301866, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 12/31/07

Report Problem", + "NAME": "H00526" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98359301309151, + 38.88295557169683, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 04/26/06

Report Problem", + "NAME": "H00570" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03689006232764, + 38.906954908845705, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H00571" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01112939055602, + 38.91181116849666, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/12/07

Report Problem", + "NAME": "H00572" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07277946390602, + 38.96666344297844, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H00573" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07490356453572, + 38.964033467224915, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H00574" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07437660945044, + 38.96743807511667, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, U.S. Pipe

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H00575" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99514272375718, + 38.88754138504495, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US PIPE-MET 250 M94

In Service


Last Inspection Date: 10/23/06

Report Problem", + "NAME": "H00576" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98371942418198, + 38.879166859296646, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 02/19/08

Report Problem", + "NAME": "H00577" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02582003684756, + 38.95418408733482, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 11/07/07

Report Problem", + "NAME": "H00578" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98534863294992, + 38.88987979030678, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 11/21/06

Report Problem", + "NAME": "H00579" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99368737806073, + 38.880292782272456, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 02/25/08

Report Problem", + "NAME": "H00581" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02193222762705, + 38.9208724995467, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 07/13/07

Report Problem", + "NAME": "H00582" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0084327047177, + 38.913252620228725, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H00584" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00810064099802, + 38.91435520999397, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H00585" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03516499770826, + 38.92187097438736, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H00586" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00722343538322, + 38.91687207863701, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H00587" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07248948360254, + 38.93733245905578, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Kennedy

In Service


Last Inspection Date: 10/03/07

Report Problem", + "NAME": "H00588" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02332961738753, + 38.938762172867094, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US PIPE-MET 250 M94

In Service


Last Inspection Date: 05/29/07

Report Problem", + "NAME": "H00589" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04062544590344, + 38.89908033187001, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 06/18/07

Report Problem", + "NAME": "H00590" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03263089798043, + 38.939633318451996, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 11/29/07

Report Problem", + "NAME": "H00591" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97412329737345, + 38.931228832661596, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/09/07

Report Problem", + "NAME": "H00592" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03254573050256, + 38.932440854950336, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 05/07/07

Report Problem", + "NAME": "H00593" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06374874040749, + 38.9084903267896, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/02/07

Report Problem", + "NAME": "H00594" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05907340453584, + 38.908541267108774, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/02/07

Report Problem", + "NAME": "H00595" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00471936337394, + 38.91190453325423, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/12/07

Report Problem", + "NAME": "H00596" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02300846873308, + 38.900999982666754, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/04/07

Report Problem", + "NAME": "H00597" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03959710316732, + 38.8944165321469, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 05/21/07

Report Problem", + "NAME": "H00598" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03960246125648, + 38.89339524251815, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 05/21/07

Report Problem", + "NAME": "H00599" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01829160326582, + 38.900982277219185, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/08/07

Report Problem", + "NAME": "H00600" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99074778614116, + 38.90420289262141, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 09/04/07

Report Problem", + "NAME": "H00601" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0702573109951, + 38.90438443464286, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 11/11/07

Report Problem", + "NAME": "H00602" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07531740639138, + 38.93333074137175, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 02/14/08

Report Problem", + "NAME": "H00603" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04175557754553, + 38.89845483419036, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H00604" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01549171011582, + 38.9206655106053, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/21/06

Report Problem", + "NAME": "H00605" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0489028204688, + 38.89813239916177, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 05/29/07

Report Problem", + "NAME": "H00606" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01546681279963, + 38.94006880640176, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H00607" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01629597759893, + 38.94004647929922, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H00608" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07689390504922, + 38.92622565158503, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H00609" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07477146559653, + 38.926238289187225, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H00610" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07454940357962, + 38.92739184697904, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H00611" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03255194075274, + 38.92060408911481, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Kennedy

In Service


Last Inspection Date: 03/06/08

Report Problem", + "NAME": "H00612" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02460004799546, + 38.93876801101417, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP SMITH - O'BRIEN

In Service


Last Inspection Date: 07/17/07

Report Problem", + "NAME": "H00613" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9914631784084, + 38.89368032658183, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 11/16/06

Report Problem", + "NAME": "H00614" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01625880008766, + 38.8996281351377, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 09/18/07

Report Problem", + "NAME": "H00615" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02203469935738, + 38.88553661951162, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H00616" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99965038348607, + 38.9013821122493, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AM DARLING - B-84-B

In Service


Last Inspection Date: 05/17/07

Report Problem", + "NAME": "H00617" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97641196847428, + 38.93020882882853, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 07/27/07

Report Problem", + "NAME": "H00618" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97913171479412, + 38.88861893360989, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 12/17/07

Report Problem", + "NAME": "H00619" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99581682191103, + 38.857838585699376, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/01/07

Report Problem", + "NAME": "H00620" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99537035242629, + 38.85879395718681, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/04/07

Report Problem", + "NAME": "H00621" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97893632675547, + 38.88418446924292, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 04/26/06

Report Problem", + "NAME": "H00622" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9917479239196, + 38.86407133943828, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H00623" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98804834503095, + 38.92671355351125, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AM DARLING - B-84-B

In Service


Last Inspection Date: 07/31/07

Report Problem", + "NAME": "H00624" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0742129963924, + 38.963027784738486, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H00625" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99270276919138, + 38.884955393486855, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/18/07

Report Problem", + "NAME": "H00626" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9901511706112, + 38.88672565035966, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 05/09/06

Report Problem", + "NAME": "H00628" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98217278014079, + 38.867129824301315, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/05/07

Report Problem", + "NAME": "H00629" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99257693968177, + 38.877116249773486, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, KENNEDY-K81-A/D GUAR

In Service


Last Inspection Date: 11/06/06

Report Problem", + "NAME": "H00630" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99369801143564, + 38.88203683386349, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 02/13/08

Report Problem", + "NAME": "H00631" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99966281188446, + 38.886586858611366, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 10/28/07

Report Problem", + "NAME": "H00632" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99956742604682, + 38.88600130456793, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 11/10/06

Report Problem", + "NAME": "H00633" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99479350035581, + 38.87921400998166, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 08/01/07

Report Problem", + "NAME": "H00634" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99736034874054, + 38.88132362686992, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 08/05/07

Report Problem", + "NAME": "H00635" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01072881291074, + 38.92231983796973, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, KENNEDY-K81-A/D GUAR

In Service


Last Inspection Date: 10/25/07

Report Problem", + "NAME": "H00636" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00188848819498, + 38.877471257018776, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H00637" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0075131256187, + 38.885119557566796, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H00638" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00594694070963, + 38.87913586286285, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H00639" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00744812762868, + 38.90473386568645, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/12/07

Report Problem", + "NAME": "H00640" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04704042398917, + 38.91373197778027, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H00641" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0269677359348, + 38.94723847639023, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, KENNEDY-K81-A/D GUAR

In Service


Last Inspection Date: 02/15/08

Report Problem", + "NAME": "H00642" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99032265856465, + 38.88423614437471, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 10/27/06

Report Problem", + "NAME": "H00643" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03175208334801, + 38.93322537228224, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 09/21/07

Report Problem", + "NAME": "H00644" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98358992951349, + 38.885237998472206, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 12/24/07

Report Problem", + "NAME": "H00645" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03259401271161, + 38.933911284974236, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H00646" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02975734138879, + 38.90511948323334, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 05/30/07

Report Problem", + "NAME": "H00647" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00210297107746, + 38.88879206410491, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Kennedy

In Service


Last Inspection Date: 06/27/07

Report Problem", + "NAME": "H00648" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02695601930422, + 38.94724846026628, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 08/13/07

Report Problem", + "NAME": "H00649" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98235601331686, + 38.88415702883303, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 04/26/06

Report Problem", + "NAME": "H00650" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99287735931316, + 38.906567148130286, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H00347" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99220802648185, + 38.90700737938312, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H00348" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00932069359708, + 38.927217222583195, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/10/06

Report Problem", + "NAME": "H00349" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99243417218278, + 38.90670031770109, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H00350" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01130272309352, + 38.92825757988901, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/10/06

Report Problem", + "NAME": "H00351" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01845705247615, + 38.8765884684711, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, KENNEDY-K81-A/D GUAR

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H00352" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99151815785021, + 38.90632797580559, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H00353" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04767391193084, + 38.92883585294763, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 01/11/06

Report Problem", + "NAME": "H00354" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99130658219315, + 38.906636550222906, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H00355" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99110082719848, + 38.90694361128114, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H00356" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98973248345513, + 38.908454991405186, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H00357" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9896338844959, + 38.909235690844014, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H00358" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0130787064562, + 38.92810877550604, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/10/06

Report Problem", + "NAME": "H00359" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99270329545742, + 38.90956295273197, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H00360" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99317734354747, + 38.90880953252853, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H00361" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99201826830638, + 38.90728973320711, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H00362" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01305669927427, + 38.92752707518816, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/10/06

Report Problem", + "NAME": "H00363" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01166529362663, + 38.92884343582412, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 04/25/07

Report Problem", + "NAME": "H00364" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99719344538849, + 38.92077274793784, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H00365" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09652327436493, + 38.91717414947395, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H00366" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96727508938005, + 38.85272271013205, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/16/07

Report Problem", + "NAME": "H00367" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.965226811923, + 38.92542641437083, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/27/07

Report Problem", + "NAME": "H00368" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01450243368396, + 38.92821858998992, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/10/06

Report Problem", + "NAME": "H00369" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0835746938527, + 38.956779626398635, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, American Darling

In Service


Last Inspection Date: 06/05/07

Report Problem", + "NAME": "H00370" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01398314030503, + 38.92888344863874, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/10/06

Report Problem", + "NAME": "H00371" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0208161333214, + 38.88128750672352, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H00372" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01080895255856, + 38.90728983015717, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/12/07

Report Problem", + "NAME": "H00373" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96536542177824, + 38.918748045339555, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, KENNEDY-K81-A/D GUAR

In Service


Last Inspection Date: 09/01/07

Report Problem", + "NAME": "H00374" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0103814941828, + 38.93021411718099, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/10/06

Report Problem", + "NAME": "H00378" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99615314705265, + 38.95630614162345, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Clow Eddy

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H00379" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96244490115862, + 38.87277754265664, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 07/27/07

Report Problem", + "NAME": "H00380" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01676474746395, + 38.92876837089944, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/10/06

Report Problem", + "NAME": "H00381" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01130702201235, + 38.94191306358582, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H00382" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05607500744702, + 38.973957646256444, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Clow Eddy, Eddy

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H00383" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01243921658218, + 38.876346839562224, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H00384" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01220696659455, + 38.94183242095408, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H00385" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01228434161513, + 38.94189081358332, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H00386" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01921141820215, + 38.97739866543538, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 08/12/07

Report Problem", + "NAME": "H00387" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01111740753674, + 38.894925110940825, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H00388" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01048697759512, + 38.9418325879154, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H00390" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98212112473459, + 38.89669873957552, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, U.S. Pipe

In Service


Last Inspection Date: 10/30/07

Report Problem", + "NAME": "H00391" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96934599296084, + 38.851965518930356, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 10/19/07

Report Problem", + "NAME": "H00392" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03447981496605, + 38.8759785719446, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H00393" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01114720644023, + 38.942438694526075, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H00394" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08953570644644, + 38.93584287756872, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/08/07

Report Problem", + "NAME": "H00396" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01084556711778, + 38.94283343902372, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H00397" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.10159511332704, + 38.9468704670706, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 01/24/08

Report Problem", + "NAME": "H00398" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03147854420091, + 38.877481353284985, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H00399" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06629844889184, + 38.942441981768084, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 04/26/07

Report Problem", + "NAME": "H00400" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06781608380881, + 38.94377777007308, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Eddy

In Service


Last Inspection Date: 01/26/07

Report Problem", + "NAME": "H00401" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.016392499733, + 38.92961197089285, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/10/06

Report Problem", + "NAME": "H00402" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92790652307717, + 38.883604445635456, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/08/07

Report Problem", + "NAME": "H00403" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02053614988436, + 38.915516914349716, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/12/07

Report Problem", + "NAME": "H00404" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97002822541879, + 38.9300446670204, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 08/31/07

Report Problem", + "NAME": "H00405" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01137549088142, + 38.929678741932676, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/10/06

Report Problem", + "NAME": "H00406" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01002664703468, + 38.94204296283392, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H00410" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03625981526396, + 38.977766274729134, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H00411" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00924672621241, + 38.942801353788425, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H00413" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95871870489547, + 38.92377463928698, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/01/07

Report Problem", + "NAME": "H00414" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00994039988291, + 38.942704637938846, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H00415" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.10776974802998, + 38.933626704075415, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US Pipe, AP Smith

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H00417" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00939868261503, + 38.92988479352073, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AM DARLING - B-84-B

In Service


Last Inspection Date: 06/10/06

Report Problem", + "NAME": "H00418" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.1141503737422, + 38.935383194175174, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 09/19/07

Report Problem", + "NAME": "H00419" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93136381320559, + 38.88685685273269, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/08/07

Report Problem", + "NAME": "H00420" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.11283075780725, + 38.93548727828825, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H00421" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98273611208353, + 38.8546444285413, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 08/04/07

Report Problem", + "NAME": "H00422" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02287368070186, + 38.90783555532735, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/12/07

Report Problem", + "NAME": "H00424" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.10133848008398, + 38.94624790197279, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US Pipe, AP Smith

In Service


Last Inspection Date: 06/04/07

Report Problem", + "NAME": "H00425" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94180239725716, + 38.868618078148785, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 07/27/07

Report Problem", + "NAME": "H00427" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01307372771403, + 38.942405911958566, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H00428" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97111302680491, + 38.870795934741, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H00816" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02761138063899, + 38.951921980805395, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 08/01/07

Report Problem", + "NAME": "H00817" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02988723304331, + 38.950863480632385, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 08/09/07

Report Problem", + "NAME": "H00818" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03486283339551, + 38.954119385323146, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 08/01/07

Report Problem", + "NAME": "H00819" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03333417147122, + 38.95067959959026, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, KENNEDY-K81-A/D GUAR

In Service


Last Inspection Date: 07/16/07

Report Problem", + "NAME": "H00820" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02833000238368, + 38.94514844910206, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 08/15/07

Report Problem", + "NAME": "H00821" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99736081420201, + 38.89896419458266, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/30/07

Report Problem", + "NAME": "H00822" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03080718503574, + 38.93642993191747, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - JUMBO

In Service


Last Inspection Date: 09/18/07

Report Problem", + "NAME": "H00823" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04137017307245, + 38.92981850270133, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 09/14/07

Report Problem", + "NAME": "H00824" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03794247041503, + 38.92546511903166, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 05/25/07

Report Problem", + "NAME": "H00825" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06651433472665, + 38.96979780068285, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, American Darling

In Service


Last Inspection Date: 06/15/07

Report Problem", + "NAME": "H00826" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07451311114325, + 38.969463086641134, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/15/07

Report Problem", + "NAME": "H00827" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07570320304505, + 38.968546382062804, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, American Darling

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H00828" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03081572054886, + 38.935496588797925, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - JUMBO

In Service


Last Inspection Date: 09/18/07

Report Problem", + "NAME": "H00829" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0281024642312, + 38.94608351869913, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 08/15/07

Report Problem", + "NAME": "H00830" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0268001813721, + 38.94620425622486, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 08/14/07

Report Problem", + "NAME": "H00831" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02988084988567, + 38.94617651155082, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 08/09/07

Report Problem", + "NAME": "H00832" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99162629589053, + 38.888996390132725, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H00833" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05127620162818, + 38.89952148885242, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/29/07

Report Problem", + "NAME": "H00834" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01483064544254, + 38.918686422040935, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 11/28/07

Report Problem", + "NAME": "H00835" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99204494183824, + 38.90475405601698, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 08/02/07

Report Problem", + "NAME": "H00836" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0760366156829, + 38.94852421256546, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/04/07

Report Problem", + "NAME": "H00837" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07747882052871, + 38.951499060052555, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US Pipe, Metropolitan

In Service


Last Inspection Date: 06/18/07

Report Problem", + "NAME": "H00838" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07806369706799, + 38.94746234961837, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H00839" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01527261442573, + 38.91405865894837, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/12/07

Report Problem", + "NAME": "H00840" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99627591930884, + 38.89550662022172, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/30/07

Report Problem", + "NAME": "H00841" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99829557757407, + 38.8955072526926, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 03/11/08

Report Problem", + "NAME": "H00842" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02269116104476, + 38.92422673833953, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H00843" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00331141114258, + 38.90846845772506, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H00844" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07204917019278, + 38.961056122840226, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Eddy

In Service


Last Inspection Date: 06/18/07

Report Problem", + "NAME": "H00845" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0250784294348, + 38.93096700005812, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP SMITH - O'BRIEN

In Service


Last Inspection Date: 06/01/07

Report Problem", + "NAME": "H00846" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08024236257697, + 38.956020266925755, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 08/02/07

Report Problem", + "NAME": "H00847" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08196504045424, + 38.9560536366489, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/15/07

Report Problem", + "NAME": "H00848" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08196270809631, + 38.95692493584346, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/15/07

Report Problem", + "NAME": "H00849" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0722209293094, + 38.90774716292588, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/02/07

Report Problem", + "NAME": "H00850" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07345875370999, + 38.90771332157698, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/02/07

Report Problem", + "NAME": "H00851" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07466530957848, + 38.96104214920701, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Eddy

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H00852" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97606451668062, + 38.92837233305071, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, U.S. Pipe

In Service


Last Inspection Date: 12/04/07

Report Problem", + "NAME": "H00853" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02088739795322, + 38.97587174488227, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 08/12/07

Report Problem", + "NAME": "H00854" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07724169280054, + 38.96404571970071, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 10/03/07

Report Problem", + "NAME": "H00855" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07981623966808, + 38.96406173692394, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Eddy

In Service


Last Inspection Date: 07/23/07

Report Problem", + "NAME": "H00856" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0215177285729, + 38.942055402241564, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 08/20/07

Report Problem", + "NAME": "H00857" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01615607764515, + 38.940929617522166, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H00858" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97790173749411, + 38.86435560214066, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/05/07

Report Problem", + "NAME": "H00859" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07285048879902, + 38.96313265987557, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H00860" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03244726875441, + 38.90597957804404, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 05/30/07

Report Problem", + "NAME": "H00861" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9871504502469, + 38.93718986540383, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H00862" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97398010673248, + 38.928588924825554, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 09/05/07

Report Problem", + "NAME": "H00863" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06848872802077, + 38.933546898735806, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 02/14/08

Report Problem", + "NAME": "H00864" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09044072646705, + 38.95474165690618, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/05/07

Report Problem", + "NAME": "H00865" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03960509660374, + 38.892286887716025, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 09/20/07

Report Problem", + "NAME": "H00866" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01249142909948, + 38.89837604929189, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H00867" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09791294282094, + 38.918241832211585, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H00868" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.10337071813137, + 38.92697821766792, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H00869" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.10118135519639, + 38.92494747805228, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H00870" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09098982220766, + 38.91268943687518, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H00871" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09835740942346, + 38.92016374695341, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H00872" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01293407256973, + 38.972032667715844, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H00873" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97221559434684, + 38.930224923257626, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, KENNEDY-K81-A/D GUAR

In Service


Last Inspection Date: 09/25/07

Report Problem", + "NAME": "H00874" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0415155843193, + 38.91552200075751, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/19/07

Report Problem", + "NAME": "H00875" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00537927481935, + 38.84230248961242, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H00876" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9857026302258, + 38.86500605429688, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/05/07

Report Problem", + "NAME": "H00877" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01878313883964, + 38.89989243113835, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/02/07

Report Problem", + "NAME": "H00878" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98591056676086, + 38.86430174772459, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H00879" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05348645524667, + 38.926676855060656, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 09/21/07

Report Problem", + "NAME": "H00880" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04895527572103, + 38.89410570064894, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/21/07

Report Problem", + "NAME": "H00881" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0367537249266, + 38.92699648023964, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 11/11/06

Report Problem", + "NAME": "H00882" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00334433402065, + 38.90367806922617, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H00883" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02983369456861, + 38.92104346605919, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 07/09/07

Report Problem", + "NAME": "H00884" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00066942168479, + 38.925458682803686, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 05/30/07

Report Problem", + "NAME": "H00885" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99073939629218, + 38.86537192560533, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/08/07

Report Problem", + "NAME": "H00886" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02535362079801, + 38.91266687498987, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, CLOW - EDDY

In Service


Last Inspection Date: 10/04/06

Report Problem", + "NAME": "H00887" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02094017220237, + 38.92839147424518, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 08/13/06

Report Problem", + "NAME": "H00888" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04543976020092, + 38.934127799329964, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP SMITH - O'BRIEN

In Service


Last Inspection Date: 09/20/07

Report Problem", + "NAME": "H00889" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98931922178006, + 38.89210645105821, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 04/13/06

Report Problem", + "NAME": "H00890" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9894000134754, + 38.890713142485076, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 11/02/06

Report Problem", + "NAME": "H00891" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9925404993397, + 38.932346975736394, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H00892" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03471249738996, + 38.91034342550599, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H00893" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97961865888138, + 38.931180626705576, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/23/07

Report Problem", + "NAME": "H00894" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06327596685209, + 38.9727529398324, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 08/30/07

Report Problem", + "NAME": "H00895" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06503298529833, + 38.97269086407926, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/15/07

Report Problem", + "NAME": "H00896" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03085709850097, + 38.92247777577873, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 08/06/07

Report Problem", + "NAME": "H00897" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0309378499679, + 38.92371343482643, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 09/11/07

Report Problem", + "NAME": "H00898" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0467341294854, + 38.93338634696887, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 01/01/06

Report Problem", + "NAME": "H00899" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03302555312348, + 38.92454083613538, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 08/05/06

Report Problem", + "NAME": "H00900" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03096021289848, + 38.92480783156651, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 09/24/07

Report Problem", + "NAME": "H00901" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03140634873986, + 38.92761182105497, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, KENNEDY-K81-A/D GUAR

In Service


Last Inspection Date: 09/24/07

Report Problem", + "NAME": "H00902" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03108952924309, + 38.9257996940437, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 09/24/07

Report Problem", + "NAME": "H00903" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03368886955771, + 38.92868649864836, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 09/18/07

Report Problem", + "NAME": "H00904" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03472141704026, + 38.92861862510296, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP SMITH - O'BRIEN

In Service


Last Inspection Date: 09/18/07

Report Problem", + "NAME": "H00905" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03579146033631, + 38.92787064840089, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/25/07

Report Problem", + "NAME": "H00907" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02718058233971, + 38.90233640398072, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 05/29/07

Report Problem", + "NAME": "H00908" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03371620425382, + 38.93064172643669, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 10/02/07

Report Problem", + "NAME": "H00909" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03832187973492, + 38.9086342163582, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, KENNEDY-K81-A/D GUAR

In Service


Last Inspection Date: 05/23/07

Report Problem", + "NAME": "H00910" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03712905045026, + 38.93075869189606, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 09/21/07

Report Problem", + "NAME": "H00911" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9993832558833, + 38.90569120262682, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/12/07

Report Problem", + "NAME": "H00912" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03585400896552, + 38.93137047483482, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 05/23/07

Report Problem", + "NAME": "H00913" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02685787749867, + 38.907304413054646, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 05/30/07

Report Problem", + "NAME": "H00914" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9936127848748, + 38.88277623759321, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, KENNEDY-K81-A/D GUAR

In Service


Last Inspection Date: 12/18/07

Report Problem", + "NAME": "H00915" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02950121154154, + 38.930650604515805, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 09/19/07

Report Problem", + "NAME": "H00917" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02872577477143, + 38.92960634730041, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 08/25/06

Report Problem", + "NAME": "H00918" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03181953803592, + 38.912745115962515, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/13/07

Report Problem", + "NAME": "H00920" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05044718973109, + 38.91679821894255, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 10/25/06

Report Problem", + "NAME": "H00651" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04860836375371, + 38.90862195785906, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/12/07

Report Problem", + "NAME": "H00652" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0135072439775, + 38.90968280533327, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/13/07

Report Problem", + "NAME": "H00653" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01222147706642, + 38.914174225516575, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/12/07

Report Problem", + "NAME": "H00654" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97412852985852, + 38.92484975046252, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 08/06/07

Report Problem", + "NAME": "H00655" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01207167253078, + 38.9190761966528, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, SUP CENT 250

In Service


Last Inspection Date: 01/08/08

Report Problem", + "NAME": "H00656" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98102851307308, + 38.930194823690044, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H00657" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99602272247685, + 38.932446066303335, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H00658" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02983651692159, + 38.94903956113759, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 08/09/07

Report Problem", + "NAME": "H00659" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03226669234711, + 38.94903643837466, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 02/29/08

Report Problem", + "NAME": "H00660" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00796022039897, + 38.886857118497275, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 09/27/07

Report Problem", + "NAME": "H00661" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01631439358715, + 38.90569814568789, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H00662" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00819987815059, + 38.88742572881885, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 12/05/07

Report Problem", + "NAME": "H00663" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00074031013949, + 38.88873903936953, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 06/15/07

Report Problem", + "NAME": "H00664" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99838219156732, + 38.88955703607746, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 11/08/06

Report Problem", + "NAME": "H00665" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00209774900779, + 38.891907186920946, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/27/07

Report Problem", + "NAME": "H00666" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0551446200081, + 38.91013571869892, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 02/29/08

Report Problem", + "NAME": "H00668" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03985262477734, + 38.91562239209743, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/13/07

Report Problem", + "NAME": "H00669" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02815352060524, + 38.904604756184035, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 07/06/07

Report Problem", + "NAME": "H00670" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01760905858622, + 38.90851294008092, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/12/07

Report Problem", + "NAME": "H00671" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03258517237938, + 38.9291798364562, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AM DARLING - B-84-B

In Service


Last Inspection Date: 09/13/07

Report Problem", + "NAME": "H00672" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03170847976189, + 38.89931333714904, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Eddy

In Service


Last Inspection Date: 06/02/07

Report Problem", + "NAME": "H00673" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05975309290822, + 38.93563597824736, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 01/22/07

Report Problem", + "NAME": "H00674" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06704842761827, + 38.90382319902977, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H00675" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06920830486993, + 38.90428668953538, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Kennedy

In Service


Last Inspection Date: 11/09/07

Report Problem", + "NAME": "H00676" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06793574061754, + 38.904014609429645, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 11/13/07

Report Problem", + "NAME": "H00677" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99631602832157, + 38.89362483664449, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 05/23/07

Report Problem", + "NAME": "H00678" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03073451170366, + 38.93461727391309, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 06/27/07

Report Problem", + "NAME": "H00679" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99136033344102, + 38.89472356908853, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Kennedy

In Service


Last Inspection Date: 08/16/07

Report Problem", + "NAME": "H00680" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9870171388433, + 38.89088179993263, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 04/13/06

Report Problem", + "NAME": "H00681" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01143675331436, + 38.89897030373331, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H00682" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0181366136296, + 38.96499577415655, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H00683" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01974129301549, + 38.96500663943978, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/02/07

Report Problem", + "NAME": "H00684" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04837279682933, + 38.916314429773294, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 10/31/06

Report Problem", + "NAME": "H00685" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04748490780639, + 38.91658632312581, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 10/31/06

Report Problem", + "NAME": "H00686" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04760345898923, + 38.91553591222147, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/18/07

Report Problem", + "NAME": "H00687" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05073286386714, + 38.91171878072168, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/11/07

Report Problem", + "NAME": "H00688" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01080088623986, + 38.92125108392233, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 05/30/07

Report Problem", + "NAME": "H00689" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04981244796014, + 38.911928368420995, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 07/17/07

Report Problem", + "NAME": "H00690" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04684229124072, + 38.91488207059559, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/13/07

Report Problem", + "NAME": "H00691" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0473066258105, + 38.91331349608546, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/12/07

Report Problem", + "NAME": "H00692" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04894287727178, + 38.911637721456394, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/19/07

Report Problem", + "NAME": "H00693" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05015678467589, + 38.91338920257348, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/12/07

Report Problem", + "NAME": "H00694" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00572262543777, + 38.88608182622064, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 11/14/06

Report Problem", + "NAME": "H00695" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04951825089607, + 38.91117242341423, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 11/01/07

Report Problem", + "NAME": "H00696" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97479702297635, + 38.8707998778302, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/27/07

Report Problem", + "NAME": "H00697" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05193596666396, + 38.91331208864754, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H00698" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97488724676622, + 38.869602536020736, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 08/15/07

Report Problem", + "NAME": "H00699" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04909121826807, + 38.910374149198795, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/11/07

Report Problem", + "NAME": "H00700" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00577134864527, + 38.90264829272741, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 02/29/08

Report Problem", + "NAME": "H00701" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05139202933057, + 38.912585392246704, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/11/07

Report Problem", + "NAME": "H00702" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04867783837187, + 38.907942276232404, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/12/07

Report Problem", + "NAME": "H00703" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99041966812867, + 38.93738334397939, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H00704" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01367986739568, + 38.92086346947468, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 05/21/06

Report Problem", + "NAME": "H00705" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00479222837689, + 38.87853414635814, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H00706" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01883617478768, + 38.918209331479886, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 09/22/06

Report Problem", + "NAME": "H00707" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00196492911333, + 38.913411490758584, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H00708" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04193796753975, + 38.9246632023148, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/04/07

Report Problem", + "NAME": "H00709" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08115360049952, + 38.951087320965186, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/05/07

Report Problem", + "NAME": "H00710" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08196250964956, + 38.9510835677228, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US Pipe, AP Smith

In Service


Last Inspection Date: 06/05/07

Report Problem", + "NAME": "H00711" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05255107323511, + 38.927720721550344, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Kennedy

In Service


Last Inspection Date: 01/02/07

Report Problem", + "NAME": "H00712" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05118960854304, + 38.927033198667196, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Eddy

In Service


Last Inspection Date: 01/02/07

Report Problem", + "NAME": "H00713" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0552689971173, + 38.92824985932468, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 02/01/08

Report Problem", + "NAME": "H00714" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97299023244767, + 38.92719157399502, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 08/07/07

Report Problem", + "NAME": "H00715" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9761603492975, + 38.92759325971914, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP SMITH - O'BRIEN

In Service


Last Inspection Date: 08/07/07

Report Problem", + "NAME": "H00716" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02717051131606, + 38.92683502368891, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 09/06/06

Report Problem", + "NAME": "H00717" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01595140325975, + 38.913654562403, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/12/07

Report Problem", + "NAME": "H00718" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01126835334301, + 38.89846856342125, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H00719" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02615824515915, + 38.918163150410834, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 04/02/07

Report Problem", + "NAME": "H00720" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02434593750515, + 38.94415403044285, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, JCF&M - O'BRIEN

In Service


Last Inspection Date: 08/08/07

Report Problem", + "NAME": "H00721" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03675991251376, + 38.91817183593261, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/13/07

Report Problem", + "NAME": "H00722" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9882139934856, + 38.94418448274824, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/05/07

Report Problem", + "NAME": "H00723" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98556931625309, + 38.894687315099404, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 05/29/07

Report Problem", + "NAME": "H00724" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99488466513287, + 38.90119214066332, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 09/13/07

Report Problem", + "NAME": "H00725" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08024468030992, + 38.95457417699644, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/13/07

Report Problem", + "NAME": "H00726" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08259050574149, + 38.95484507058237, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, American Darling

In Service


Last Inspection Date: 06/13/07

Report Problem", + "NAME": "H00727" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08009923423131, + 38.95068416204505, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/08/07

Report Problem", + "NAME": "H00728" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01470350055722, + 38.92018815319445, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 06/11/07

Report Problem", + "NAME": "H00729" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9948801555543, + 38.896240442858776, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H00730" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01811746861144, + 38.941111585701336, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 08/09/07

Report Problem", + "NAME": "H00731" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98692805158687, + 38.8887277884754, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 04/12/06

Report Problem", + "NAME": "H00732" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99511043669797, + 38.89547870536883, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H00733" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02719732379923, + 38.92247923433971, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 08/21/06

Report Problem", + "NAME": "H00734" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98564170147857, + 38.88062981281078, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 11/01/07

Report Problem", + "NAME": "H00735" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00577557360182, + 38.88748069884412, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 10/30/06

Report Problem", + "NAME": "H00736" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98410952649787, + 38.87844934053881, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, CLOW - EDDY

In Service


Last Inspection Date: 09/13/06

Report Problem", + "NAME": "H00737" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04411354958891, + 38.932551034407645, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP SMITH - O'BRIEN

In Service


Last Inspection Date: 12/17/07

Report Problem", + "NAME": "H00738" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99010264068095, + 38.9008056451461, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/02/07

Report Problem", + "NAME": "H00739" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04810963114737, + 38.91852316502843, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 09/18/07

Report Problem", + "NAME": "H00740" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03498069774, + 38.95085758142868, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 07/13/07

Report Problem", + "NAME": "H00741" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04921929493923, + 38.9181809448933, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 10/25/06

Report Problem", + "NAME": "H00742" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98918848999021, + 38.87844813749413, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 05/08/07

Report Problem", + "NAME": "H00743" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98461034794515, + 38.89895210340257, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 06/02/07

Report Problem", + "NAME": "H00744" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9936504823689, + 38.903781585645035, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H00745" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99382318129341, + 38.891429454604264, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 11/17/06

Report Problem", + "NAME": "H00746" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08318931485202, + 38.950960729134344, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/05/07

Report Problem", + "NAME": "H00747" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00697621720708, + 38.92682257867399, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US PIPE-MET 250 M94

In Service


Last Inspection Date: 07/10/07

Report Problem", + "NAME": "H00748" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0087335607862, + 38.926582884437835, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, CLOW - EDDY

In Service


Last Inspection Date: 07/10/07

Report Problem", + "NAME": "H00749" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03095049295443, + 38.90259915863328, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 09/13/07

Report Problem", + "NAME": "H00750" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03184143618208, + 38.89294095457767, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H00751" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0770773417392, + 38.963174675990146, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H00752" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08047884350839, + 38.94633493774677, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H00753" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07755865841051, + 38.95079337087014, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 02/22/07

Report Problem", + "NAME": "H00754" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03259168889524, + 38.93463087780487, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 05/24/07

Report Problem", + "NAME": "H00755" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0328165523565, + 38.93693769626933, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 09/11/07

Report Problem", + "NAME": "H00756" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08406173938262, + 38.957753647254634, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/05/07

Report Problem", + "NAME": "H00757" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0805124581247, + 38.95216677544486, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/05/07

Report Problem", + "NAME": "H00758" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00995468624028, + 38.875584877343336, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H00759" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08130287042992, + 38.952240114305575, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, American Darling

In Service


Last Inspection Date: 06/05/07

Report Problem", + "NAME": "H00760" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07215872338939, + 38.96404119280406, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H00761" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07425508711292, + 38.964953497211376, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Eddy

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H00762" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07463274323176, + 38.96586265763995, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H00763" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07530113369386, + 38.96677149470722, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller, Centurion

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H00764" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97402556881548, + 38.92241594081955, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 08/02/07

Report Problem", + "NAME": "H00765" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97518271241512, + 38.92339139709763, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 08/06/07

Report Problem", + "NAME": "H00766" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97517039898017, + 38.923383602285, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 08/06/07

Report Problem", + "NAME": "H00767" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0271003305908, + 38.94830526914321, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, CLOW - EDDY

In Service


Last Inspection Date: 08/13/07

Report Problem", + "NAME": "H00768" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03175978484622, + 38.920997322289296, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US Pipe

In Service


Last Inspection Date: 04/05/07

Report Problem", + "NAME": "H00769" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03071910738328, + 38.921136310668786, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H00770" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02231848450276, + 38.979296218615936, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H00771" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02239895193948, + 38.98139980282216, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 08/07/07

Report Problem", + "NAME": "H00772" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02618293472, + 38.94514650847371, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H00773" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0336193813073, + 38.933572408455916, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 09/19/07

Report Problem", + "NAME": "H00774" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03291057567897, + 38.94622611721635, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 08/01/07

Report Problem", + "NAME": "H00775" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03280701251039, + 38.945182167466186, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, CLOW - EDDY

In Service


Last Inspection Date: 07/19/07

Report Problem", + "NAME": "H00776" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03286919244309, + 38.944064095799305, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 08/01/07

Report Problem", + "NAME": "H00777" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03684059066543, + 38.90959015385614, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 08/15/07

Report Problem", + "NAME": "H00778" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01633314884639, + 38.96499761641715, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H00779" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02698246571457, + 38.95521961333535, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 08/01/07

Report Problem", + "NAME": "H00780" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0160530607214, + 38.963830240186354, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H00781" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08790215799044, + 38.93544022120361, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 02/25/08

Report Problem", + "NAME": "H01030" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0885802377269, + 38.933611392635385, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/08/07

Report Problem", + "NAME": "H01031" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98242552832846, + 38.92733087662477, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/30/07

Report Problem", + "NAME": "H01032" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99628131815844, + 38.8861419660861, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H01033" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08879400215685, + 38.93138872750128, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/08/07

Report Problem", + "NAME": "H01034" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09418149019496, + 38.95214948243766, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 11/13/07

Report Problem", + "NAME": "H01035" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02607688010123, + 38.92065062892319, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 05/21/06

Report Problem", + "NAME": "H01036" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00429660863546, + 38.917596681837956, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/01/07

Report Problem", + "NAME": "H01037" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07366503454432, + 38.920848889010955, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H00782" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02311197200497, + 38.9312850383782, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/16/07

Report Problem", + "NAME": "H00783" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03456967680417, + 38.946192163588314, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 08/08/07

Report Problem", + "NAME": "H00784" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01752308654319, + 38.91782115967092, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/11/07

Report Problem", + "NAME": "H00785" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05072003616347, + 38.917741480339046, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 10/25/06

Report Problem", + "NAME": "H00786" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02499203325878, + 38.94175694207643, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 08/15/07

Report Problem", + "NAME": "H00787" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9700043205496, + 38.92921471628457, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/27/07

Report Problem", + "NAME": "H00788" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97023087536384, + 38.92780060437805, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/27/07

Report Problem", + "NAME": "H00789" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07724499887098, + 38.962103078433984, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H00790" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0034438296227, + 38.89106698015863, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Kennedy

In Service


Last Inspection Date: 06/27/07

Report Problem", + "NAME": "H00791" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0276437318776, + 38.975757046540714, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H00792" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01119545368773, + 38.94439719035928, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H00793" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0352027278312, + 38.89958149725826, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Clow Eddy

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H00794" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01725604780864, + 38.90046549918429, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 07/02/07

Report Problem", + "NAME": "H00795" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03380368015252, + 38.89935024246808, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/01/07

Report Problem", + "NAME": "H00796" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06159044574477, + 38.94112939177615, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 12/20/06

Report Problem", + "NAME": "H00797" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03332190066826, + 38.95826442886073, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/20/07

Report Problem", + "NAME": "H00798" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04594972261398, + 38.91853859177208, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 02/11/08

Report Problem", + "NAME": "H00799" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97662668099572, + 38.91183928644571, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 03/06/08

Report Problem", + "NAME": "H00801" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05815709016022, + 38.91247061659439, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/02/07

Report Problem", + "NAME": "H00802" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03831620453482, + 38.90970241868409, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 10/25/07

Report Problem", + "NAME": "H00803" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00715477418528, + 38.92612127057033, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 05/26/07

Report Problem", + "NAME": "H00804" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97338310345022, + 38.87345832211571, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/27/07

Report Problem", + "NAME": "H00805" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00797054412702, + 38.925308793784666, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 05/30/07

Report Problem", + "NAME": "H00806" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00782794323808, + 38.89722115045011, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H00807" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00708180128606, + 38.89585581834181, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/27/07

Report Problem", + "NAME": "H00808" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97312365293529, + 38.870860951015686, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/27/07

Report Problem", + "NAME": "H00809" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9925802833101, + 38.88186748259304, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 10/27/06

Report Problem", + "NAME": "H00810" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97493868638968, + 38.87245824729695, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/27/07

Report Problem", + "NAME": "H00811" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97489907988236, + 38.87275139921586, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 07/27/07

Report Problem", + "NAME": "H00813" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0073439925139, + 38.8774693027581, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 09/21/07

Report Problem", + "NAME": "H00814" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00368889906899, + 38.87834510025877, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H00815" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99274255731177, + 38.90137404107174, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, CLOW - EDDY

In Service


Last Inspection Date: 09/04/07

Report Problem", + "NAME": "H00991" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98923774692922, + 38.88165528208443, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 11/07/06

Report Problem", + "NAME": "H00992" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02175250644969, + 38.907294863283546, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/12/07

Report Problem", + "NAME": "H00993" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99623855782751, + 38.88284436498623, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H00994" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02478261045431, + 38.93978227925184, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 05/29/07

Report Problem", + "NAME": "H00995" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9882218181247, + 38.90199075414977, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/02/07

Report Problem", + "NAME": "H00996" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98738160293496, + 38.90169605715971, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, U.S. Pipe

In Service


Last Inspection Date: 07/31/07

Report Problem", + "NAME": "H00997" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00304288131125, + 38.84210657711564, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/18/07

Report Problem", + "NAME": "H00998" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99674922073514, + 38.84577667489998, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 08/01/07

Report Problem", + "NAME": "H00999" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99591095222571, + 38.848576624800614, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 08/21/07

Report Problem", + "NAME": "H01001" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98461363601996, + 38.894183292076356, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/02/07

Report Problem", + "NAME": "H01002" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03669948111862, + 38.93274326742947, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, KENNEDY-K81-A/D GUAR

In Service


Last Inspection Date: 09/19/07

Report Problem", + "NAME": "H01003" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03414805098019, + 38.93177263008724, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US PIPE-A P SMITH

In Service


Last Inspection Date: 09/19/07

Report Problem", + "NAME": "H01004" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03548963652308, + 38.93227019155713, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AM DARLING - B-84-B

In Service


Last Inspection Date: 09/19/07

Report Problem", + "NAME": "H01005" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0328762150876, + 38.93127699738826, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 09/19/07

Report Problem", + "NAME": "H01006" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98462473029034, + 38.89234132522096, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 11/13/06

Report Problem", + "NAME": "H01007" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03829684485254, + 38.933363643320035, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 10/29/07

Report Problem", + "NAME": "H01008" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04365062934166, + 38.90794355991402, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/11/07

Report Problem", + "NAME": "H01009" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05521926492962, + 38.92599731754884, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 01/09/07

Report Problem", + "NAME": "H01010" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00185804315322, + 38.89484108166827, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/27/07

Report Problem", + "NAME": "H01011" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01160212742568, + 38.97129560044692, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/23/07

Report Problem", + "NAME": "H01012" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04823235215979, + 38.91452545961899, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 11/05/07

Report Problem", + "NAME": "H01013" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04248321942809, + 38.93062324809139, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 01/29/08

Report Problem", + "NAME": "H01014" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01980161884329, + 38.97373306460092, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 08/12/07

Report Problem", + "NAME": "H01015" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0772484593844, + 38.95837626009613, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H01016" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00071482574262, + 38.902585617839584, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP SMITH - O'BRIEN

In Service


Last Inspection Date: 08/23/07

Report Problem", + "NAME": "H01017" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99485375203326, + 38.8451790317024, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/02/07

Report Problem", + "NAME": "H01018" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99610046779165, + 38.84516798160559, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/07/07

Report Problem", + "NAME": "H01019" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06089373324902, + 38.911261230915514, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/02/07

Report Problem", + "NAME": "H01020" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02802666834747, + 38.905750729941865, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 01/28/08

Report Problem", + "NAME": "H01021" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.10590181734473, + 38.9288197380787, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H01022" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03895275313891, + 38.91867848363708, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 01/30/08

Report Problem", + "NAME": "H01023" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06348330088213, + 38.93468953631698, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 01/19/07

Report Problem", + "NAME": "H01024" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02324743229828, + 38.936668805394945, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Kennedy

In Service


Last Inspection Date: 12/20/07

Report Problem", + "NAME": "H01025" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97889371339274, + 38.896156474037824, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/29/07

Report Problem", + "NAME": "H01026" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02153046379266, + 38.937053815598304, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 05/29/07

Report Problem", + "NAME": "H01027" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02065347666459, + 38.91918660817023, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 09/18/07

Report Problem", + "NAME": "H01028" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02034003683659, + 38.937231960694426, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/29/07

Report Problem", + "NAME": "H01029" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95057939527733, + 38.8930201942944, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/30/07

Report Problem", + "NAME": "H01038" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9434106876319, + 38.901189339008056, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US PIPE-MET 250 M94

In Service


Last Inspection Date: 07/19/07

Report Problem", + "NAME": "H01039" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0019669411962, + 38.88728210024327, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 11/10/06

Report Problem", + "NAME": "H01041" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04701775736768, + 38.90595205703593, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/11/07

Report Problem", + "NAME": "H01042" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00187411174693, + 38.88516672685189, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 05/06/07

Report Problem", + "NAME": "H01043" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97967713995875, + 38.93297493820744, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 07/10/07

Report Problem", + "NAME": "H01044" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00499894837685, + 38.91704310102508, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 06/01/07

Report Problem", + "NAME": "H01045" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00445025736542, + 38.837914692815225, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/15/07

Report Problem", + "NAME": "H01046" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0213581074638, + 38.97370528856168, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 11/07/07

Report Problem", + "NAME": "H01047" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04646473758444, + 38.91265866645512, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/13/07

Report Problem", + "NAME": "H01048" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02327438509997, + 38.935989997727084, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 05/29/07

Report Problem", + "NAME": "H01049" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02979822981926, + 38.90571464549881, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H01050" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05029444906312, + 38.89962662882252, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 05/23/07

Report Problem", + "NAME": "H01051" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98109765783735, + 38.93118043385557, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/10/07

Report Problem", + "NAME": "H01052" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00210404395237, + 38.88335143456431, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 01/10/07

Report Problem", + "NAME": "H01053" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01423371113836, + 38.93926456758919, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H01054" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01352986367627, + 38.94000352934251, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H01055" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04648883654312, + 38.911173920252565, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/11/07

Report Problem", + "NAME": "H01056" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01446585388359, + 38.9096964463205, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/11/07

Report Problem", + "NAME": "H01057" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04889803446264, + 38.91266018681594, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/11/07

Report Problem", + "NAME": "H01058" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01745977582902, + 38.90649621892462, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 02/08/08

Report Problem", + "NAME": "H01059" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00064459995251, + 38.88289331228595, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 05/07/07

Report Problem", + "NAME": "H01060" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03681213963031, + 38.905711583088326, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 07/29/07

Report Problem", + "NAME": "H01061" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03997397268957, + 38.93294179939662, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 02/11/08

Report Problem", + "NAME": "H01062" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01524617188079, + 38.90951290120818, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/11/07

Report Problem", + "NAME": "H01063" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07039277179258, + 38.90676376517887, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 07/18/07

Report Problem", + "NAME": "H01064" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07289165639922, + 38.92832674869288, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/11/07

Report Problem", + "NAME": "H01065" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98623506690751, + 38.88643767998779, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H01066" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07074745583294, + 38.92676534878509, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/27/07

Report Problem", + "NAME": "H01067" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98245049266036, + 38.88029939056729, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H01068" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06851893637447, + 38.92514746743295, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H01069" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03434577597278, + 38.94515193510014, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 08/03/07

Report Problem", + "NAME": "H01070" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0642517009663, + 38.90523347886796, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/02/07

Report Problem", + "NAME": "H01071" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06945885833555, + 38.92602000784756, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H01072" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99712003778735, + 38.90558313162535, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H01073" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08044711284144, + 38.9539029757847, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/13/07

Report Problem", + "NAME": "H01074" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06739588664657, + 38.92455806652047, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H01075" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07059506763527, + 38.97046281998418, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 11/19/07

Report Problem", + "NAME": "H01076" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02722480428261, + 38.91562280061169, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/13/07

Report Problem", + "NAME": "H01077" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00705099832936, + 38.91800122026909, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 02/01/08

Report Problem", + "NAME": "H01078" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05632355420633, + 38.91622064944444, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/11/07

Report Problem", + "NAME": "H01079" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00601439986795, + 38.91815632957647, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/01/07

Report Problem", + "NAME": "H01080" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01003853951129, + 38.95646008550201, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H01081" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06318282606173, + 38.918515626831244, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/11/07

Report Problem", + "NAME": "H01082" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98559855134397, + 38.90438597958521, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/01/07

Report Problem", + "NAME": "H01083" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05072469617849, + 38.914857775736934, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 12/17/07

Report Problem", + "NAME": "H01084" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99930690189358, + 38.90653568082517, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 06/01/07

Report Problem", + "NAME": "H01085" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04403760881928, + 38.93149802805645, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 09/18/07

Report Problem", + "NAME": "H01086" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99998261203325, + 38.843219295039894, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H01087" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.10376195473017, + 38.92579351099977, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H01088" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.10245132485421, + 38.92445367938406, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H01089" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04675304939533, + 38.92064142032478, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Kennedy

In Service


Last Inspection Date: 05/07/07

Report Problem", + "NAME": "H01090" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03126739178111, + 38.95846256549808, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/20/07

Report Problem", + "NAME": "H01091" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99271121092832, + 38.88423067860804, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 07/31/07

Report Problem", + "NAME": "H01092" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99968826612712, + 38.88549325027117, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/18/07

Report Problem", + "NAME": "H01093" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01714746631139, + 38.911077792000114, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/11/07

Report Problem", + "NAME": "H01094" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02099283069813, + 38.908490824132535, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 11/07/07

Report Problem", + "NAME": "H01095" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0162303436936, + 38.91272933173848, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/30/07

Report Problem", + "NAME": "H01096" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98099700989233, + 38.882096615884365, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H01097" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99270877032149, + 38.88352625884904, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/31/07

Report Problem", + "NAME": "H01098" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01206770019631, + 38.9180210696043, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 05/30/07

Report Problem", + "NAME": "H01099" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96487669838466, + 38.87104558704628, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, CLOW - EDDY

In Service


Last Inspection Date: 07/30/07

Report Problem", + "NAME": "H01100" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04163387392822, + 38.89364972525527, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AM DARLING - B-84-B

In Service


Last Inspection Date: 05/21/07

Report Problem", + "NAME": "H01101" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04165868958425, + 38.89267844292344, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 05/16/07

Report Problem", + "NAME": "H01102" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04083570445405, + 38.892230756222006, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 05/16/07

Report Problem", + "NAME": "H01103" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05336016120515, + 38.903449730904676, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/12/07

Report Problem", + "NAME": "H01104" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03466550910261, + 38.95192067850163, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 09/10/07

Report Problem", + "NAME": "H01105" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02095068622666, + 38.97744299354791, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Clow Eddy

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H01106" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02605284269748, + 38.91422736149244, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 11/03/06

Report Problem", + "NAME": "H01107" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99159379851616, + 38.892751284903305, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 10/22/06

Report Problem", + "NAME": "H01108" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07774476196049, + 38.952706226427104, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/13/07

Report Problem", + "NAME": "H01109" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00945227234384, + 38.96021602015782, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H01110" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9996852059546, + 38.9181614204952, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 06/28/07

Report Problem", + "NAME": "H01111" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07105760964761, + 38.91457700196526, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H01112" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04015338137422, + 38.92574120589587, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/04/07

Report Problem", + "NAME": "H01113" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03660477102156, + 38.91668587040987, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/13/07

Report Problem", + "NAME": "H01114" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98428969052102, + 38.92897056480209, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H01115" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98621858165949, + 38.92888001340834, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Kennedy

In Service


Last Inspection Date: 03/07/08

Report Problem", + "NAME": "H01116" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98849020783051, + 38.92874746768866, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H01117" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03610388193282, + 38.95830277983555, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H01118" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99623378515828, + 38.90273608891848, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 08/24/07

Report Problem", + "NAME": "H01260" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03784493973886, + 38.91548759226401, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/13/07

Report Problem", + "NAME": "H01261" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0339911604111, + 38.8964932309644, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 08/15/07

Report Problem", + "NAME": "H01262" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03461169584533, + 38.896333663756, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 08/15/07

Report Problem", + "NAME": "H01263" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0346881138083, + 38.94967780984984, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 07/17/07

Report Problem", + "NAME": "H01264" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03505196427452, + 38.897636817538846, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 08/15/07

Report Problem", + "NAME": "H01265" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03506423683316, + 38.89720538532162, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 08/15/07

Report Problem", + "NAME": "H01266" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06126172689633, + 38.902658587561895, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H01267" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0385204501002, + 38.92796907942228, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 10/24/06

Report Problem", + "NAME": "H01268" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01744683670653, + 38.884753350369856, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H01269" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.10245099692925, + 38.92574250041143, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H01270" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05057597228914, + 38.915732621584645, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 10/31/06

Report Problem", + "NAME": "H01271" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99257393611859, + 38.89346414757438, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 11/16/06

Report Problem", + "NAME": "H01272" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00134054455694, + 38.88988766496422, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/27/07

Report Problem", + "NAME": "H01273" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0287532997781, + 38.93977761350051, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 11/01/07

Report Problem", + "NAME": "H01274" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02821991187203, + 38.93892302761489, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 10/03/07

Report Problem", + "NAME": "H01275" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03893123182971, + 38.92722597362507, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H01276" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02211030576565, + 38.9346959742425, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 05/16/07

Report Problem", + "NAME": "H01277" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03505864228194, + 38.896705476847394, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 08/15/07

Report Problem", + "NAME": "H01278" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99479131113755, + 38.8774704444705, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 11/07/06

Report Problem", + "NAME": "H01279" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02814783313852, + 38.907370870262305, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP SMITH - O'BRIEN

In Service


Last Inspection Date: 01/28/08

Report Problem", + "NAME": "H01280" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02301353427221, + 38.899942202257186, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, U.S. Pipe

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H01281" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01878796832919, + 38.90728654943058, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 02/04/08

Report Problem", + "NAME": "H01282" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06648399581624, + 38.96486080367615, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Eddy

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H01283" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02980330962586, + 38.918065384007974, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/13/07

Report Problem", + "NAME": "H01284" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02718157551762, + 38.918163889752904, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 05/21/06

Report Problem", + "NAME": "H01285" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99728667693809, + 38.88685488993583, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 11/07/06

Report Problem", + "NAME": "H01286" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03133349487597, + 38.97944122809842, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H01287" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05487479411555, + 38.90368554364328, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/11/07

Report Problem", + "NAME": "H01288" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07073322685143, + 38.93352231152344, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 03/11/08

Report Problem", + "NAME": "H01289" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01235997090174, + 38.965012778328564, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H01290" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01376165638007, + 38.96500091104376, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H01291" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0697614609087, + 38.92475083468198, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 10/03/07

Report Problem", + "NAME": "H01292" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02949243392233, + 38.90845306252808, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Kennedy

In Service


Last Inspection Date: 05/30/07

Report Problem", + "NAME": "H01293" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0734675858721, + 38.96393850343997, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H01294" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02981463399068, + 38.90728262542809, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 05/30/07

Report Problem", + "NAME": "H01295" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9944952806497, + 38.903156701048964, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US PIPE-A P SMITH

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H01296" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02980137740762, + 38.91562145122284, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/13/07

Report Problem", + "NAME": "H01297" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05653768641652, + 38.92847400087578, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 02/20/08

Report Problem", + "NAME": "H01298" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03276206492265, + 38.90558663606525, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 05/30/07

Report Problem", + "NAME": "H01299" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05638572645356, + 38.927229503618705, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 01/09/07

Report Problem", + "NAME": "H01300" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01511849538126, + 38.880429568481176, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H01301" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06853997896148, + 38.93736966779079, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Kennedy

In Service


Last Inspection Date: 03/08/07

Report Problem", + "NAME": "H01302" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0318214772029, + 38.91125090216896, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, KENNEDY-K81-A/D GUAR

In Service


Last Inspection Date: 08/13/07

Report Problem", + "NAME": "H01303" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03097123782356, + 38.91036370991568, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 07/19/07

Report Problem", + "NAME": "H01304" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99382600202773, + 38.89213396346672, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 07/12/07

Report Problem", + "NAME": "H01305" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0464904946613, + 38.91078139010919, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H01306" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00334796081455, + 38.91487531381453, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 06/27/07

Report Problem", + "NAME": "H01307" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04253965894844, + 38.929747142439545, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 10/22/07

Report Problem", + "NAME": "H01119" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00367817964616, + 38.91632508697752, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/01/07

Report Problem", + "NAME": "H01120" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00367735162028, + 38.917038519807605, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/01/07

Report Problem", + "NAME": "H01121" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00501181248865, + 38.916323785229494, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/01/07

Report Problem", + "NAME": "H01122" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02856741514455, + 38.92678457732254, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/12/07

Report Problem", + "NAME": "H00921" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02874768998996, + 38.92761027121273, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 12/11/07

Report Problem", + "NAME": "H00922" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02733406566726, + 38.928670195114464, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H00923" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04798171390973, + 38.91913754961618, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 10/30/06

Report Problem", + "NAME": "H00924" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03108027692984, + 38.92669160083335, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 09/24/07

Report Problem", + "NAME": "H00925" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02688437259697, + 38.92572037387635, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H00927" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02696301926464, + 38.922903931903974, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/30/07

Report Problem", + "NAME": "H00928" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03276934981878, + 38.904454095137545, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 05/30/07

Report Problem", + "NAME": "H00929" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08228957627604, + 38.908698381034554, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 08/15/07

Report Problem", + "NAME": "H00930" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02689912670301, + 38.92374441392029, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Kennedy

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H00931" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9963462050196, + 38.90378059302521, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H00932" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02817758611357, + 38.9238200437837, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H00933" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09869712061487, + 38.919018204308266, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H00934" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02814555163172, + 38.92247991064203, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/30/07

Report Problem", + "NAME": "H00935" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02841847883096, + 38.925816336823786, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H00936" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04179985906374, + 38.91878235683632, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 08/16/07

Report Problem", + "NAME": "H00937" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07449084634996, + 38.95974323350111, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H00938" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.10977213906301, + 38.92839117253699, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US Pipe, AP Smith

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H00939" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01066175761832, + 38.91338684248242, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H00940" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07703382475488, + 38.96034055394016, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H00941" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07625719896264, + 38.95905172873574, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H00942" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0309389859885, + 38.932578100448914, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 09/21/07

Report Problem", + "NAME": "H00943" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03079384352402, + 38.933820753227806, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AM DARLING - B-62-B

In Service


Last Inspection Date: 09/18/07

Report Problem", + "NAME": "H00944" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02980907676186, + 38.93340777064042, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 09/12/07

Report Problem", + "NAME": "H00945" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99578145804072, + 38.85265546831029, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/02/07

Report Problem", + "NAME": "H00946" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03904529624903, + 38.91413853245932, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/20/07

Report Problem", + "NAME": "H00947" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05868767581333, + 38.94106986303479, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Kennedy

In Service


Last Inspection Date: 06/08/07

Report Problem", + "NAME": "H00948" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02751582997492, + 38.932902165429724, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US PIPE-MET 250 M94

In Service


Last Inspection Date: 09/12/07

Report Problem", + "NAME": "H00949" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02814993274278, + 38.91800776234343, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/20/07

Report Problem", + "NAME": "H00950" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02715471529463, + 38.90976409105831, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 07/23/07

Report Problem", + "NAME": "H00951" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02529089784515, + 38.93292866601758, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 01/09/08

Report Problem", + "NAME": "H00952" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99382703525835, + 38.88592108476634, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 01/12/07

Report Problem", + "NAME": "H00953" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97022530785893, + 38.925694873340795, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/27/07

Report Problem", + "NAME": "H00954" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9963353109303, + 38.88873345308379, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 06/01/07

Report Problem", + "NAME": "H00955" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02438891265945, + 38.92653697560749, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/11/07

Report Problem", + "NAME": "H00957" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99487386791456, + 38.88203364837203, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 11/04/06

Report Problem", + "NAME": "H00958" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00752284897247, + 38.875457968847684, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, CLOW - EDDY

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H00959" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02447817621386, + 38.92603925652625, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Kennedy

In Service


Last Inspection Date: 06/11/07

Report Problem", + "NAME": "H00960" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00209251840256, + 38.89003085103512, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/27/07

Report Problem", + "NAME": "H00961" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01070964913265, + 38.87557049620656, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H00962" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02688802490417, + 38.92482427969066, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 08/21/06

Report Problem", + "NAME": "H00963" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04340755980301, + 38.93065027568632, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 09/18/07

Report Problem", + "NAME": "H00964" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0019632067488, + 38.89105285326527, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/27/07

Report Problem", + "NAME": "H00965" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02835293489912, + 38.92481638449598, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H00966" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98565968938456, + 38.88540307026997, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Kennedy

In Service


Last Inspection Date: 05/06/07

Report Problem", + "NAME": "H00967" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02591134002633, + 38.935109232923914, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP SMITH - O'BRIEN

In Service


Last Inspection Date: 05/13/07

Report Problem", + "NAME": "H00968" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02249891059371, + 38.92328069475677, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 07/10/07

Report Problem", + "NAME": "H00969" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99851457689392, + 38.8910540314067, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 10/19/06

Report Problem", + "NAME": "H00970" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06630055242039, + 38.933441556188804, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 05/29/07

Report Problem", + "NAME": "H00971" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03460134517405, + 38.92528373759628, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/21/07

Report Problem", + "NAME": "H00972" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07974772374365, + 38.952739306941815, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/13/07

Report Problem", + "NAME": "H00973" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01899127513543, + 38.909746803630455, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/12/07

Report Problem", + "NAME": "H00974" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04729237131455, + 38.92012539555548, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 10/30/06

Report Problem", + "NAME": "H00975" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02816048892544, + 38.92059080755352, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 02/11/08

Report Problem", + "NAME": "H00976" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02300566269213, + 38.918751273729306, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/21/06

Report Problem", + "NAME": "H00977" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02146631685001, + 38.97247180737497, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 11/10/07

Report Problem", + "NAME": "H00978" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0691127857704, + 38.91262541283799, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 08/09/07

Report Problem", + "NAME": "H00979" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02824315678856, + 38.91913087121627, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 03/28/07

Report Problem", + "NAME": "H00980" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98677527969163, + 38.86429693927759, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/12/07

Report Problem", + "NAME": "H00981" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00065269304154, + 38.88439791063407, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 09/19/07

Report Problem", + "NAME": "H00982" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03171952703623, + 38.91562833310763, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 10/22/07

Report Problem", + "NAME": "H00983" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08048426947165, + 38.94483666694808, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H00984" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02772843472025, + 38.95519414358661, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 08/01/07

Report Problem", + "NAME": "H00985" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09252511484338, + 38.95222693399096, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US Pipe, Metropolitan

In Service


Last Inspection Date: 06/04/07

Report Problem", + "NAME": "H00986" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9916173110249, + 38.884238640698534, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 02/29/08

Report Problem", + "NAME": "H00987" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09251860499913, + 38.9498157025937, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 11/12/07

Report Problem", + "NAME": "H00988" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09251818262467, + 38.95116131447385, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US Pipe, AP Smith

In Service


Last Inspection Date: 06/04/07

Report Problem", + "NAME": "H00989" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99229101073968, + 38.929444545981134, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H00990" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99958535821078, + 38.884393921007955, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 10/24/06

Report Problem", + "NAME": "H01346" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03324060932577, + 38.98043663254894, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H01347" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99861133887138, + 38.88657672542416, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 05/20/07

Report Problem", + "NAME": "H01348" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99943350723875, + 38.89603904557128, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/27/07

Report Problem", + "NAME": "H01349" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03972411624017, + 38.90970408347191, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H01350" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99958718845025, + 38.888782956821174, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 06/04/07

Report Problem", + "NAME": "H01351" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00049205147249, + 38.894896496864035, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/27/07

Report Problem", + "NAME": "H01352" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05803198103061, + 38.90855168918467, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H01353" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01902032785169, + 38.91916356284706, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 09/18/07

Report Problem", + "NAME": "H01354" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02098415370156, + 38.912465161891056, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 09/26/07

Report Problem", + "NAME": "H01355" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06832022220472, + 38.91165236552843, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/02/07

Report Problem", + "NAME": "H01356" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99369075732835, + 38.93148955188863, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H01357" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99375773210112, + 38.9322686568161, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H01358" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03372254853788, + 38.9014539428181, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 05/29/07

Report Problem", + "NAME": "H01359" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00334336053685, + 38.902586121696324, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 02/29/08

Report Problem", + "NAME": "H01360" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00338152084385, + 38.901382928635776, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 05/23/07

Report Problem", + "NAME": "H01361" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98868669290609, + 38.93172728218154, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H01362" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01206340962221, + 38.92224165071239, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 10/25/07

Report Problem", + "NAME": "H01363" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0710942990464, + 38.91548998357376, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 08/28/07

Report Problem", + "NAME": "H01364" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9846922033922, + 38.933894576575184, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H01365" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01656208341545, + 38.91011013735514, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/16/07

Report Problem", + "NAME": "H01366" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99016655986281, + 38.92660222800276, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Kennedy

In Service


Last Inspection Date: 07/31/07

Report Problem", + "NAME": "H01367" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01209847417567, + 38.872872525187184, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H01368" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97639915775338, + 38.92563658509472, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 08/06/07

Report Problem", + "NAME": "H01369" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9743351566571, + 38.925639185851914, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 08/06/07

Report Problem", + "NAME": "H01370" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01237230989125, + 38.8886653915865, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, KENNEDY-K81-A/D GUAR

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H01371" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01236788365296, + 38.88866472543537, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H01372" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97451975942855, + 38.86365931031904, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/05/07

Report Problem", + "NAME": "H01373" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02180942036213, + 38.94309440910964, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 09/15/07

Report Problem", + "NAME": "H01374" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98753200501619, + 38.89423311397515, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H01375" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05218711874285, + 38.90379169542129, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/12/07

Report Problem", + "NAME": "H01376" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0422025297031, + 38.92063365753914, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 08/08/07

Report Problem", + "NAME": "H01377" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01075657899649, + 38.81725804479435, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H01378" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04580450193221, + 38.931523932470704, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 01/01/06

Report Problem", + "NAME": "H01379" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05032113866157, + 38.89493919609121, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/29/07

Report Problem", + "NAME": "H01380" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05175787121735, + 38.89464615671381, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/29/07

Report Problem", + "NAME": "H01381" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0297996572156, + 38.97585854426577, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H01382" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.10872595112201, + 38.92708115180884, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 09/20/07

Report Problem", + "NAME": "H01383" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9881627126412, + 38.87759875373104, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 05/03/07

Report Problem", + "NAME": "H01384" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.10021213247848, + 38.923678229601464, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H01385" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0326625962599, + 38.92797885373859, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, CLOW - EDDY

In Service


Last Inspection Date: 09/14/07

Report Problem", + "NAME": "H01386" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98667823527371, + 38.862458652900116, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H01387" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98841498850794, + 38.92776683344535, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/17/07

Report Problem", + "NAME": "H01388" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06751739223722, + 38.96393841520778, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H01389" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98543660046072, + 38.8987607726603, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/02/07

Report Problem", + "NAME": "H01390" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01766936490385, + 38.93786092176164, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, CLOW - EDDY

In Service


Last Inspection Date: 05/29/07

Report Problem", + "NAME": "H01391" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98837354402993, + 38.899661982894166, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/02/07

Report Problem", + "NAME": "H01392" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98913303378683, + 38.88835697740303, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 05/09/06

Report Problem", + "NAME": "H01393" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02745507755345, + 38.92776620063168, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/12/07

Report Problem", + "NAME": "H01394" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99443397184977, + 38.898861261364594, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 05/10/07

Report Problem", + "NAME": "H01395" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9901654964023, + 38.900029102983225, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 05/28/07

Report Problem", + "NAME": "H01396" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01854680747583, + 38.97476716305724, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H01397" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01962004333944, + 38.976781011630656, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H01398" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03177395654339, + 38.916337256100114, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/13/07

Report Problem", + "NAME": "H01399" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0678677568178, + 38.91561253275963, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 08/10/07

Report Problem", + "NAME": "H01400" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06800519709321, + 38.91474776968932, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 10/15/07

Report Problem", + "NAME": "H01401" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03361769494192, + 38.95932557120131, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H01402" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02977407831762, + 38.91635310596354, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 07/16/07

Report Problem", + "NAME": "H01403" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01700160878998, + 38.976991349302246, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H01404" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04160161471164, + 38.8944693271625, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 09/18/07

Report Problem", + "NAME": "H01405" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01391879717032, + 38.974665435911255, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H01406" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01368355595714, + 38.97284008956856, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H01407" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02020450656448, + 38.93127801018239, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 07/18/07

Report Problem", + "NAME": "H01408" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01175073838544, + 38.97005024179373, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/19/07

Report Problem", + "NAME": "H01409" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99257141262353, + 38.88614869848065, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H01410" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98537502061258, + 38.88665823573472, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 04/26/06

Report Problem", + "NAME": "H01411" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04149447307101, + 38.896122202421914, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 05/24/07

Report Problem", + "NAME": "H01412" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9865526989882, + 38.88546701889877, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 08/24/07

Report Problem", + "NAME": "H01413" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99708234145746, + 38.92747465510347, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Kennedy

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H01414" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99141696145851, + 38.88030415020904, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 01/26/08

Report Problem", + "NAME": "H01415" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0457781695096, + 38.90126963768948, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 05/20/07

Report Problem", + "NAME": "H01416" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98967469590805, + 38.8630668262699, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Eddy

In Service


Last Inspection Date: 06/05/07

Report Problem", + "NAME": "H01417" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99504747482258, + 38.890813160068454, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 10/23/06

Report Problem", + "NAME": "H01418" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0477808291248, + 38.899622882481616, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 06/13/07

Report Problem", + "NAME": "H01419" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0281554579527, + 38.90869507724731, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 10/30/06

Report Problem", + "NAME": "H01420" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04543979651389, + 38.92229459652637, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 10/16/06

Report Problem", + "NAME": "H01421" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04657078787338, + 38.92243387037017, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 12/29/06

Report Problem", + "NAME": "H01422" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99036555788003, + 38.892765405265465, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 05/30/07

Report Problem", + "NAME": "H01423" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.982151279978, + 38.890805730653256, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 04/11/06

Report Problem", + "NAME": "H01424" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0403422861527, + 38.93051964544143, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 09/20/07

Report Problem", + "NAME": "H01425" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04009472547922, + 38.911072152937386, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/13/07

Report Problem", + "NAME": "H01426" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99030917706406, + 38.889132206660484, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 09/10/07

Report Problem", + "NAME": "H01427" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.027212265686, + 38.95616568010513, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 08/01/07

Report Problem", + "NAME": "H01428" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04014765030604, + 38.93149791561874, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, CLOW - EDDY

In Service


Last Inspection Date: 09/20/07

Report Problem", + "NAME": "H01429" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02594020312957, + 38.92789592407714, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/12/07

Report Problem", + "NAME": "H01430" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0685070340173, + 38.91656352092913, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H01431" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01603118828567, + 38.911065924355206, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/11/07

Report Problem", + "NAME": "H01432" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01714105631734, + 38.93895454434028, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, CLOW - EDDY

In Service


Last Inspection Date: 08/09/07

Report Problem", + "NAME": "H01433" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01222852584014, + 38.911976280582394, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/12/07

Report Problem", + "NAME": "H01434" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07193166667204, + 38.95905565895274, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H01435" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02287358707981, + 38.90193504952017, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Clow Eddy

In Service


Last Inspection Date: 08/15/07

Report Problem", + "NAME": "H01436" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03623161021987, + 38.91117416399947, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/23/07

Report Problem", + "NAME": "H01437" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04285327470741, + 38.932412550168074, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 05/16/07

Report Problem", + "NAME": "H01438" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06508381575985, + 38.912530904838825, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, KENNEDY-K81-A/D GUAR

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H01439" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98785773286018, + 38.86001891428376, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/04/07

Report Problem", + "NAME": "H01440" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06952060676896, + 38.90592663689438, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 10/16/07

Report Problem", + "NAME": "H01441" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07032642117252, + 38.9063900216502, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/02/07

Report Problem", + "NAME": "H01442" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03810283796157, + 38.93113988933674, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 09/21/07

Report Problem", + "NAME": "H01443" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02250461193911, + 38.89972571342753, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H01444" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98766571357488, + 38.906478567488165, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Eddy

In Service


Last Inspection Date: 06/01/07

Report Problem", + "NAME": "H01445" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98565706299972, + 38.925759736308656, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 07/30/07

Report Problem", + "NAME": "H01446" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06975740648444, + 38.90676611908557, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/02/07

Report Problem", + "NAME": "H01447" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9874357466905, + 38.885298471310634, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 02/19/08

Report Problem", + "NAME": "H01123" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03473479504007, + 38.920474182194575, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H01124" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04567648666824, + 38.90711725152424, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 11/08/07

Report Problem", + "NAME": "H01125" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07868683580811, + 38.95837812952171, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/15/07

Report Problem", + "NAME": "H01126" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03675846776675, + 38.91266183485176, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H01127" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07587085633425, + 38.95149599785176, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US Pipe, AP Smith

In Service


Last Inspection Date: 06/18/07

Report Problem", + "NAME": "H01128" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03259602579837, + 38.947119484482364, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 07/18/07

Report Problem", + "NAME": "H01129" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07476646354421, + 38.95145080318647, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/18/07

Report Problem", + "NAME": "H01130" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99965037822234, + 38.902456070358866, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, CLOW - EDDY

In Service


Last Inspection Date: 08/25/07

Report Problem", + "NAME": "H01131" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07879088009778, + 38.95706111429798, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/15/07

Report Problem", + "NAME": "H01132" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0772445172896, + 38.957059632852044, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H01133" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04039977163417, + 38.9176016410672, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/13/07

Report Problem", + "NAME": "H01135" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0465816679434, + 38.909501934854696, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/23/07

Report Problem", + "NAME": "H01137" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08018948214726, + 38.962096934343755, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/15/07

Report Problem", + "NAME": "H01138" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0403901572071, + 38.9266663234115, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/05/07

Report Problem", + "NAME": "H01139" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0198398537631, + 38.972249861467375, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H01140" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02165721981245, + 38.94102544074561, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/06/07

Report Problem", + "NAME": "H01141" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06222469940626, + 38.93001324432045, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 01/17/07

Report Problem", + "NAME": "H01142" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97495691352685, + 38.9301968243122, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/27/07

Report Problem", + "NAME": "H01143" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0122352301828, + 38.894868237489746, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H01144" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00638766883195, + 38.916939887977165, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 03/09/08

Report Problem", + "NAME": "H01145" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04183924980079, + 38.917033141238356, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H01146" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99369724074582, + 38.87471310962728, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 10/18/06

Report Problem", + "NAME": "H01147" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0335235866018, + 38.95720290975613, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 07/20/07

Report Problem", + "NAME": "H01148" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06649099215244, + 38.96317058138602, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H01149" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03255845293785, + 38.941763277017365, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 09/12/07

Report Problem", + "NAME": "H01150" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01676337231363, + 38.97516410969956, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H01151" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06789833588407, + 38.964845523718665, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Clow Eddy, Eddy

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H01152" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98272481650363, + 38.931021761135625, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Eddy

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H01153" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02983768153747, + 38.93969515006549, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, KENNEDY-K81-A/D GUAR

In Service


Last Inspection Date: 05/20/07

Report Problem", + "NAME": "H01154" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07105401617015, + 38.93257813652327, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H01155" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07265460464963, + 38.960340303320436, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Clow Eddy, Eddy

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H01156" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07152155648814, + 38.96034250626626, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Clow

In Service


Last Inspection Date: 06/15/07

Report Problem", + "NAME": "H01157" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98226869040252, + 38.92814320456875, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 07/30/07

Report Problem", + "NAME": "H01158" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97086276404467, + 38.93183369374606, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/04/07

Report Problem", + "NAME": "H01159" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00637904618965, + 38.916323196105964, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 06/01/07

Report Problem", + "NAME": "H01160" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98584076213282, + 38.88132798724272, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 05/17/06

Report Problem", + "NAME": "H01161" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98535587196963, + 38.89543760439186, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 07/19/07

Report Problem", + "NAME": "H01162" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02312111282507, + 38.907297077756155, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 07/01/07

Report Problem", + "NAME": "H01163" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98558064267291, + 38.87908510053281, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 11/10/07

Report Problem", + "NAME": "H01164" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07230236585579, + 38.959718168041576, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 10/15/07

Report Problem", + "NAME": "H01165" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05461672845477, + 38.905334994871545, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/11/07

Report Problem", + "NAME": "H01166" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0634239168755, + 38.930336952928, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 01/19/07

Report Problem", + "NAME": "H01167" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98621570565703, + 38.93170632479768, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H01168" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01410263400096, + 38.90131034779346, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/02/07

Report Problem", + "NAME": "H01169" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93391721844836, + 38.910376899938775, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 05/28/07

Report Problem", + "NAME": "H01170" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01909284938064, + 38.90258566337233, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/12/07

Report Problem", + "NAME": "H01171" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00055198441164, + 38.84303053977152, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 10/10/07

Report Problem", + "NAME": "H01172" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00897242916314, + 38.86935816038689, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 03/04/08

Report Problem", + "NAME": "H01173" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02480931418043, + 38.9408791952257, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 05/29/07

Report Problem", + "NAME": "H01175" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03557587351888, + 38.92637909951481, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 04/18/07

Report Problem", + "NAME": "H01176" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98240755930101, + 38.94248111496923, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H01177" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02124245809424, + 38.9357085600342, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 10/09/07

Report Problem", + "NAME": "H01178" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02315500183269, + 38.908624027409545, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/12/07

Report Problem", + "NAME": "H01179" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03319232066133, + 38.91327003726308, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/13/07

Report Problem", + "NAME": "H01180" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03493483747779, + 38.900358800888, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/05/07

Report Problem", + "NAME": "H01181" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02614239499393, + 38.96618006798379, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H01182" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03793220575525, + 38.90038004469125, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H01183" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07445316348512, + 38.930970190502315, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H01184" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00909971517954, + 38.95774390271903, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H01185" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05489072470027, + 38.90432689490299, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Kennedy

In Service


Last Inspection Date: 06/11/07

Report Problem", + "NAME": "H01186" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02784014951384, + 38.93073856373892, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, KENNEDY-K81-A/D GUAR

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H01187" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02788007461147, + 38.92975825203883, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 09/14/07

Report Problem", + "NAME": "H01188" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06117406151326, + 38.907724570368615, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 07/02/07

Report Problem", + "NAME": "H01189" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99837130275425, + 38.891918040481904, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 05/17/07

Report Problem", + "NAME": "H01190" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05927040113191, + 38.907753135151125, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 11/03/07

Report Problem", + "NAME": "H01191" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00444872914262, + 38.84185591699355, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H01192" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9737266148885, + 38.89829202979229, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 05/29/07

Report Problem", + "NAME": "H01193" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02685264669319, + 38.908630658975376, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Kennedy

In Service


Last Inspection Date: 06/08/07

Report Problem", + "NAME": "H01194" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01777337435135, + 38.91941778497078, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 09/04/06

Report Problem", + "NAME": "H01195" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99381590740627, + 38.90034454669514, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 08/27/07

Report Problem", + "NAME": "H01196" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02508851743735, + 38.919222331969785, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/21/06

Report Problem", + "NAME": "H01197" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02078822973674, + 38.92016996021241, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 09/18/07

Report Problem", + "NAME": "H01198" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02686166102042, + 38.90140080684872, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Clow Eddy

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H01199" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99172116576136, + 38.88972662482251, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/02/07

Report Problem", + "NAME": "H01200" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07077388651813, + 38.92366107484999, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H01201" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01209387625892, + 38.901432248879416, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H01202" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00714956660148, + 38.90259231066718, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H01203" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00188687256431, + 38.91486989650086, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H01204" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0643494441716, + 38.908747852407146, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 03/05/08

Report Problem", + "NAME": "H01205" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05714097454265, + 38.907572110254456, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H01206" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00064527452604, + 38.914154089657, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 10/25/07

Report Problem", + "NAME": "H01207" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98845944682753, + 38.9383852947033, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US Pipe

In Service


Last Inspection Date: 03/04/08

Report Problem", + "NAME": "H01208" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02156351393934, + 38.91414938120975, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "null

In Service


Last Inspection Date: 06/13/07

Report Problem", + "NAME": "H01209" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00065274414288, + 38.881164746906826, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 11/01/06

Report Problem", + "NAME": "H01210" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03661030143252, + 38.914251321398666, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 09/12/07

Report Problem", + "NAME": "H01211" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0034386848095, + 38.890029819232915, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H01213" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98530275963574, + 38.9017303251402, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, KENNEDY-K81-A/D GUAR

In Service


Last Inspection Date: 09/24/07

Report Problem", + "NAME": "H01214" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02612713971628, + 38.90571409180324, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 05/30/07

Report Problem", + "NAME": "H01215" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98095121523569, + 38.93210621172763, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H01216" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0340216318606, + 38.920503903273044, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H01217" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09434450959813, + 38.949827305338744, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 11/13/07

Report Problem", + "NAME": "H01218" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02328979617391, + 38.94305691931498, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 08/20/07

Report Problem", + "NAME": "H01219" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08192767614064, + 38.958065388702295, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/15/07

Report Problem", + "NAME": "H01220" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00425559178476, + 38.877579610775015, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 09/21/07

Report Problem", + "NAME": "H01221" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99859496410137, + 38.88872951141116, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/04/07

Report Problem", + "NAME": "H01222" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04412538918903, + 38.93336255208931, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 09/18/07

Report Problem", + "NAME": "H01223" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04509550026437, + 38.89962279685093, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 11/07/07

Report Problem", + "NAME": "H01224" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00494192480275, + 38.911008716725306, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 03/06/08

Report Problem", + "NAME": "H01225" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04757451242816, + 38.92828599002464, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 11/09/06

Report Problem", + "NAME": "H01226" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04873063157197, + 38.92961008685809, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 01/11/06

Report Problem", + "NAME": "H01227" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04528224830476, + 38.93318976273631, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 09/20/07

Report Problem", + "NAME": "H01228" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04548743333663, + 38.91777328080344, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 10/25/06

Report Problem", + "NAME": "H01229" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03945081564946, + 38.92602743220156, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 10/19/06

Report Problem", + "NAME": "H01230" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98765131463672, + 38.90647231417365, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 09/22/06

Report Problem", + "NAME": "H01231" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03450378388636, + 38.92154557464372, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 03/06/08

Report Problem", + "NAME": "H01233" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03332386123981, + 38.92161640720116, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H01234" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03252860777019, + 38.957326964329766, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 12/27/07

Report Problem", + "NAME": "H01235" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01052210812912, + 38.897954057398934, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 12/06/07

Report Problem", + "NAME": "H01236" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0241095690236, + 38.88030765237457, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H01237" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00596570977216, + 38.90457944856012, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/13/07

Report Problem", + "NAME": "H01238" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0228721051199, + 38.88041442548278, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, CLOW - EDDY

In Service


Last Inspection Date: 11/18/07

Report Problem", + "NAME": "H01239" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02295620712553, + 38.88329230054347, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H01240" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01884216381268, + 38.900768025034445, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/02/07

Report Problem", + "NAME": "H01241" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02205276216445, + 38.88035901030967, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H01242" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02342470883548, + 38.879366189702964, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H01243" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02285954294592, + 38.878508108208116, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H01244" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01436844599127, + 38.91694288159885, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/11/07

Report Problem", + "NAME": "H01245" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06421035163879, + 38.91369220270595, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 07/02/07

Report Problem", + "NAME": "H01246" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00049953651703, + 38.89214420592811, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/27/07

Report Problem", + "NAME": "H01247" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03075271432112, + 38.980322539438426, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H01248" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0297649329638, + 38.97950786625973, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H01249" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97912292411009, + 38.86938286232804, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 08/04/07

Report Problem", + "NAME": "H01250" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97524297336714, + 38.92141320039317, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, SUP CENT 250

In Service


Last Inspection Date: 08/02/07

Report Problem", + "NAME": "H01251" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04149196848284, + 38.91117984628575, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/12/07

Report Problem", + "NAME": "H01252" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98158591364003, + 38.8996206356333, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/02/07

Report Problem", + "NAME": "H01253" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99161932714492, + 38.885914172920906, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 11/03/06

Report Problem", + "NAME": "H01254" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03681986525778, + 38.91042635981995, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/15/07

Report Problem", + "NAME": "H01255" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03622395785315, + 38.91190762544506, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/13/07

Report Problem", + "NAME": "H01256" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01372016991348, + 38.90713612142087, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/15/07

Report Problem", + "NAME": "H01257" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0415012735067, + 38.909575349081145, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 02/08/08

Report Problem", + "NAME": "H01258" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01878975284264, + 38.9057013231001, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/12/07

Report Problem", + "NAME": "H01259" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99278668745065, + 38.89727609599099, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 05/13/07

Report Problem", + "NAME": "H01308" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01168605099308, + 38.89716571504747, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H01309" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99382396376973, + 38.901431513499695, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H01310" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99610176250134, + 38.89719134983101, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 07/02/07

Report Problem", + "NAME": "H01311" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98689393974941, + 38.8986078751824, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/02/07

Report Problem", + "NAME": "H01312" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01101709229322, + 38.90967841836587, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/12/07

Report Problem", + "NAME": "H01313" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04670628539925, + 38.90711369146798, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/12/07

Report Problem", + "NAME": "H01314" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02591361058987, + 38.90232301719525, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 10/22/07

Report Problem", + "NAME": "H01315" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9850216760369, + 38.868276877879424, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 06/05/07

Report Problem", + "NAME": "H01316" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02576997642896, + 38.9036002443928, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 05/30/07

Report Problem", + "NAME": "H01317" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02612844088057, + 38.904230389114375, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 10/10/07

Report Problem", + "NAME": "H01318" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99609186327798, + 38.92953965544233, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H01319" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99606522675055, + 38.930500732997814, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H01320" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02511049571578, + 38.90245347140325, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H01321" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01606063786096, + 38.908514649565234, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 08/09/07

Report Problem", + "NAME": "H01322" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0268485835777, + 38.9057083700895, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 07/23/07

Report Problem", + "NAME": "H01323" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00335618698145, + 38.921349104023456, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 07/09/07

Report Problem", + "NAME": "H01324" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0210386702432, + 38.90969574494479, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H01325" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06330793988118, + 38.90765662770343, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/02/07

Report Problem", + "NAME": "H01326" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99516617438064, + 38.88132275492173, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 11/04/06

Report Problem", + "NAME": "H01327" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98376480920346, + 38.86478025729087, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H01328" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00569804183291, + 38.87758217975662, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 09/21/07

Report Problem", + "NAME": "H01329" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01013313215834, + 38.83154843890562, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H01330" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01210408995168, + 38.87085599362729, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H01331" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01210158760601, + 38.87193295754201, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US PIPE-MET 250 M94

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H01332" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00379167621217, + 38.87422273786634, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H01333" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99478659119877, + 38.89727545466726, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 05/30/07

Report Problem", + "NAME": "H01334" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07144880328613, + 38.9631444878158, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H01335" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07032797254784, + 38.91550556330122, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, KENNEDY-K81-A/D GUAR

In Service


Last Inspection Date: 09/14/07

Report Problem", + "NAME": "H01336" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03105081083292, + 38.90735687453357, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 05/30/07

Report Problem", + "NAME": "H01337" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99170695159191, + 38.879331346061655, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 03/10/08

Report Problem", + "NAME": "H01338" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0241186677307, + 38.90729411953351, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 09/11/07

Report Problem", + "NAME": "H01340" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01462896278859, + 38.919240144312646, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/09/07

Report Problem", + "NAME": "H01341" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03861932187694, + 38.914919246299405, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/13/07

Report Problem", + "NAME": "H01342" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00582141317908, + 38.88267767938914, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 11/05/06

Report Problem", + "NAME": "H01343" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98090178865581, + 38.86607543205955, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 09/21/07

Report Problem", + "NAME": "H01344" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04492837694538, + 38.91422924939429, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, American Darling

In Service


Last Inspection Date: 01/31/08

Report Problem", + "NAME": "H01345" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0274274232013, + 38.952954480004486, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/17/07

Report Problem", + "NAME": "H01518" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02789213881012, + 38.95608858931455, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 08/01/07

Report Problem", + "NAME": "H01519" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99368965796253, + 38.902339962934875, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 08/27/07

Report Problem", + "NAME": "H01521" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06780453741156, + 38.912753953630855, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 08/13/07

Report Problem", + "NAME": "H01522" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04567623773461, + 38.92140182451452, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 10/30/06

Report Problem", + "NAME": "H01523" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0020985503904, + 38.89367958370827, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/27/07

Report Problem", + "NAME": "H01524" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04352071452138, + 38.90648749904412, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H01525" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07100721219906, + 38.91268027278722, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/02/07

Report Problem", + "NAME": "H01526" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06654512384404, + 38.913794014809426, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/17/07

Report Problem", + "NAME": "H01527" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0955303256683, + 38.95047605547877, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/04/07

Report Problem", + "NAME": "H01528" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06510588263896, + 38.96499800906057, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Eddy

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H01530" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02241726103647, + 38.95536863764007, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 08/01/07

Report Problem", + "NAME": "H01531" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02409937696957, + 38.95529958796547, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 08/01/07

Report Problem", + "NAME": "H01532" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00058364348007, + 38.87462519412972, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H01533" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09681477779233, + 38.950921485142054, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/05/07

Report Problem", + "NAME": "H01534" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0021005442548, + 38.903847121925295, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Kennedy

In Service


Last Inspection Date: 06/12/07

Report Problem", + "NAME": "H01535" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99623492443291, + 38.88399116829376, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 10/24/06

Report Problem", + "NAME": "H01536" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00049911119648, + 38.903845788489654, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 01/03/08

Report Problem", + "NAME": "H01537" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01236060524063, + 38.89728325880814, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 09/27/07

Report Problem", + "NAME": "H01538" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01071561323114, + 38.87215737514364, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP SMITH - O'BRIEN

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H01539" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09873186521835, + 38.94875397605435, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton, DC

In Service


Last Inspection Date: 06/04/07

Report Problem", + "NAME": "H01540" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04141639967317, + 38.9332376163356, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 10/30/07

Report Problem", + "NAME": "H01541" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09671370542131, + 38.94801224556935, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 12/17/07

Report Problem", + "NAME": "H01542" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03536159660199, + 38.92555740791575, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H01543" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02598165209017, + 38.95739610139378, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 09/11/07

Report Problem", + "NAME": "H01544" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99009071713085, + 38.93825695907212, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H01545" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00290255506258, + 38.87743150920006, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H01546" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00067179956181, + 38.91712571332078, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H01547" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99031025293468, + 38.9401095599963, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H01548" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0333796739256, + 38.97645537229134, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H01549" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01233725589168, + 38.907182434403545, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H01550" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01884370145609, + 38.903141212983364, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 03/05/08

Report Problem", + "NAME": "H01551" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98896120106119, + 38.88916657111018, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 05/09/06

Report Problem", + "NAME": "H01552" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99957221375871, + 38.8833366519562, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H01553" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0690804055293, + 38.90682454411589, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/02/07

Report Problem", + "NAME": "H01554" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9814253514975, + 38.934058657717664, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H01555" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9953382742684, + 38.94367918676709, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Kennedy

In Service


Last Inspection Date: 08/06/07

Report Problem", + "NAME": "H01556" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99359393078423, + 38.88404347308606, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 10/25/06

Report Problem", + "NAME": "H01557" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99143299235081, + 38.8849150668084, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 10/25/06

Report Problem", + "NAME": "H01558" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06915341289559, + 38.91371385746126, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H01559" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02720670463127, + 38.9126397755058, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 05/12/07

Report Problem", + "NAME": "H01560" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02056219793224, + 38.9325948449953, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 05/28/07

Report Problem", + "NAME": "H01561" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08312317562422, + 38.90975480338903, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 10/26/07

Report Problem", + "NAME": "H01562" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08371159178213, + 38.91055534233563, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/11/07

Report Problem", + "NAME": "H01563" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9938219439826, + 38.897464925569054, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 05/30/07

Report Problem", + "NAME": "H01564" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97110493763128, + 38.92763022431628, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 07/27/07

Report Problem", + "NAME": "H01565" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99851730893323, + 38.8843887054874, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 10/24/06

Report Problem", + "NAME": "H01566" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04148024770123, + 38.92885314210014, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 09/19/07

Report Problem", + "NAME": "H01567" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99852600382933, + 38.88026352217019, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 11/05/06

Report Problem", + "NAME": "H01568" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99363750230991, + 38.88463700181735, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 11/03/06

Report Problem", + "NAME": "H01569" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99043377188606, + 38.88530823215247, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 10/25/06

Report Problem", + "NAME": "H01570" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00931126655631, + 38.909692547707586, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, U.S. Pipe

In Service


Last Inspection Date: 06/12/07

Report Problem", + "NAME": "H01571" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06898121262883, + 38.90876119043231, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 03/05/08

Report Problem", + "NAME": "H01572" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00188501310767, + 38.884216891798005, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 10/24/06

Report Problem", + "NAME": "H01573" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9868844925189, + 38.89738552951181, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 05/23/07

Report Problem", + "NAME": "H01574" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99016175015956, + 38.88247254138519, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 05/19/06

Report Problem", + "NAME": "H01575" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07123390078415, + 38.91365396335679, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/19/07

Report Problem", + "NAME": "H01576" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0602461882709, + 38.94210084378007, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 09/19/07

Report Problem", + "NAME": "H01577" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99625064538374, + 38.87828802115672, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 01/04/07

Report Problem", + "NAME": "H01578" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99624980266789, + 38.87743778192459, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 08/24/07

Report Problem", + "NAME": "H01579" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99623547593237, + 38.88140254554251, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H01580" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99968797875567, + 38.88268049053276, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H01581" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00926405122772, + 38.917052930055696, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AM FOUNDRY - O'BRIEN

In Service


Last Inspection Date: 05/30/07

Report Problem", + "NAME": "H01582" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97984169617975, + 38.88289318695628, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 09/21/07

Report Problem", + "NAME": "H01583" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98235973956673, + 38.88540169063197, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 04/12/06

Report Problem", + "NAME": "H01584" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98837626389289, + 38.89372389492191, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/02/07

Report Problem", + "NAME": "H01585" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9839675264306, + 38.897446170234154, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/02/07

Report Problem", + "NAME": "H01586" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99842278956955, + 38.88009714486881, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 11/05/06

Report Problem", + "NAME": "H01587" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03948068361906, + 38.91969359906079, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 09/26/07

Report Problem", + "NAME": "H01588" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99943936139965, + 38.84199978425332, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H01589" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9935939271112, + 38.8793346087374, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 04/27/07

Report Problem", + "NAME": "H01591" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99962958298268, + 38.87758511978389, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, KENNEDY

In Service


Last Inspection Date: 01/31/08

Report Problem", + "NAME": "H01593" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00286170999833, + 38.96042850262832, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H01594" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0678138123935, + 38.913644098299166, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 10/15/07

Report Problem", + "NAME": "H01595" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0518080392284, + 38.909584313657874, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/12/07

Report Problem", + "NAME": "H01596" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05718846155007, + 38.90945253428917, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 09/10/07

Report Problem", + "NAME": "H01597" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05299033329835, + 38.9095371472348, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H01598" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0122494174769, + 38.91492462588635, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/13/07

Report Problem", + "NAME": "H01599" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98961525573564, + 38.865421908806205, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 09/24/07

Report Problem", + "NAME": "H01600" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05571815897147, + 38.90929308533062, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 02/29/08

Report Problem", + "NAME": "H01601" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99011971597042, + 38.86383704827926, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/05/07

Report Problem", + "NAME": "H01602" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05470388491976, + 38.90929950111312, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 02/29/08

Report Problem", + "NAME": "H01603" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98884673718555, + 38.8637690191821, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Eddy

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H01604" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99044467093604, + 38.924499493826936, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 07/31/07

Report Problem", + "NAME": "H01605" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97947198591969, + 38.93023592681651, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H01606" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02092132873568, + 38.93401612939577, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 05/28/07

Report Problem", + "NAME": "H01607" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03731907659451, + 38.93469192756191, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 05/19/07

Report Problem", + "NAME": "H01608" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04378624701876, + 38.916896366047325, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 08/13/07

Report Problem", + "NAME": "H01609" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06280619517617, + 38.90674540672929, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/11/07

Report Problem", + "NAME": "H01610" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0821058647827, + 38.96092171128651, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Eddy

In Service


Last Inspection Date: 06/15/07

Report Problem", + "NAME": "H01611" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04161027006936, + 38.92602856602167, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 10/23/06

Report Problem", + "NAME": "H01613" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99963606126447, + 38.91570978512348, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, CLOW - EDDY

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H01614" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01860301895802, + 38.915703998866434, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Eddy

In Service


Last Inspection Date: 06/12/07

Report Problem", + "NAME": "H01615" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99942711977184, + 38.89188235926396, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 09/27/07

Report Problem", + "NAME": "H01616" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01839824472057, + 38.94194151157028, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H01617" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0652346086041, + 38.96406529508177, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H01618" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97602629784772, + 38.92456238445846, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 09/18/07

Report Problem", + "NAME": "H01619" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02815428136125, + 38.908693627187326, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 01/28/08

Report Problem", + "NAME": "H01620" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0020932818363, + 38.91565783390171, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H01621" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01609708374991, + 38.91597748558224, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 06/12/07

Report Problem", + "NAME": "H01622" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06628873779425, + 38.965914897735864, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H01623" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99754224124091, + 38.87757968947337, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 11/07/06

Report Problem", + "NAME": "H01624" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05815809586969, + 38.90536133769514, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/11/07

Report Problem", + "NAME": "H01625" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98559181125505, + 38.8834748174605, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 05/29/07

Report Problem", + "NAME": "H01626" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01343665674496, + 38.91921949627376, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, KENNEDY-K81-A/D GUAR

In Service


Last Inspection Date: 05/11/07

Report Problem", + "NAME": "H01628" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0228856126337, + 38.97592565451223, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 08/08/07

Report Problem", + "NAME": "H01629" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02406031726679, + 38.933576812023766, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, KENNEDY-K81-A/D GUAR

In Service


Last Inspection Date: 05/23/07

Report Problem", + "NAME": "H01630" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02349781538757, + 38.93212029267016, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 01/14/08

Report Problem", + "NAME": "H01631" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00344978674075, + 38.90007968759085, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H01632" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02277224553906, + 38.9734544217227, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 11/07/07

Report Problem", + "NAME": "H01633" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03227323060923, + 38.97858822714868, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H01634" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00350796264058, + 38.90040712165783, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H01635" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98818090200267, + 38.88161270536892, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 05/19/06

Report Problem", + "NAME": "H01636" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04464049479556, + 38.91516828052712, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/13/07

Report Problem", + "NAME": "H01637" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99257925214359, + 38.90231029622669, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 08/23/07

Report Problem", + "NAME": "H01638" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03866248906964, + 38.91561490064216, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/13/07

Report Problem", + "NAME": "H01639" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0147127635705, + 38.97347072110241, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H01640" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99030703075263, + 38.90145175964172, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 08/23/07

Report Problem", + "NAME": "H01641" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98372060626748, + 38.87984535346194, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 01/03/07

Report Problem", + "NAME": "H01642" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9890179385195, + 38.866823635069444, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/05/07

Report Problem", + "NAME": "H01643" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00209494120463, + 38.90266791057591, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 02/29/08

Report Problem", + "NAME": "H01644" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00050923388295, + 38.90551495478924, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 10/15/07

Report Problem", + "NAME": "H01645" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99358700004944, + 38.86190175083163, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 07/09/07

Report Problem", + "NAME": "H01646" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03669851533915, + 38.91329864410307, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/13/07

Report Problem", + "NAME": "H01647" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03141139200164, + 38.93764673802807, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 12/20/07

Report Problem", + "NAME": "H01648" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04181785151341, + 38.91255484420992, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/20/07

Report Problem", + "NAME": "H01649" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.040616215472, + 38.90720560938269, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/11/07

Report Problem", + "NAME": "H01650" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0092781651967, + 38.91412868891223, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/12/07

Report Problem", + "NAME": "H01651" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9964824502806, + 38.90662949691347, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H01652" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03238185715058, + 38.92960817506793, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AM DARLING - B-62-B

In Service


Last Inspection Date: 09/20/07

Report Problem", + "NAME": "H01653" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9838104851095, + 38.89606749956819, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, U.S. Pipe

In Service


Last Inspection Date: 06/02/07

Report Problem", + "NAME": "H01654" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98582869823747, + 38.908877299695675, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 07/23/07

Report Problem", + "NAME": "H01655" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98850646594799, + 38.86730598621084, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 11/20/07

Report Problem", + "NAME": "H01656" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99165354597353, + 38.87558253505564, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 11/10/06

Report Problem", + "NAME": "H01657" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00047229707197, + 38.930250187145035, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, CLOW - EDDY

In Service


Last Inspection Date: 07/21/07

Report Problem", + "NAME": "H01658" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04086712878322, + 38.92034553244864, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 10/19/07

Report Problem", + "NAME": "H01659" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0590875411829, + 38.93639204093927, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 03/04/08

Report Problem", + "NAME": "H01660" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01080171742977, + 38.874587995820605, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 12/05/07

Report Problem", + "NAME": "H01661" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98930821390543, + 38.893488712372125, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/02/07

Report Problem", + "NAME": "H01662" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01272994122674, + 38.97376000089939, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H01663" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99515073499892, + 38.88380247473194, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US PIPE-A P SMITH

In Service


Last Inspection Date: 02/12/07

Report Problem", + "NAME": "H01664" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98839456341526, + 38.90119883785697, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 05/14/07

Report Problem", + "NAME": "H01665" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0504940339849, + 38.91115494400008, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/11/07

Report Problem", + "NAME": "H01666" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99224758580772, + 38.86285853465458, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/05/07

Report Problem", + "NAME": "H01667" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05590409721444, + 38.908614911314615, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H01668" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98085018080076, + 38.86714016373777, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H01669" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98544401354457, + 38.89107440268359, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 04/27/06

Report Problem", + "NAME": "H01670" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06392701985482, + 38.96852383870974, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 07/27/07

Report Problem", + "NAME": "H01671" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02314908783872, + 38.91562444483965, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/04/07

Report Problem", + "NAME": "H01672" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9904199285925, + 38.89896275958963, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/02/07

Report Problem", + "NAME": "H01673" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93532007028486, + 38.90367575230827, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H01674" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99851865020891, + 38.8814059749635, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 11/05/06

Report Problem", + "NAME": "H01675" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01463410352588, + 38.91922930665154, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/01/07

Report Problem", + "NAME": "H01676" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03104693028325, + 38.959230479260086, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H01677" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02880711752908, + 38.90260248137471, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 05/29/07

Report Problem", + "NAME": "H01678" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02768141129852, + 38.93978066482626, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 09/25/07

Report Problem", + "NAME": "H01679" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99032460467033, + 38.88356892955696, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 11/21/06

Report Problem", + "NAME": "H01680" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03311777717754, + 38.91913055527483, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H01681" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98879754423108, + 38.9362495686159, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H01682" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04463791145075, + 38.918538893049295, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 08/16/07

Report Problem", + "NAME": "H01683" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02338545407048, + 38.94424293111497, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US PIPE-MET 250 M94

In Service


Last Inspection Date: 08/14/07

Report Problem", + "NAME": "H01684" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04027301163535, + 38.91821549441331, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 06/13/07

Report Problem", + "NAME": "H01685" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05158199029682, + 38.916938370608754, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H01686" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0242392252846, + 38.95742266262686, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 11/10/07

Report Problem", + "NAME": "H01687" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02758828649648, + 38.954133228144876, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 11/08/07

Report Problem", + "NAME": "H01688" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00217981715464, + 38.89896795153512, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H01689" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98356323265779, + 38.89080491992413, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Kennedy

In Service


Last Inspection Date: 04/27/06

Report Problem", + "NAME": "H01690" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98591239779688, + 38.891626430115, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 05/01/06

Report Problem", + "NAME": "H01691" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97641848751596, + 38.932187955212115, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H01692" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98555804638181, + 38.88880316235764, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 11/28/06

Report Problem", + "NAME": "H01741" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06145874622113, + 38.90919606953275, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/02/07

Report Problem", + "NAME": "H01448" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0252835385952, + 38.90186447681956, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H01449" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9409504710135, + 38.902987216402806, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H01450" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05588370239457, + 38.907792143714126, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/11/07

Report Problem", + "NAME": "H01451" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00196807735378, + 38.844064648949136, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H01452" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06300048113162, + 38.95801187242621, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Clow Eddy, Eddy

In Service


Last Inspection Date: 06/15/07

Report Problem", + "NAME": "H01453" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93541109231491, + 38.90916086104742, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 11/07/07

Report Problem", + "NAME": "H01454" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9330719310103, + 38.91097668076586, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H01455" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0465688244757, + 38.908461052730786, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 12/21/07

Report Problem", + "NAME": "H01456" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03215344820053, + 38.91922815957348, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 08/22/07

Report Problem", + "NAME": "H01457" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93760682389885, + 38.90378677173962, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H01458" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.990191068769, + 38.87770765500455, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 12/13/06

Report Problem", + "NAME": "H01459" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93861266755245, + 38.91045656364813, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/29/07

Report Problem", + "NAME": "H01460" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98559254732817, + 38.882683439895004, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 10/29/07

Report Problem", + "NAME": "H01461" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99030880157443, + 38.90233385795482, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 05/18/07

Report Problem", + "NAME": "H01462" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0098343368453, + 38.87247878238873, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H01463" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01744729481824, + 38.91594407805688, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/12/07

Report Problem", + "NAME": "H01464" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01775579797457, + 38.90259492762752, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 09/07/07

Report Problem", + "NAME": "H01465" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06156712025975, + 38.94980910219059, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H01466" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0618047284287, + 38.947928408616704, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 07/02/07

Report Problem", + "NAME": "H01467" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99487732893802, + 38.89001247044877, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, KENNEDY-K81-A/D GUAR

In Service


Last Inspection Date: 07/17/07

Report Problem", + "NAME": "H01468" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99730583940168, + 38.88363997902216, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/12/07

Report Problem", + "NAME": "H01469" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06630842048075, + 38.93260052726264, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 01/19/07

Report Problem", + "NAME": "H01470" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02025374635168, + 38.93653103105635, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 05/29/07

Report Problem", + "NAME": "H01471" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03209738207916, + 38.910310085602454, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H01472" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99142988978875, + 38.8877155828476, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 11/03/06

Report Problem", + "NAME": "H01473" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03305131392158, + 38.90853778835916, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US PIPE-MET 250 M94

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H01474" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9973608676341, + 38.889729861158415, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 01/04/07

Report Problem", + "NAME": "H01475" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05323701371535, + 38.90711424031508, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/11/07

Report Problem", + "NAME": "H01477" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9819868861212, + 38.88637716933428, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Kennedy

In Service


Last Inspection Date: 09/12/07

Report Problem", + "NAME": "H01478" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03436773063687, + 38.90730305792679, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H01479" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03216384956264, + 38.90728829916347, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H01480" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0173588432685, + 38.91680087367197, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 02/06/08

Report Problem", + "NAME": "H01481" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00367207498614, + 38.885997707352466, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Kennedy

In Service


Last Inspection Date: 05/05/07

Report Problem", + "NAME": "H01483" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00211182581772, + 38.886149960591936, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 10/30/06

Report Problem", + "NAME": "H01484" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01733688731552, + 38.911910639121416, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/11/07

Report Problem", + "NAME": "H01485" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99391849974833, + 38.89896348055616, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 09/08/07

Report Problem", + "NAME": "H01486" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0188553812113, + 38.91356942449031, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/11/07

Report Problem", + "NAME": "H01487" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99831198273517, + 38.88277408488938, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 10/24/06

Report Problem", + "NAME": "H01488" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0007499462206, + 38.88545250336951, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 04/10/07

Report Problem", + "NAME": "H01489" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99601579046934, + 38.88972773308024, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 10/19/06

Report Problem", + "NAME": "H01490" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99944503019721, + 38.887738750187445, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/05/07

Report Problem", + "NAME": "H01491" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07104221290884, + 38.97120115281191, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 11/30/06

Report Problem", + "NAME": "H01492" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99851547849545, + 38.88539358152677, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 01/18/07

Report Problem", + "NAME": "H01493" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06603503188138, + 38.90672324051473, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/02/07

Report Problem", + "NAME": "H01494" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05245682870127, + 38.90346932779068, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/12/07

Report Problem", + "NAME": "H01495" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03545194335523, + 38.92472739919133, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 11/15/06

Report Problem", + "NAME": "H01496" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99632769954046, + 38.884332129561514, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 08/03/07

Report Problem", + "NAME": "H01497" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06257831798364, + 38.91180381409284, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 09/05/07

Report Problem", + "NAME": "H01498" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99514376059052, + 38.88873445459372, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/20/07

Report Problem", + "NAME": "H01499" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9950419148437, + 38.88805257022504, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 10/23/06

Report Problem", + "NAME": "H01500" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04565143323003, + 38.920735443366056, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 10/30/06

Report Problem", + "NAME": "H01501" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00343926714955, + 38.89469758757336, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/27/07

Report Problem", + "NAME": "H01502" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99391865698045, + 38.888735045837784, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 11/03/06

Report Problem", + "NAME": "H01503" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05335318705667, + 38.90451426023783, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 08/25/07

Report Problem", + "NAME": "H01504" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99393597916979, + 38.88753745502592, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 11/03/06

Report Problem", + "NAME": "H01505" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99270997605161, + 38.888646109020634, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 11/03/06

Report Problem", + "NAME": "H01506" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06870236760626, + 38.93803800620132, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 03/07/07

Report Problem", + "NAME": "H01507" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99270820337266, + 38.88772058821946, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 07/23/07

Report Problem", + "NAME": "H01508" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00073257337448, + 38.89297914550857, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/27/07

Report Problem", + "NAME": "H01509" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0355609222617, + 38.90245711772961, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US Pipe

In Service


Last Inspection Date: 08/01/07

Report Problem", + "NAME": "H01510" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98289219661815, + 38.93299818097305, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H01511" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9685425609785, + 38.897471573424184, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 04/07/06

Report Problem", + "NAME": "H01512" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9996748344389, + 38.88132912433841, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 09/13/07

Report Problem", + "NAME": "H01513" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02719927989881, + 38.904206272588084, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Kennedy

In Service


Last Inspection Date: 05/29/07

Report Problem", + "NAME": "H01514" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0189908436443, + 38.908689170103735, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/12/07

Report Problem", + "NAME": "H01515" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06407254292458, + 38.912052391189455, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 09/28/07

Report Problem", + "NAME": "H01516" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02505430258562, + 38.94504972759686, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 08/08/07

Report Problem", + "NAME": "H01517" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06039152533941, + 38.9093334808122, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/02/07

Report Problem", + "NAME": "H01850" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97785622069829, + 38.93021024643721, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/27/07

Report Problem", + "NAME": "H01851" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0332139179715, + 38.91817451912744, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/13/07

Report Problem", + "NAME": "H01852" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05717167514447, + 38.90613091251988, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/12/07

Report Problem", + "NAME": "H01853" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98089132422619, + 38.924568046609465, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 12/26/07

Report Problem", + "NAME": "H01854" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0622164792347, + 38.907678698923924, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/02/07

Report Problem", + "NAME": "H01855" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0602993754585, + 38.90769162211388, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/02/07

Report Problem", + "NAME": "H01856" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01232262481422, + 38.91265285997377, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US Pipe

In Service


Last Inspection Date: 06/12/07

Report Problem", + "NAME": "H01857" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02535176137408, + 38.9530433016341, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 08/03/07

Report Problem", + "NAME": "H01858" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0058108588899, + 38.88993176824665, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/27/07

Report Problem", + "NAME": "H01859" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99145585127567, + 38.9003830708077, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/02/07

Report Problem", + "NAME": "H01860" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98088103413968, + 38.92350539658201, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, KENNEDY-K81-A/D GUAR

In Service


Last Inspection Date: 08/04/07

Report Problem", + "NAME": "H01861" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0269717159178, + 38.97150832641371, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 12/17/07

Report Problem", + "NAME": "H01862" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02580375634906, + 38.97151591365617, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H01863" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98940855269164, + 38.9397200983521, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H01864" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06477350896394, + 38.90984603268693, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 03/05/08

Report Problem", + "NAME": "H01865" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06124231051363, + 38.91292842955008, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/02/07

Report Problem", + "NAME": "H01866" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04159549952469, + 38.91341931866978, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 07/20/07

Report Problem", + "NAME": "H01867" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98379593497012, + 38.88871910825257, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 04/12/06

Report Problem", + "NAME": "H01868" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00513059425955, + 38.88189960337566, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 01/11/07

Report Problem", + "NAME": "H01869" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00358762274463, + 38.88206614496601, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 11/05/06

Report Problem", + "NAME": "H01870" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0318245077414, + 38.89664690243558, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US Pipe

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H01871" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05824451324324, + 38.90945039111792, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 10/29/07

Report Problem", + "NAME": "H01872" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99145166591357, + 38.9023121469502, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 08/23/07

Report Problem", + "NAME": "H01873" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0028388564693, + 38.87360474365964, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H01874" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98605448122952, + 38.92681269430606, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/31/07

Report Problem", + "NAME": "H01875" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99270873681986, + 38.88994461223659, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H01876" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04145694480034, + 38.92332740407147, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 09/13/07

Report Problem", + "NAME": "H01877" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03113418085866, + 38.97487143513596, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H01878" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99487569648804, + 38.88032330683026, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 08/09/07

Report Problem", + "NAME": "H01879" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.029472874992, + 38.89725265625571, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, CLOW - EDDY

In Service


Last Inspection Date: 06/01/07

Report Problem", + "NAME": "H01881" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97004062530067, + 38.9331694445616, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 08/08/07

Report Problem", + "NAME": "H01882" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0297324801001, + 38.89667228068078, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Clow Eddy

In Service


Last Inspection Date: 06/01/07

Report Problem", + "NAME": "H01883" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05002459084795, + 38.90171992692369, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 05/23/07

Report Problem", + "NAME": "H01884" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03504160592487, + 38.89825747880135, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 08/15/07

Report Problem", + "NAME": "H01885" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06879026425989, + 38.94794144234897, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/15/07

Report Problem", + "NAME": "H01886" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.072346848523, + 38.94799181370046, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/05/07

Report Problem", + "NAME": "H01887" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03892445470994, + 38.92981087502163, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 09/12/07

Report Problem", + "NAME": "H01888" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06613676820224, + 38.90769519284809, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/02/07

Report Problem", + "NAME": "H01889" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00617798867312, + 38.95672016053897, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 10/16/07

Report Problem", + "NAME": "H01890" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04484937503277, + 38.89844994893373, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 05/22/07

Report Problem", + "NAME": "H01891" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06396843394204, + 38.965952295138834, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H01892" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99148225497008, + 38.924293157451906, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US PIPE-A P SMITH

In Service


Last Inspection Date: 07/16/07

Report Problem", + "NAME": "H01893" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99982505781792, + 38.92191004630571, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H01894" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99868239497337, + 38.92225162557698, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H01895" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99777707152788, + 38.92179213337697, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/30/07

Report Problem", + "NAME": "H01896" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9992888319281, + 38.92193248400389, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H01897" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99879730365795, + 38.92190006803476, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H01898" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99911010773754, + 38.921433827069045, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H01899" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99873029528702, + 38.92175795202872, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H01900" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99960481882547, + 38.92089776246244, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H01901" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03435818337549, + 38.947272183671885, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 07/18/07

Report Problem", + "NAME": "H01902" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98837569630015, + 38.89720733984544, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 08/27/07

Report Problem", + "NAME": "H01903" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04861245289136, + 38.90969894882585, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/11/07

Report Problem", + "NAME": "H01904" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02679224709911, + 38.97368104572896, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 07/30/07

Report Problem", + "NAME": "H01905" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04064247054069, + 38.8944022641965, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/21/07

Report Problem", + "NAME": "H01906" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01020448988793, + 38.90462482756334, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 07/13/07

Report Problem", + "NAME": "H01907" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04338169655762, + 38.89327761107908, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 05/24/07

Report Problem", + "NAME": "H01908" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0742103828715, + 38.96211350255284, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H01909" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0260827944744, + 38.943631436496986, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 08/15/07

Report Problem", + "NAME": "H01910" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99132732892684, + 38.90137541294538, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/02/07

Report Problem", + "NAME": "H01911" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02458611557088, + 38.97238652469149, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H01912" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01797587275935, + 38.86720615679607, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/05/07

Report Problem", + "NAME": "H01913" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03134659772964, + 38.93873443502276, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US PIPE-A P SMITH

In Service


Last Inspection Date: 05/11/07

Report Problem", + "NAME": "H01914" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94761786452838, + 38.89678359993288, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/01/07

Report Problem", + "NAME": "H01916" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02974706121714, + 38.9063171279233, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 05/30/07

Report Problem", + "NAME": "H01917" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9868983556459, + 38.9025585089257, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 11/17/07

Report Problem", + "NAME": "H01918" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04354314655554, + 38.89843568741387, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H01919" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99264416900115, + 38.934512551328595, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H01920" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06627516633826, + 38.96853111631547, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 07/09/07

Report Problem", + "NAME": "H01921" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04659164435708, + 38.898457707894785, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 05/29/07

Report Problem", + "NAME": "H01922" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93400654713926, + 38.89749714758739, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, KENNEDY-K81-A/D GUAR

In Service


Last Inspection Date: 05/28/07

Report Problem", + "NAME": "H01923" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97689820662369, + 38.87277938652282, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/27/07

Report Problem", + "NAME": "H01924" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93400044348896, + 38.896306868765635, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/08/07

Report Problem", + "NAME": "H01925" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97776244312972, + 38.873377775189276, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 08/27/07

Report Problem", + "NAME": "H01926" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02712039889688, + 38.935437194072975, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H01927" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02806366613426, + 38.976607809693945, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/05/07

Report Problem", + "NAME": "H01928" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01798537138136, + 38.86621513105002, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/05/07

Report Problem", + "NAME": "H01929" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01797769847835, + 38.86800404935802, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/05/07

Report Problem", + "NAME": "H01930" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01798120182136, + 38.8689658405201, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/05/07

Report Problem", + "NAME": "H01931" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01705934825965, + 38.8714278229092, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/05/07

Report Problem", + "NAME": "H01933" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01610090793427, + 38.87152401559676, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/05/07

Report Problem", + "NAME": "H01934" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06250962803557, + 38.970866729736045, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H01936" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01550779831753, + 38.941036318439814, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Clow

In Service


Last Inspection Date: 05/09/07

Report Problem", + "NAME": "H01937" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03872020073588, + 38.920203184302636, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 08/03/07

Report Problem", + "NAME": "H01938" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09692567097349, + 38.92029652794114, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H01939" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04167670249105, + 38.89200103397282, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US PIPE-MET 250 M94

In Service


Last Inspection Date: 05/21/07

Report Problem", + "NAME": "H01940" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04481085480157, + 38.89280739314633, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/17/07

Report Problem", + "NAME": "H01941" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02379837562194, + 38.91415217239058, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 10/04/06

Report Problem", + "NAME": "H01942" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03804254767822, + 38.89840065586897, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/29/07

Report Problem", + "NAME": "H01943" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00196548993681, + 38.8981980287612, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H01944" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02988570926301, + 38.937625680312635, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 05/11/07

Report Problem", + "NAME": "H01945" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04484579513982, + 38.89200357173687, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 01/18/08

Report Problem", + "NAME": "H01946" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06171684803618, + 38.96983451822597, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 07/27/07

Report Problem", + "NAME": "H01947" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03446375381101, + 38.94816742238717, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 08/02/07

Report Problem", + "NAME": "H01948" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02415678949772, + 38.90223849892884, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Eddy

In Service


Last Inspection Date: 06/01/07

Report Problem", + "NAME": "H01949" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07724705645342, + 38.959051241103374, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H01950" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03558397993368, + 38.9593324391487, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H01951" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99633103943574, + 38.890881716115125, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, CLOW - EDDY

In Service


Last Inspection Date: 11/15/06

Report Problem", + "NAME": "H01952" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06820555267512, + 38.95237791076059, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US Pipe, Metropolitan

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H01953" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02989213617779, + 38.93765873010822, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 12/19/07

Report Problem", + "NAME": "H01955" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01146173191339, + 38.95663922808497, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 10/02/07

Report Problem", + "NAME": "H01956" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92976861602617, + 38.90857786446685, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/18/07

Report Problem", + "NAME": "H01742" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97960349688758, + 38.865849677893586, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Kennedy

In Service


Last Inspection Date: 09/21/07

Report Problem", + "NAME": "H01743" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98214038896349, + 38.86634844781735, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H01744" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0382865914365, + 38.91413987353095, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 09/12/07

Report Problem", + "NAME": "H01745" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00919102208019, + 38.881592853048325, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H01746" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98990188132304, + 38.86484672875232, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/05/07

Report Problem", + "NAME": "H01747" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0593790325117, + 38.91132735701251, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP SMITH - O'BRIEN

In Service


Last Inspection Date: 07/02/07

Report Problem", + "NAME": "H01748" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97629651682679, + 38.93126630874895, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/10/07

Report Problem", + "NAME": "H01693" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99126011897111, + 38.923481410417075, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/31/07

Report Problem", + "NAME": "H01694" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97945729296129, + 38.92899429989975, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H01695" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99931490267937, + 38.89098449420409, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H01696" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05905675494256, + 38.90688313596674, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/11/07

Report Problem", + "NAME": "H01697" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9853380767704, + 38.89738515648231, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/02/07

Report Problem", + "NAME": "H01698" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0591719773263, + 38.90921613151359, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/02/07

Report Problem", + "NAME": "H01699" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02815495071376, + 38.91033090245102, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 07/12/07

Report Problem", + "NAME": "H01700" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.068710738805, + 38.93898066549607, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 02/28/08

Report Problem", + "NAME": "H01701" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93143174836734, + 38.90995544470618, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H01702" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01933902264206, + 38.93674221436258, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 05/29/07

Report Problem", + "NAME": "H01703" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04504845363036, + 38.91117769143819, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/11/07

Report Problem", + "NAME": "H01704" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93234362551028, + 38.909254271228384, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 05/28/07

Report Problem", + "NAME": "H01705" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01482342007958, + 38.906504150169596, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/12/07

Report Problem", + "NAME": "H01706" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97567735794388, + 38.91360690695947, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/02/07

Report Problem", + "NAME": "H01707" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98128214317224, + 38.90486482825957, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/01/07

Report Problem", + "NAME": "H01708" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02614179807715, + 38.96499315949469, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H01709" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01329290025585, + 38.916334541161135, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/11/07

Report Problem", + "NAME": "H01710" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00882098852348, + 38.91632729822233, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 12/26/07

Report Problem", + "NAME": "H01711" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03193287205347, + 38.92279570573727, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H01712" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02081041072563, + 38.91414449111245, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/12/07

Report Problem", + "NAME": "H01713" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0220454239246, + 38.92240978462876, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/10/07

Report Problem", + "NAME": "H01714" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01898916065501, + 38.9112455127532, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/11/07

Report Problem", + "NAME": "H01715" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02984784911241, + 38.92381123336725, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 08/22/06

Report Problem", + "NAME": "H01716" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01623699284768, + 38.89817688230593, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/02/07

Report Problem", + "NAME": "H01717" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99360088025216, + 38.890988428750404, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/09/07

Report Problem", + "NAME": "H01718" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98749322896427, + 38.86299081617016, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H01719" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99381692741477, + 38.89003968748024, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 07/16/07

Report Problem", + "NAME": "H01720" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02315645056777, + 38.9207572090482, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 05/21/06

Report Problem", + "NAME": "H01721" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04157670360637, + 38.897237390722054, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/24/07

Report Problem", + "NAME": "H01722" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98752701892724, + 38.88622558765701, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 05/09/06

Report Problem", + "NAME": "H01723" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98867660373392, + 38.86199177735186, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 08/20/07

Report Problem", + "NAME": "H01724" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02197854895691, + 38.918923683630304, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 09/04/06

Report Problem", + "NAME": "H01725" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03178121451911, + 38.90969863167442, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 02/08/08

Report Problem", + "NAME": "H01726" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99033929943232, + 38.86254535888564, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 01/29/07

Report Problem", + "NAME": "H01727" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02187457445666, + 38.94423363878941, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, KENNEDY-K81-A/D GUAR

In Service


Last Inspection Date: 08/08/07

Report Problem", + "NAME": "H01728" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03523981175577, + 38.93458136547237, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 05/19/07

Report Problem", + "NAME": "H01729" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02956965114083, + 38.9286806049776, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 12/14/07

Report Problem", + "NAME": "H01730" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02849317835151, + 38.92868458380273, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/12/07

Report Problem", + "NAME": "H01731" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00064273768592, + 38.90006509817616, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/02/07

Report Problem", + "NAME": "H01732" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98737467269434, + 38.866336492279935, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 09/24/07

Report Problem", + "NAME": "H01733" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0310766098877, + 38.92867694396942, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 05/21/07

Report Problem", + "NAME": "H01734" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98759348209485, + 38.86551920954452, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/02/07

Report Problem", + "NAME": "H01735" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98546542020551, + 38.866002292385495, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/05/07

Report Problem", + "NAME": "H01736" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02987316343312, + 38.924805799357166, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 02/21/08

Report Problem", + "NAME": "H01737" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0298257070451, + 38.97873317065002, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H01738" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02985042211048, + 38.925798008254326, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 09/26/07

Report Problem", + "NAME": "H01739" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98327833153981, + 38.866343508550926, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 08/13/07

Report Problem", + "NAME": "H01740" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99102237985707, + 38.86445555784137, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H01750" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97235675444279, + 38.92744092013259, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 08/07/07

Report Problem", + "NAME": "H01751" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99030866818313, + 38.88031989124227, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 04/02/07

Report Problem", + "NAME": "H01752" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01435948004561, + 38.94119315533904, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, CLOW - EDDY

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H01753" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00334741892169, + 38.914139269820616, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/27/07

Report Problem", + "NAME": "H01754" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05581931667132, + 38.9335525280332, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 12/27/06

Report Problem", + "NAME": "H01755" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05460063702039, + 38.900760433534494, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 05/25/07

Report Problem", + "NAME": "H01756" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99271094748451, + 38.88139402798187, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 12/21/06

Report Problem", + "NAME": "H01757" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01243189517508, + 38.94340228048384, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H01758" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02208569774297, + 38.93225498997437, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, KENNEDY-K81-A/D GUAR

In Service


Last Inspection Date: 06/18/07

Report Problem", + "NAME": "H01759" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99042888376694, + 38.8860902583415, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 11/03/06

Report Problem", + "NAME": "H01760" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02415949102253, + 38.90286254313056, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/01/07

Report Problem", + "NAME": "H01761" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98579318734639, + 38.884158623541, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 04/26/06

Report Problem", + "NAME": "H01762" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02415720017746, + 38.9342250384963, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 09/10/07

Report Problem", + "NAME": "H01763" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98449555039457, + 38.88066005157696, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 05/19/06

Report Problem", + "NAME": "H01764" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03590754984333, + 38.95301969099706, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 07/13/07

Report Problem", + "NAME": "H01765" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08079387968955, + 38.95954337955969, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US Pipe, AP Smith

In Service


Last Inspection Date: 06/15/07

Report Problem", + "NAME": "H01766" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.988235093205, + 38.8842013695676, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 09/25/07

Report Problem", + "NAME": "H01767" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02327670558091, + 38.93066181097579, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 08/05/06

Report Problem", + "NAME": "H01768" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01478458201592, + 38.971768299917585, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H01769" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02372150034742, + 38.92402762104677, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/09/07

Report Problem", + "NAME": "H01770" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01810874646442, + 38.963901213169635, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H01771" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02940662632399, + 38.92046683432597, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Clow Eddy

In Service


Last Inspection Date: 07/28/06

Report Problem", + "NAME": "H01772" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0251099712243, + 38.931977959509766, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 05/29/07

Report Problem", + "NAME": "H01773" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.001971040758, + 38.88213993509908, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 11/01/06

Report Problem", + "NAME": "H01774" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98837083938878, + 38.89624021944037, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/02/07

Report Problem", + "NAME": "H01775" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02309552131985, + 38.91264953366015, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/11/07

Report Problem", + "NAME": "H01776" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04146652309007, + 38.91786544568448, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/15/07

Report Problem", + "NAME": "H01777" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05748839146487, + 38.905041332156635, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/16/07

Report Problem", + "NAME": "H01778" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05696950857094, + 38.905045405866815, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/21/07

Report Problem", + "NAME": "H01779" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03419582418493, + 38.92352850494571, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H01780" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03329955797464, + 38.91691137369946, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/13/07

Report Problem", + "NAME": "H01781" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04484088422257, + 38.9231799585808, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 10/04/07

Report Problem", + "NAME": "H01782" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06625495525927, + 38.966824452628245, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 07/06/07

Report Problem", + "NAME": "H01783" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02839211462425, + 38.933633619282936, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 09/12/07

Report Problem", + "NAME": "H01784" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03639679107833, + 38.92098413310898, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 12/30/07

Report Problem", + "NAME": "H01785" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04012784887098, + 38.91633496516215, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/18/07

Report Problem", + "NAME": "H01786" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04187520368419, + 38.90650767554856, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/11/07

Report Problem", + "NAME": "H01787" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07505225108544, + 38.923931285599444, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H01788" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07045504315604, + 38.90873804235577, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/02/07

Report Problem", + "NAME": "H01789" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02818228393636, + 38.903200653366774, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 03/06/08

Report Problem", + "NAME": "H01790" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00641922111252, + 38.95771883045707, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, KENNEDY-K81-A/D GUAR

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H01791" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04511345157735, + 38.910307982999875, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/11/07

Report Problem", + "NAME": "H01792" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03019786070082, + 38.97512259590143, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H01793" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99776044340963, + 38.84429362970075, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/02/07

Report Problem", + "NAME": "H01794" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06399174013431, + 38.966823578102954, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H01795" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02410257265424, + 38.95622049318288, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, KENNEDY-K81-A/D GUAR

In Service


Last Inspection Date: 08/01/07

Report Problem", + "NAME": "H01796" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06115852518168, + 38.93590083404151, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 01/22/07

Report Problem", + "NAME": "H01797" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94444218399751, + 38.89911008306193, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 11/07/07

Report Problem", + "NAME": "H01972" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01086682128313, + 38.89489738875106, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H01973" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03929272849666, + 38.897855191099325, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AM DARLING - B-84-B

In Service


Last Inspection Date: 06/08/07

Report Problem", + "NAME": "H01974" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03806984520564, + 38.89710340669015, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/29/07

Report Problem", + "NAME": "H01975" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03953962276367, + 38.89555083118579, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP SMITH - O'BRIEN

In Service


Last Inspection Date: 05/21/07

Report Problem", + "NAME": "H01976" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04032859305796, + 38.89537942953278, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 05/21/07

Report Problem", + "NAME": "H01977" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01624339659615, + 38.89744278998546, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/02/07

Report Problem", + "NAME": "H01978" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01737935850149, + 38.89726565722163, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 12/05/07

Report Problem", + "NAME": "H01979" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01033217717854, + 38.95527463542399, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H01980" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0241099502249, + 38.968685535140374, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 12/13/07

Report Problem", + "NAME": "H01981" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07406856195156, + 38.93330919886083, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H01982" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0171408395714, + 38.941123497818865, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Clow

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H01983" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01395599170118, + 38.943318772806364, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H01984" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03800659703973, + 38.921929710850165, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 08/03/07

Report Problem", + "NAME": "H01985" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98208976511503, + 38.881793602285335, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 04/26/06

Report Problem", + "NAME": "H01986" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01894711050141, + 38.93997732834983, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 05/16/07

Report Problem", + "NAME": "H01987" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04002101013288, + 38.916920957774074, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/18/07

Report Problem", + "NAME": "H01798" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06720276007067, + 38.95064992078573, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H01799" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04103208040618, + 38.912558464883155, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/13/07

Report Problem", + "NAME": "H01800" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03181558436431, + 38.91396265687283, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 01/21/08

Report Problem", + "NAME": "H01801" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.065320343352, + 38.90601839653121, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/02/07

Report Problem", + "NAME": "H01803" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07149826210423, + 38.91879901133891, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H01804" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07217549581509, + 38.91982867047362, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H01805" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00478879383267, + 38.886087480461576, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 10/20/06

Report Problem", + "NAME": "H01806" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0708132847522, + 38.931864743574515, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 03/19/07

Report Problem", + "NAME": "H01807" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03131578962383, + 38.90572644589639, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/27/07

Report Problem", + "NAME": "H01808" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03097885825605, + 38.931996612778406, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP SMITH - O'BRIEN

In Service


Last Inspection Date: 09/21/07

Report Problem", + "NAME": "H01809" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03309565150168, + 38.91414229688326, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/13/07

Report Problem", + "NAME": "H01810" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03127004213245, + 38.92971084826277, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, CLOW - EDDY

In Service


Last Inspection Date: 09/20/07

Report Problem", + "NAME": "H01811" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00670710879972, + 38.91189781493135, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 08/22/07

Report Problem", + "NAME": "H01812" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07905049903106, + 38.96492906715615, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/13/07

Report Problem", + "NAME": "H01813" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01196553285081, + 38.92027865697532, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 05/30/07

Report Problem", + "NAME": "H01814" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02279259670462, + 38.92736326116371, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 08/05/06

Report Problem", + "NAME": "H01815" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99967679539412, + 38.919125176433404, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US PIPE-MET 250 M94

In Service


Last Inspection Date: 07/01/07

Report Problem", + "NAME": "H01816" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99958477011847, + 38.878501066031305, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, KENNEDY-K81-A/D GUAR

In Service


Last Inspection Date: 11/01/06

Report Problem", + "NAME": "H01817" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06124336428864, + 38.905065052907304, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/11/07

Report Problem", + "NAME": "H01818" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02316957659161, + 38.93464453885302, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 05/15/07

Report Problem", + "NAME": "H01819" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99270839765217, + 38.89213538543092, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 07/11/07

Report Problem", + "NAME": "H01820" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0339084088944, + 38.92269694049385, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 08/21/06

Report Problem", + "NAME": "H01821" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0261409505151, + 38.91923833428273, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 05/21/06

Report Problem", + "NAME": "H01822" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06923906129792, + 38.954298181932046, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H01823" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99858876829653, + 38.90244276602723, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 08/24/07

Report Problem", + "NAME": "H01824" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98350380920732, + 38.88972234819578, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 04/27/06

Report Problem", + "NAME": "H01825" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05820771527544, + 38.907775172336834, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 07/07/07

Report Problem", + "NAME": "H01826" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02793926322623, + 38.957340681573775, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 09/11/07

Report Problem", + "NAME": "H01827" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0258570564964, + 38.95525867525521, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 08/01/07

Report Problem", + "NAME": "H01828" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99018014684331, + 38.89049600077135, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 11/16/06

Report Problem", + "NAME": "H01829" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.065264301912, + 38.95336004996607, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H01830" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0670459301452, + 38.953343781818, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 09/27/07

Report Problem", + "NAME": "H01831" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06861667535924, + 38.95335077074285, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H01832" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02378484169348, + 38.90970057814971, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Kennedy

In Service


Last Inspection Date: 06/11/07

Report Problem", + "NAME": "H01833" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99915785875653, + 38.8434462057367, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H01834" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01743864110124, + 38.89988754984979, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/02/07

Report Problem", + "NAME": "H01835" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06033812666197, + 38.93823540071663, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 01/22/07

Report Problem", + "NAME": "H01836" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98844561612165, + 38.89896154504042, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/02/07

Report Problem", + "NAME": "H01837" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03151968812, + 38.935978678414585, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 05/20/07

Report Problem", + "NAME": "H01838" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03258178715464, + 38.936183163829355, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 09/13/07

Report Problem", + "NAME": "H01839" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02574074476824, + 38.97370788321005, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H01840" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01222780408037, + 38.90648857794735, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/12/07

Report Problem", + "NAME": "H01841" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01498364604944, + 38.90729186466856, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, U.S. Pipe

In Service


Last Inspection Date: 06/12/07

Report Problem", + "NAME": "H01842" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04160393396809, + 38.91028632308658, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/13/07

Report Problem", + "NAME": "H01843" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99851452205687, + 38.90033090913208, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 08/24/07

Report Problem", + "NAME": "H01844" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03829260606062, + 38.91340171943609, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H01845" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99852832272505, + 38.90361785996193, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H01846" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99827666184842, + 38.9050159706863, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 01/03/08

Report Problem", + "NAME": "H01847" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99125600076194, + 38.92198715484397, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AM DARLING - B-84-B

In Service


Last Inspection Date: 07/31/07

Report Problem", + "NAME": "H01848" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99031378513881, + 38.92166728509103, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/31/07

Report Problem", + "NAME": "H01849" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03631031632304, + 38.91636513053023, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 10/17/07

Report Problem", + "NAME": "H02201" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03631506896545, + 38.91478377912791, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/13/07

Report Problem", + "NAME": "H02202" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05024781612903, + 38.896187435987926, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 05/23/07

Report Problem", + "NAME": "H02203" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05029103184319, + 38.89837693634458, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, KENNEDY-K81-A/D GUAR

In Service


Last Inspection Date: 06/13/07

Report Problem", + "NAME": "H02204" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05274064035815, + 38.916344339398904, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/11/07

Report Problem", + "NAME": "H02205" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04896351569671, + 38.89741147045287, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 05/29/07

Report Problem", + "NAME": "H02206" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01710996095403, + 38.94304666379311, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H02207" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05090695816087, + 38.902900694397125, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 10/30/07

Report Problem", + "NAME": "H02208" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.031307803453, + 38.9551947712948, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 07/31/07

Report Problem", + "NAME": "H02209" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02961568808855, + 38.95502686569453, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 08/01/07

Report Problem", + "NAME": "H02210" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02711253603198, + 38.91930960298251, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 05/21/06

Report Problem", + "NAME": "H02211" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03640918755977, + 38.92035176283157, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 08/02/07

Report Problem", + "NAME": "H02021" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00762120200532, + 38.92136660505803, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H02022" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93278514187459, + 38.90071614801195, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 10/12/07

Report Problem", + "NAME": "H02023" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0639088091822, + 38.967724168792934, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller, Centurion

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H02024" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9865231920158, + 38.892793761859885, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/02/07

Report Problem", + "NAME": "H02025" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97029850248663, + 38.924562528435814, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 08/21/07

Report Problem", + "NAME": "H02026" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0363957525363, + 38.924100850732934, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 10/28/06

Report Problem", + "NAME": "H02028" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03890313068506, + 38.923216596967656, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 08/29/07

Report Problem", + "NAME": "H02029" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02371843552692, + 38.94615620532793, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 08/20/07

Report Problem", + "NAME": "H02030" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0251190942851, + 38.94625229235325, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, CLOW - EDDY

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H02031" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95976169469112, + 38.88267940593603, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/27/07

Report Problem", + "NAME": "H02032" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0403209075553, + 38.92316371498957, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 10/16/06

Report Problem", + "NAME": "H02033" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02791881707249, + 38.961194797764165, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H02034" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97799390592007, + 38.932179992831124, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/10/07

Report Problem", + "NAME": "H02035" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97814440691053, + 38.931196133866045, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/10/07

Report Problem", + "NAME": "H02036" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07477676683689, + 38.94714093883515, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/04/07

Report Problem", + "NAME": "H02037" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03472560380943, + 38.91561818182411, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 09/20/07

Report Problem", + "NAME": "H02038" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06648448520178, + 38.9381858087151, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 02/29/08

Report Problem", + "NAME": "H02039" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01375746415471, + 38.9661773705575, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H02040" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01860847798358, + 38.94409470203794, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/06/07

Report Problem", + "NAME": "H02041" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01604122221272, + 38.96618846599088, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H02042" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02740139650898, + 38.95070423788856, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US PIPE-MET 250 M94

In Service


Last Inspection Date: 08/13/07

Report Problem", + "NAME": "H02043" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0073339718771, + 38.91632205907361, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 06/01/07

Report Problem", + "NAME": "H02044" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0717352739266, + 38.94623056694789, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/04/07

Report Problem", + "NAME": "H02045" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03249570494033, + 38.94088218462271, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 09/11/07

Report Problem", + "NAME": "H02046" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02799132687733, + 38.90385847120674, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Clow Eddy

In Service


Last Inspection Date: 03/06/08

Report Problem", + "NAME": "H02047" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02440035145413, + 38.97371624193505, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 11/07/07

Report Problem", + "NAME": "H02048" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0272025847413, + 38.949028186655774, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 08/13/07

Report Problem", + "NAME": "H02049" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02805792591415, + 38.958395385388215, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H02050" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04283632585633, + 38.91971254175975, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 08/16/07

Report Problem", + "NAME": "H02051" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02165365747527, + 38.97824966013551, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 08/08/07

Report Problem", + "NAME": "H02052" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03652476029528, + 38.943888141926635, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 08/11/07

Report Problem", + "NAME": "H02053" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07449684718694, + 38.94964388803114, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 07/10/07

Report Problem", + "NAME": "H02054" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99959130326096, + 38.84050973345047, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H02055" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99168475000235, + 38.89727239238158, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 05/30/07

Report Problem", + "NAME": "H02056" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98358277442742, + 38.89213999947586, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 10/01/06

Report Problem", + "NAME": "H02057" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06581360425771, + 38.903391094750354, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 08/29/07

Report Problem", + "NAME": "H02058" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03767408103673, + 38.92684424392952, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 10/19/06

Report Problem", + "NAME": "H02059" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00071474302833, + 38.89087894292024, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/27/07

Report Problem", + "NAME": "H02060" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0893077075887, + 38.91397769329134, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H02061" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04303475872973, + 38.933338780457895, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP SMITH - O'BRIEN

In Service


Last Inspection Date: 09/21/07

Report Problem", + "NAME": "H02062" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02841464778555, + 38.95072893090878, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AM DARLING - B-62-B

In Service


Last Inspection Date: 08/07/07

Report Problem", + "NAME": "H02063" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00702920739757, + 38.88971816676756, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/02/07

Report Problem", + "NAME": "H02068" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.11068097615896, + 38.92982224140037, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Kennedy, K81A

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H02070" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93546440677869, + 38.89761458434923, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/02/07

Report Problem", + "NAME": "H02071" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01279298893496, + 38.970053987944816, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/23/07

Report Problem", + "NAME": "H02072" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01886411973993, + 38.97594601026155, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H02073" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01510427761703, + 38.91121076684343, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/11/07

Report Problem", + "NAME": "H02074" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0258433151407, + 38.89743849331662, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 08/29/07

Report Problem", + "NAME": "H02075" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96363594637835, + 38.92982781557876, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/27/07

Report Problem", + "NAME": "H02076" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03124248541948, + 38.9758425654708, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H02077" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03313102750121, + 38.97584890997978, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H02078" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0306355303094, + 38.89744309121334, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 09/25/07

Report Problem", + "NAME": "H02079" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01443393948755, + 38.915792554597964, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/12/07

Report Problem", + "NAME": "H02080" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98624009700451, + 38.90332648549664, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/01/07

Report Problem", + "NAME": "H02081" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04355951281299, + 38.9004501398706, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 05/30/07

Report Problem", + "NAME": "H02082" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02380855600049, + 38.912663830912344, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/11/07

Report Problem", + "NAME": "H02083" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02871534096461, + 38.90066186080205, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Clow Eddy

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H02084" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03075254648903, + 38.918162103708404, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/13/07

Report Problem", + "NAME": "H02085" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03181528597833, + 38.907917402405666, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 05/30/07

Report Problem", + "NAME": "H02086" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03361447407345, + 38.900705208311415, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/01/07

Report Problem", + "NAME": "H02087" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0561510368247, + 38.92123790355169, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Eddy

In Service


Last Inspection Date: 01/08/07

Report Problem", + "NAME": "H02088" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03393058018769, + 38.898790354085925, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H02089" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03211219285566, + 38.89880036289175, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US Pipe

In Service


Last Inspection Date: 06/01/07

Report Problem", + "NAME": "H02090" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0122386304132, + 38.89661328362694, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/27/07

Report Problem", + "NAME": "H02091" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01325012836391, + 38.90147950741581, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/16/07

Report Problem", + "NAME": "H02092" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04117485780813, + 38.9252185482281, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 10/16/06

Report Problem", + "NAME": "H02093" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04646969315603, + 38.91191167494785, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/11/07

Report Problem", + "NAME": "H02094" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02413662584776, + 38.95106142388892, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US PIPE-MET 250 M94

In Service


Last Inspection Date: 08/13/07

Report Problem", + "NAME": "H02095" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05700782847092, + 38.90857645285621, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H02096" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05590996045036, + 38.90691662780565, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/11/07

Report Problem", + "NAME": "H02097" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0272324580154, + 38.91117676112862, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AM DARLING - B-62-B

In Service


Last Inspection Date: 07/23/07

Report Problem", + "NAME": "H02098" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05818038207765, + 38.90616766409246, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/11/07

Report Problem", + "NAME": "H02099" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0610946029378, + 38.90402570196853, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 10/31/07

Report Problem", + "NAME": "H02100" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04763197885745, + 38.9072899624411, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, American Darily

In Service


Last Inspection Date: 06/12/07

Report Problem", + "NAME": "H02101" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04865085994038, + 38.90638797807777, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 08/29/07

Report Problem", + "NAME": "H02102" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99031178879729, + 38.87855697638659, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 03/10/08

Report Problem", + "NAME": "H02103" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06533689590646, + 38.933402777603625, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 01/19/07

Report Problem", + "NAME": "H02104" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01396964136951, + 38.91302011575282, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/12/07

Report Problem", + "NAME": "H02105" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98837618739869, + 38.894900856166906, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 05/29/07

Report Problem", + "NAME": "H02106" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99271483725506, + 38.89488319058328, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 11/07/07

Report Problem", + "NAME": "H02107" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02436776089716, + 38.93746773926977, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 05/16/07

Report Problem", + "NAME": "H02108" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99151756995002, + 38.93958044371077, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 09/19/07

Report Problem", + "NAME": "H02109" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00668310530443, + 38.9126596604995, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H02110" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01509588956083, + 38.913199232576574, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/11/07

Report Problem", + "NAME": "H02111" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07302537132628, + 38.92356707506844, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, American Darling

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H02112" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0575723541407, + 38.92769173627025, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 01/09/07

Report Problem", + "NAME": "H02113" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02582720764399, + 38.95639859664712, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/19/07

Report Problem", + "NAME": "H02114" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03058637385794, + 38.91257550297117, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 05/18/07

Report Problem", + "NAME": "H02115" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0378605303757, + 38.93377852776354, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 05/19/07

Report Problem", + "NAME": "H02116" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03076176729697, + 38.91181686469185, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, KENNEDY-K81-A/D GUAR

In Service


Last Inspection Date: 06/10/07

Report Problem", + "NAME": "H02117" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0274564324348, + 38.96617803724361, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H02118" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03073133751631, + 38.91553218098514, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 11/01/07

Report Problem", + "NAME": "H02119" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02687525325523, + 38.97239092150284, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H02120" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0320867969527, + 38.91492174522641, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/13/07

Report Problem", + "NAME": "H02121" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03323907281033, + 38.914796720750026, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/13/07

Report Problem", + "NAME": "H02122" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02670878225192, + 38.97480224732966, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/30/07

Report Problem", + "NAME": "H02123" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08903221648488, + 38.91006626473149, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H02124" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03640515244933, + 38.91764286075749, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/13/07

Report Problem", + "NAME": "H02125" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00218748943851, + 38.921348672319816, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 07/05/07

Report Problem", + "NAME": "H02126" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98544126487761, + 38.89624057570366, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 01/03/08

Report Problem", + "NAME": "H02127" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03400089118982, + 38.93422699451916, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US PIPE-MET 250 M94

In Service


Last Inspection Date: 05/24/07

Report Problem", + "NAME": "H02128" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02960748865249, + 38.953951911276405, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 08/02/07

Report Problem", + "NAME": "H02129" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03657486154742, + 38.94969582787546, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 07/13/07

Report Problem", + "NAME": "H02130" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04364077262919, + 38.92669473808517, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 10/19/06

Report Problem", + "NAME": "H02131" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02955678141574, + 38.98043313542413, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H02132" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04288033549176, + 38.92887020300115, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 09/19/07

Report Problem", + "NAME": "H02133" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04400623305133, + 38.92975164408644, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 09/20/07

Report Problem", + "NAME": "H02134" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03865173289707, + 38.943000808381264, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 07/19/07

Report Problem", + "NAME": "H02135" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01703578605907, + 38.870428821330094, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/05/07

Report Problem", + "NAME": "H02136" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00604478727104, + 38.906490529810775, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/12/07

Report Problem", + "NAME": "H02137" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0182049262469, + 38.87078014386674, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/05/07

Report Problem", + "NAME": "H02138" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01878861433661, + 38.906500084559404, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/12/07

Report Problem", + "NAME": "H02139" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01878598317823, + 38.91191873882881, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/11/07

Report Problem", + "NAME": "H02140" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0387175452137, + 38.944941549684245, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 07/20/07

Report Problem", + "NAME": "H02141" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04162614917688, + 38.8967882521077, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 10/06/07

Report Problem", + "NAME": "H02142" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03635510774349, + 38.94836095988495, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US PIPE-MET 250 M94

In Service


Last Inspection Date: 07/17/07

Report Problem", + "NAME": "H02143" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99213385238693, + 38.93622897754184, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H02144" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04245885027528, + 38.897426555352695, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/15/07

Report Problem", + "NAME": "H02145" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07012749042492, + 38.93806974288582, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 02/27/08

Report Problem", + "NAME": "H02146" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03771620511618, + 38.958473355730874, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H02147" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05628748429913, + 38.92606582966359, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 01/09/07

Report Problem", + "NAME": "H02148" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0389526346283, + 38.94406995606748, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 09/13/07

Report Problem", + "NAME": "H02149" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03420260089324, + 38.93669585850738, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 05/17/07

Report Problem", + "NAME": "H02150" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08847030359233, + 38.954752361988504, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 11/14/07

Report Problem", + "NAME": "H02151" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08508726950372, + 38.95475162102491, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US Pipe, AP Smith

In Service


Last Inspection Date: 06/05/07

Report Problem", + "NAME": "H02152" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04324745320626, + 38.9118196576921, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/23/07

Report Problem", + "NAME": "H02153" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06890400781782, + 38.905977755219396, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 11/02/07

Report Problem", + "NAME": "H02154" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06998948725547, + 38.90595148124361, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/02/07

Report Problem", + "NAME": "H02155" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07139584191576, + 38.905910290901204, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 10/16/07

Report Problem", + "NAME": "H02156" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07149471587194, + 38.90770461271906, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 10/24/07

Report Problem", + "NAME": "H02157" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07197006315903, + 38.90577348908487, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/02/07

Report Problem", + "NAME": "H02158" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07039851059882, + 38.9077772370552, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 11/18/07

Report Problem", + "NAME": "H02159" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98815055134135, + 38.8784488745766, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 11/20/06

Report Problem", + "NAME": "H02160" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02989682974575, + 38.9451108456685, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US PIPE-MET 250 M94

In Service


Last Inspection Date: 08/09/07

Report Problem", + "NAME": "H02161" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06540582748619, + 38.90776099591915, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 08/30/07

Report Problem", + "NAME": "H02162" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06530586633363, + 38.90671493028031, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 10/26/07

Report Problem", + "NAME": "H02163" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06330966725282, + 38.90918708185487, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 08/31/07

Report Problem", + "NAME": "H02164" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06799228625695, + 38.90878857894755, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 10/22/07

Report Problem", + "NAME": "H02165" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09994051170968, + 38.91960020280701, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H02166" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98716697453132, + 38.89895685334767, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/02/07

Report Problem", + "NAME": "H02167" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06798400027944, + 38.91066751737259, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 08/07/07

Report Problem", + "NAME": "H02168" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02797789889527, + 38.97943563807483, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H02169" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02613887142148, + 38.96380903479555, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 09/18/07

Report Problem", + "NAME": "H02170" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01900918370542, + 38.896259979889884, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H02171" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01536407089658, + 38.90569403159171, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H02172" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08498011136442, + 38.94973727008438, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 12/07/07

Report Problem", + "NAME": "H02173" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0383050233257, + 38.91969029693658, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H02174" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07211013543095, + 38.92366007779364, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AM DARLING - B-62-B

In Service


Last Inspection Date: 07/08/07

Report Problem", + "NAME": "H02175" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07228108336108, + 38.949722452911836, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/18/07

Report Problem", + "NAME": "H02176" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07206835855597, + 38.92477052330977, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Clow

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H02177" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0686010738783, + 38.96592174351495, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 02/20/08

Report Problem", + "NAME": "H02179" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04887104317531, + 38.90190913123874, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 10/23/07

Report Problem", + "NAME": "H02212" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03476597403088, + 38.93530075715645, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 05/23/07

Report Problem", + "NAME": "H02213" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01025778048266, + 38.911065015407424, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 06/12/07

Report Problem", + "NAME": "H02214" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07129942389474, + 38.971976200252676, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/15/07

Report Problem", + "NAME": "H02215" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99837980466911, + 38.897210708559165, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/30/07

Report Problem", + "NAME": "H02216" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04726285980533, + 38.90794181221872, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/12/07

Report Problem", + "NAME": "H02217" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0472969765816, + 38.91265530573976, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/12/07

Report Problem", + "NAME": "H02218" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98942147352926, + 38.9036356051964, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 11/13/07

Report Problem", + "NAME": "H01957" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0631571534827, + 38.94318530156407, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 02/08/07

Report Problem", + "NAME": "H01958" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98902356187968, + 38.904507297697904, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 02/02/07

Report Problem", + "NAME": "H01959" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02757047573542, + 38.9649962454915, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 02/08/08

Report Problem", + "NAME": "H01960" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9945771025899, + 38.92283463384243, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 11/19/07

Report Problem", + "NAME": "H01961" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0385309248215, + 38.918007593046426, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/28/07

Report Problem", + "NAME": "H01962" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0411883523277, + 38.91192440297233, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 11/03/07

Report Problem", + "NAME": "H01963" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00043045788391, + 38.919257958827444, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, KENNEDY-K81-A/D GUAR

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H01964" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98862964483567, + 38.93074143457421, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H01965" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.040636396296, + 38.90029235783908, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 09/11/07

Report Problem", + "NAME": "H01966" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02157512765002, + 38.974838015796365, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 08/23/07

Report Problem", + "NAME": "H01967" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02803919716007, + 38.91128538206297, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 07/23/07

Report Problem", + "NAME": "H01968" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02253152430067, + 38.957483449624014, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 08/03/07

Report Problem", + "NAME": "H01969" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06653554269433, + 38.93633869104572, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 01/22/07

Report Problem", + "NAME": "H01970" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06869395979669, + 38.93639869889583, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 02/06/08

Report Problem", + "NAME": "H01971" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01152851233472, + 38.910429664761125, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/12/07

Report Problem", + "NAME": "H01988" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94089019499285, + 38.911214375772396, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 05/29/07

Report Problem", + "NAME": "H01989" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04138129021726, + 38.942992865530066, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 02/11/08

Report Problem", + "NAME": "H01990" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08025761988256, + 38.908573497441154, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H01991" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9942430741517, + 38.86293060932371, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 07/09/07

Report Problem", + "NAME": "H01992" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05135984983349, + 38.898448961626094, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H01993" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02982220409694, + 38.97802934999025, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 08/29/07

Report Problem", + "NAME": "H01994" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03181370793966, + 38.94966703374758, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 07/16/07

Report Problem", + "NAME": "H01995" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07475851651334, + 38.946326304443325, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H01996" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07711304159017, + 38.94716766205143, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/04/07

Report Problem", + "NAME": "H01997" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.967520986969, + 38.930954620042776, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 07/27/07

Report Problem", + "NAME": "H01998" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02248486873098, + 38.92684122591908, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 07/13/07

Report Problem", + "NAME": "H01999" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.036271452233, + 38.919143671935224, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/13/07

Report Problem", + "NAME": "H02000" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96646320438947, + 38.92463621475183, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/27/07

Report Problem", + "NAME": "H02001" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01616873388167, + 38.93900814710454, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H02002" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03660342018057, + 38.91569397232699, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/13/07

Report Problem", + "NAME": "H02003" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02515982000193, + 38.96996254732763, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 11/07/07

Report Problem", + "NAME": "H02004" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0375566625569, + 38.920811806185306, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 11/20/07

Report Problem", + "NAME": "H02005" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02256408737978, + 38.96996118526378, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 11/06/07

Report Problem", + "NAME": "H02006" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03875551766804, + 38.921490318110834, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 08/03/07

Report Problem", + "NAME": "H02007" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.11180658507733, + 38.93407922806082, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 08/29/07

Report Problem", + "NAME": "H02008" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98280708620482, + 38.93201242573101, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H02009" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03543304230105, + 38.947240234753686, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 07/18/07

Report Problem", + "NAME": "H02010" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07891400537676, + 38.959601874909225, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/15/07

Report Problem", + "NAME": "H02012" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02950880433558, + 38.95295467583174, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 08/03/07

Report Problem", + "NAME": "H02013" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0690084666058, + 38.966841137811286, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 09/13/07

Report Problem", + "NAME": "H02014" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03283045891598, + 38.93855793352463, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, CLOW - EDDY

In Service


Last Inspection Date: 09/13/07

Report Problem", + "NAME": "H02015" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99032363698532, + 38.89750333405455, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/02/07

Report Problem", + "NAME": "H02016" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0295067617474, + 38.957328846992304, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H02017" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02961941889164, + 38.95634217050676, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H02018" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02016868063262, + 38.94427192448788, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 08/08/07

Report Problem", + "NAME": "H02019" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0318281675755, + 38.90306707799152, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 02/04/08

Report Problem", + "NAME": "H02020" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07208174668037, + 38.92742798694648, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Clow

In Service


Last Inspection Date: 07/08/07

Report Problem", + "NAME": "H02180" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0145632670662, + 38.910421903042455, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/11/07

Report Problem", + "NAME": "H02181" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00344645438211, + 38.92034688929146, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 01/07/08

Report Problem", + "NAME": "H02182" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0021272623016, + 38.9202774215236, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 12/25/07

Report Problem", + "NAME": "H02183" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07094136439243, + 38.924772230811264, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H02184" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07094319360175, + 38.92610084869127, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP SMITH - O'BRIEN

In Service


Last Inspection Date: 03/06/08

Report Problem", + "NAME": "H02185" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06627664070031, + 38.91269273578324, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US PIPE-A P SMITH

In Service


Last Inspection Date: 08/10/07

Report Problem", + "NAME": "H02186" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06570383789055, + 38.91172554545512, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/02/07

Report Problem", + "NAME": "H02187" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.10873919584331, + 38.92874085915821, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US Pipe, AP Smith

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H02188" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9962337831072, + 38.89622438738672, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/01/07

Report Problem", + "NAME": "H02189" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96893566778297, + 38.92662307882042, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/27/07

Report Problem", + "NAME": "H02190" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06629309703835, + 38.9276310651576, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Eddy

In Service


Last Inspection Date: 01/12/07

Report Problem", + "NAME": "H02191" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04997279803068, + 38.90534685658149, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/12/07

Report Problem", + "NAME": "H02192" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00196887277293, + 38.900473423214414, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 07/28/07

Report Problem", + "NAME": "H02193" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0235377836542, + 38.94715885445253, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 08/20/07

Report Problem", + "NAME": "H02194" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01430750265538, + 38.9444052015688, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H02195" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0692826441224, + 38.91447182354517, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, American Darling

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H02196" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07494620895606, + 38.95707490232092, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H02197" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06945067919192, + 38.915561777553435, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 08/14/07

Report Problem", + "NAME": "H02198" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02797705271975, + 38.98042565079019, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H02199" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02601972222021, + 38.9584925694157, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H02200" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06624618189082, + 38.93471894654501, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Clow

In Service


Last Inspection Date: 01/19/07

Report Problem", + "NAME": "H02357" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06787968304695, + 38.96857024659039, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 07/23/07

Report Problem", + "NAME": "H02358" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96798934459109, + 38.93222581232258, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 08/09/07

Report Problem", + "NAME": "H02359" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07286764970894, + 38.96868836065294, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 12/26/07

Report Problem", + "NAME": "H02360" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02896394982665, + 38.915627319032964, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H02361" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08116003122717, + 38.96212589286107, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 02/15/08

Report Problem", + "NAME": "H02362" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06580430208457, + 38.92961147680641, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 01/18/06

Report Problem", + "NAME": "H02364" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06511632318453, + 38.92910428879062, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Eddy

In Service


Last Inspection Date: 01/17/07

Report Problem", + "NAME": "H02365" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93264391094284, + 38.89984674186864, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP SMITH - O'BRIEN

In Service


Last Inspection Date: 01/11/08

Report Problem", + "NAME": "H02366" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96237761379567, + 38.93415531387043, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/27/07

Report Problem", + "NAME": "H02367" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96512484852082, + 38.93416388599946, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, KENNEDY-K81-A/D GUAR

In Service


Last Inspection Date: 08/09/07

Report Problem", + "NAME": "H02368" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03878279699964, + 38.950510275064076, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 02/06/08

Report Problem", + "NAME": "H02369" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03762467602706, + 38.95152121964144, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP SMITH - O'BRIEN

In Service


Last Inspection Date: 02/26/08

Report Problem", + "NAME": "H02370" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05525993258135, + 38.91691035781633, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 11/15/06

Report Problem", + "NAME": "H02371" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02235032865342, + 38.9585893024244, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/23/07

Report Problem", + "NAME": "H02372" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08372579015492, + 38.954532748106296, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 11/19/07

Report Problem", + "NAME": "H02373" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02324613211594, + 38.96869367333492, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H02374" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99044739086317, + 38.89472569604125, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, American Dariling

In Service


Last Inspection Date: 05/30/07

Report Problem", + "NAME": "H02375" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95968505551676, + 38.875735602629504, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H02376" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02716475075219, + 38.90656711695723, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H02377" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06020846411761, + 38.9238749078651, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 01/10/07

Report Problem", + "NAME": "H02378" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99228035134483, + 38.92659551340002, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/31/07

Report Problem", + "NAME": "H02379" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05526351497318, + 38.94376505555505, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 12/22/06

Report Problem", + "NAME": "H02380" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05845632205478, + 38.942097365523594, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 09/24/07

Report Problem", + "NAME": "H02381" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0618067352162, + 38.92480334481349, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 01/16/07

Report Problem", + "NAME": "H02382" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05639066405435, + 38.94201891814282, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 02/11/08

Report Problem", + "NAME": "H02383" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06274865251294, + 38.92546017090525, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 01/16/07

Report Problem", + "NAME": "H02384" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05524760081336, + 38.94377088243079, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 05/16/07

Report Problem", + "NAME": "H02385" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02557271942077, + 38.94907192939675, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/05/07

Report Problem", + "NAME": "H02386" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07593972509883, + 38.944680522088724, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H02387" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05613018236808, + 38.931691920728454, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 01/02/07

Report Problem", + "NAME": "H02388" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0514492669259, + 38.92548648280563, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 01/02/07

Report Problem", + "NAME": "H02389" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05214180884387, + 38.92667391344616, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 01/11/06

Report Problem", + "NAME": "H02390" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05833191858744, + 38.92270059788185, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 01/08/07

Report Problem", + "NAME": "H02391" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05798642473613, + 38.92315542887408, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Eddy

In Service


Last Inspection Date: 11/08/07

Report Problem", + "NAME": "H02392" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98069784544856, + 38.92547621536049, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 12/26/07

Report Problem", + "NAME": "H02393" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99081645338033, + 38.92863924959949, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H02394" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03345040785578, + 38.93419903844846, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP SMITH - O'BRIEN

In Service


Last Inspection Date: 05/24/07

Report Problem", + "NAME": "H02395" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00071776984767, + 38.92134527643473, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 12/28/07

Report Problem", + "NAME": "H02396" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9899552805556, + 38.93252538980631, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H02397" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05517070320607, + 38.930112833667756, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 01/02/07

Report Problem", + "NAME": "H02398" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05406379803276, + 38.92818587849188, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 02/04/08

Report Problem", + "NAME": "H02399" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03683464682743, + 38.927662259256216, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H02400" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03788948094103, + 38.92462147121205, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Kennedy

In Service


Last Inspection Date: 05/29/07

Report Problem", + "NAME": "H02401" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06090752725551, + 38.937175828684694, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Kennedy

In Service


Last Inspection Date: 03/04/08

Report Problem", + "NAME": "H02402" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06480849052048, + 38.93541460796952, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 03/02/07

Report Problem", + "NAME": "H02403" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06114502837157, + 38.91965176037061, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H02404" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01737612934939, + 38.9459119164944, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/06/07

Report Problem", + "NAME": "H02405" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02086631242742, + 38.94528553123113, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/06/07

Report Problem", + "NAME": "H02406" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02106790249516, + 38.9159947567893, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 10/04/06

Report Problem", + "NAME": "H02407" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07408843066628, + 38.91450287268788, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 10/26/07

Report Problem", + "NAME": "H02408" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02105765418624, + 38.94740164121435, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 12/14/07

Report Problem", + "NAME": "H02409" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97024663019756, + 38.93415475330891, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H02410" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01903270144265, + 38.900197341701514, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/02/07

Report Problem", + "NAME": "H02411" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06776526294668, + 38.954727559802464, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 02/20/08

Report Problem", + "NAME": "H02412" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07440743585417, + 38.95838066997117, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H02421" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07403691578973, + 38.91347333331429, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H02422" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04887270704579, + 38.91603208976537, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/18/07

Report Problem", + "NAME": "H02423" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04660436917379, + 38.91685887340063, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 10/31/06

Report Problem", + "NAME": "H02424" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07440050690725, + 38.959059861300844, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 01/02/08

Report Problem", + "NAME": "H02425" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0418288310343, + 38.91189108781008, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/13/07

Report Problem", + "NAME": "H02426" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07440789403914, + 38.960344731782484, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H02427" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07697852448487, + 38.95971133638402, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H02428" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01452770270629, + 38.91265562440944, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/11/07

Report Problem", + "NAME": "H02429" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00046835359005, + 38.92335358393619, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/01/07

Report Problem", + "NAME": "H02430" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08016263512539, + 38.96314549567846, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 10/10/07

Report Problem", + "NAME": "H02431" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96387072005342, + 38.92241534145313, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 07/30/07

Report Problem", + "NAME": "H02432" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03870952103543, + 38.94622449397238, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 07/20/07

Report Problem", + "NAME": "H02433" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02529445304734, + 38.93602534998112, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 05/29/07

Report Problem", + "NAME": "H02434" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01610001900536, + 38.967339171096654, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H02435" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01605837851449, + 38.968688692625655, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H02436" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00335620439954, + 38.92294433372741, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 01/30/08

Report Problem", + "NAME": "H02437" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0196032378562, + 38.947449638029866, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 08/22/07

Report Problem", + "NAME": "H02438" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03128825325167, + 38.95628426309762, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H02439" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01500843801678, + 38.9196932330382, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, USP

In Service


Last Inspection Date: 09/05/06

Report Problem", + "NAME": "H02440" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05070923922946, + 38.91413585438477, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/13/07

Report Problem", + "NAME": "H02441" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04028689659664, + 38.90470499652097, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP SMITH - O'BRIEN

In Service


Last Inspection Date: 08/27/07

Report Problem", + "NAME": "H02442" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07018142390883, + 38.91648482138983, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 08/10/07

Report Problem", + "NAME": "H02443" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99171211351711, + 38.937189422078106, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H02444" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06217911326354, + 38.965845809911194, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Kennedy

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H02445" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08384763625851, + 38.96083239246911, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 07/20/07

Report Problem", + "NAME": "H02446" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03568650686427, + 38.934172865590604, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 05/19/07

Report Problem", + "NAME": "H02447" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99443233256763, + 38.92193237155208, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H02448" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0210696245563, + 38.94828630604302, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 08/21/07

Report Problem", + "NAME": "H02449" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06397683775366, + 38.96501788287509, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Eddy

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H02450" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0707783822129, + 38.93721832759821, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Kennedy

In Service


Last Inspection Date: 03/20/07

Report Problem", + "NAME": "H02451" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97222328355343, + 38.9350000923356, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 08/01/07

Report Problem", + "NAME": "H02452" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07284995431041, + 38.91824666844355, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H02453" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0741262932378, + 38.915408997293135, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/02/07

Report Problem", + "NAME": "H02454" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04119815131878, + 38.940865037156996, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, CLOW - MEDALLION

In Service


Last Inspection Date: 09/17/07

Report Problem", + "NAME": "H02455" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02437582316252, + 38.964388844260206, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 07/13/07

Report Problem", + "NAME": "H02456" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06629700670452, + 38.92908244645568, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 01/16/07

Report Problem", + "NAME": "H02457" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99228131837913, + 38.927463500539794, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/31/07

Report Problem", + "NAME": "H02458" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03791652876262, + 38.96870165558358, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H02459" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03664144386782, + 38.968808071060444, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H02460" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02423965294152, + 38.9250595707303, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 09/06/06

Report Problem", + "NAME": "H02461" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02261173782628, + 38.935495995555456, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/29/07

Report Problem", + "NAME": "H02462" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9843739735885, + 38.92996681409685, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H02463" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02638157920737, + 38.97738657505648, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/30/07

Report Problem", + "NAME": "H02464" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03694884375898, + 38.92612746760467, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 05/25/07

Report Problem", + "NAME": "H02465" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02388281636263, + 38.949868140968334, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 08/20/07

Report Problem", + "NAME": "H02466" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98494300643884, + 38.90498684403374, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/26/07

Report Problem", + "NAME": "H02467" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04895649402714, + 38.91340109817856, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/12/07

Report Problem", + "NAME": "H02219" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05032851993882, + 38.91244446928459, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/11/07

Report Problem", + "NAME": "H02220" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06330655798459, + 38.92780607709113, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Eddy

In Service


Last Inspection Date: 01/19/07

Report Problem", + "NAME": "H02221" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0635092693931, + 38.92659036696649, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 01/12/07

Report Problem", + "NAME": "H02222" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04014221930245, + 38.928857302742976, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US PIPE-A P SMITH

In Service


Last Inspection Date: 09/19/07

Report Problem", + "NAME": "H02223" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04414980494309, + 38.92607822493934, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 10/19/06

Report Problem", + "NAME": "H02224" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06317246562452, + 38.92910585111905, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 01/17/07

Report Problem", + "NAME": "H02225" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01065584985925, + 38.914130364055296, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 08/17/07

Report Problem", + "NAME": "H02226" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0694028255111, + 38.96767236555518, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 11/29/07

Report Problem", + "NAME": "H02227" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06418130826363, + 38.914129762646525, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 10/16/07

Report Problem", + "NAME": "H02228" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0657510637312, + 38.91476324797256, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H02229" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03785235162083, + 38.94500788177779, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP SMITH - O'BRIEN

In Service


Last Inspection Date: 07/06/07

Report Problem", + "NAME": "H02230" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9760509669522, + 38.9331757762038, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H02231" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0362845838172, + 38.93747386292969, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 09/11/07

Report Problem", + "NAME": "H02232" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03423322680514, + 38.93737431847327, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 05/17/07

Report Problem", + "NAME": "H02233" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99598866810791, + 38.8989607863988, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 05/30/07

Report Problem", + "NAME": "H02234" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06007690283022, + 38.97110904727206, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US Pipe, AP Smith

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H02235" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02410937544778, + 38.954229728164975, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 08/02/07

Report Problem", + "NAME": "H02236" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99956787931444, + 38.8948964971011, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/27/07

Report Problem", + "NAME": "H02237" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99828669360583, + 38.92655172315786, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H02238" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05834402244399, + 38.97414129513569, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, American Darling, B84B

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H02239" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06099566046568, + 38.97187921742923, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US Pipe, AP Smith

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H02240" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02934472035942, + 38.936933106376976, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 05/20/07

Report Problem", + "NAME": "H02241" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99729640967367, + 38.896767702243615, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/30/07

Report Problem", + "NAME": "H02242" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99381980947587, + 38.89469213275735, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AM DARLING - B-62-B

In Service


Last Inspection Date: 05/20/07

Report Problem", + "NAME": "H02243" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06502655078577, + 38.97133029950638, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H02244" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05061488150095, + 38.92608851267201, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Kennedy

In Service


Last Inspection Date: 01/02/07

Report Problem", + "NAME": "H02245" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03122529735126, + 38.94607300633347, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 08/10/07

Report Problem", + "NAME": "H02246" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0314603455025, + 38.94515329675618, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP SMITH - O'BRIEN

In Service


Last Inspection Date: 07/19/07

Report Problem", + "NAME": "H02247" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01538670093865, + 38.94309870097209, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H02248" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03436989678288, + 38.94297480560888, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 07/19/07

Report Problem", + "NAME": "H02249" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02013907402738, + 38.943145020096026, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 03/07/08

Report Problem", + "NAME": "H02250" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03758425684003, + 38.94619154854148, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 07/18/07

Report Problem", + "NAME": "H02251" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9994416480855, + 38.89720594402789, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 08/31/07

Report Problem", + "NAME": "H02252" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03776603140655, + 38.92014033018421, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/13/07

Report Problem", + "NAME": "H02253" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04182126609734, + 38.91415039073886, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/13/07

Report Problem", + "NAME": "H02254" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02332500499988, + 38.97240085388782, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 10/02/07

Report Problem", + "NAME": "H02255" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08493324637763, + 38.948474559508874, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US Pipe, AP Smith

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H02256" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06022581086036, + 38.922321287608035, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Clow

In Service


Last Inspection Date: 01/10/07

Report Problem", + "NAME": "H02257" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.10692036614934, + 38.92817447276545, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US Pipe, AP Smith

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H02258" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06633129672237, + 38.931366538258196, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 01/17/07

Report Problem", + "NAME": "H02259" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06633059309861, + 38.93039940652756, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, U.S. Pipe

In Service


Last Inspection Date: 01/17/07

Report Problem", + "NAME": "H02260" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01884826427401, + 38.90147361260865, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, CLOW - EDDY

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H02261" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0258357780549, + 38.90167766683046, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H02262" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98094018829131, + 38.88024831951317, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 05/17/06

Report Problem", + "NAME": "H02263" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9720699562511, + 38.93207567230303, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, KENNEDY-K81-A/D GUAR

In Service


Last Inspection Date: 08/08/07

Report Problem", + "NAME": "H02264" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96621951204449, + 38.93265792905006, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H02265" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02986846324326, + 38.940869084765204, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H02266" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99015621764943, + 38.94170542879607, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H02267" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01510655783609, + 38.9120689099893, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/11/07

Report Problem", + "NAME": "H02268" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99828332149815, + 38.89895939230843, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/30/07

Report Problem", + "NAME": "H02269" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07314550691709, + 38.9570768534689, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Kennedy

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H02270" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03547263104721, + 38.935945746295154, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 09/25/07

Report Problem", + "NAME": "H02271" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02765378008552, + 38.98297411648219, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H02272" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.025554511874, + 38.94822538053987, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/05/07

Report Problem", + "NAME": "H02273" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03057836393977, + 38.90502680952106, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 05/30/07

Report Problem", + "NAME": "H02274" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02565999860138, + 38.95088985218283, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 08/13/07

Report Problem", + "NAME": "H02275" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0294930842031, + 38.90782293758968, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 05/30/07

Report Problem", + "NAME": "H02276" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03156043923946, + 38.95414331253165, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 07/16/07

Report Problem", + "NAME": "H02277" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02794418175219, + 38.963824003386094, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H02278" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06742687452288, + 38.927632524480764, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Eddy

In Service


Last Inspection Date: 07/23/07

Report Problem", + "NAME": "H02279" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97424452074037, + 38.936089127149835, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H02280" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02816223051872, + 38.90975818631079, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Kennedy

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H02281" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06470375789152, + 38.92745334801983, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 01/12/07

Report Problem", + "NAME": "H02282" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05167636864402, + 38.91633042860268, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 04/30/07

Report Problem", + "NAME": "H02283" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09958301496812, + 38.947841588884124, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/04/07

Report Problem", + "NAME": "H02284" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07454623149088, + 38.94561523595463, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 12/20/07

Report Problem", + "NAME": "H02285" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02429440018354, + 38.965994374180255, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H02286" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00800824107726, + 38.8832903723711, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H02287" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02020227033456, + 38.93885363989355, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AM DARLING - B-62-B

In Service


Last Inspection Date: 05/16/07

Report Problem", + "NAME": "H02288" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02135296883517, + 38.971345114051275, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 11/10/07

Report Problem", + "NAME": "H02289" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02235773506352, + 38.971202866376885, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 12/06/07

Report Problem", + "NAME": "H02290" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06472127670968, + 38.93021139551453, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 01/17/07

Report Problem", + "NAME": "H02291" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0237139993211, + 38.94821730059552, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 08/20/07

Report Problem", + "NAME": "H02292" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00047803721469, + 38.92459222775901, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 10/31/07

Report Problem", + "NAME": "H02293" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01556874615575, + 38.942082677175044, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H02294" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97228141047655, + 38.93317017762421, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/12/07

Report Problem", + "NAME": "H02295" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02307885555554, + 38.91117447543661, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/11/07

Report Problem", + "NAME": "H02296" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03672352022497, + 38.93180919767034, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 05/23/07

Report Problem", + "NAME": "H02297" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96639061943615, + 38.92231479476334, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/30/07

Report Problem", + "NAME": "H02298" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06984662657405, + 38.96867886274308, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton, AP Smith

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H02299" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03639217625027, + 38.92332992881701, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H02300" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05623907199511, + 38.94104019533707, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 12/20/06

Report Problem", + "NAME": "H02301" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.10756082886142, + 38.929552418819014, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 07/20/07

Report Problem", + "NAME": "H02302" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05661376747125, + 38.916823337844626, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 09/18/07

Report Problem", + "NAME": "H02303" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.10929937797565, + 38.929453750262994, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, American Darling, B84B

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H02304" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.10813979189241, + 38.93155736050178, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H02305" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08495580620318, + 38.95096802566599, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 11/16/07

Report Problem", + "NAME": "H02306" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08158371393276, + 38.90771320054227, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 10/26/07

Report Problem", + "NAME": "H02307" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03652520878843, + 38.94071087339788, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP SMITH - JUMBO

In Service


Last Inspection Date: 09/11/07

Report Problem", + "NAME": "H02413" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04116500907743, + 38.94191904581673, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, CLOW - MEDALLION

In Service


Last Inspection Date: 09/17/07

Report Problem", + "NAME": "H02414" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03865462892603, + 38.948320702843226, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 08/02/07

Report Problem", + "NAME": "H02415" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05882737349081, + 38.93563111491473, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Kennedy

In Service


Last Inspection Date: 01/22/07

Report Problem", + "NAME": "H02416" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02467758786067, + 38.908524876182675, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US PIPE-MET 250 M94

In Service


Last Inspection Date: 06/08/07

Report Problem", + "NAME": "H02417" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07007617893264, + 38.95905705599412, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Kennedy

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H02418" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05254115011057, + 38.914738675618416, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 06/15/07

Report Problem", + "NAME": "H02419" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07265025843519, + 38.95837427113736, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H02420" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05732157760308, + 38.950518491681315, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Kennedy

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H02638" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01843436347409, + 38.94320120678365, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H02639" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01379072420467, + 38.94235063579019, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H02640" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0202476609033, + 38.92480939485326, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 09/22/06

Report Problem", + "NAME": "H02641" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0126518743266, + 38.94432730867445, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H02642" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07467168795272, + 38.955555653699165, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller, Centurion

In Service


Last Inspection Date: 06/18/07

Report Problem", + "NAME": "H02643" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0004700148885, + 38.91821011899874, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 06/28/07

Report Problem", + "NAME": "H02644" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02623425495086, + 38.93432873572846, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 09/21/07

Report Problem", + "NAME": "H02645" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02590411626575, + 38.96440099210452, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H02646" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01481201080135, + 38.96265679101783, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 11/26/07

Report Problem", + "NAME": "H02647" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98823858597284, + 38.89084077004873, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 04/13/06

Report Problem", + "NAME": "H02648" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08219097651164, + 38.946350006466254, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H02649" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08417049107285, + 38.91174525813888, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H02650" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04360486231961, + 38.92158702518876, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 11/30/07

Report Problem", + "NAME": "H02651" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06422458346891, + 38.95857512363125, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Clow Eddy, Eddy

In Service


Last Inspection Date: 06/15/07

Report Problem", + "NAME": "H02652" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99390912333604, + 38.88132483111803, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 10/27/06

Report Problem", + "NAME": "H02653" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08748491167783, + 38.90934062209095, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H02654" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08346140696953, + 38.90780850688067, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H02655" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02494432152615, + 38.8974392292383, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H02656" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0547514876217, + 38.94528244492111, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 12/19/06

Report Problem", + "NAME": "H02657" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.007302717981, + 38.87922114947467, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 01/31/08

Report Problem", + "NAME": "H02658" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00397984441919, + 38.90570008176016, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H02659" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04447500880534, + 38.92136548885368, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 10/30/06

Report Problem", + "NAME": "H02660" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02253206450379, + 38.96006821634684, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H02661" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01062932859072, + 38.971683110127216, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/23/07

Report Problem", + "NAME": "H02308" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94401534744019, + 38.898300829267846, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/01/07

Report Problem", + "NAME": "H02309" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99750516074612, + 38.924556529167454, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AM DARLING - B-62-B

In Service


Last Inspection Date: 05/30/07

Report Problem", + "NAME": "H02310" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98371769316162, + 38.89488442698911, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 05/29/07

Report Problem", + "NAME": "H02311" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0200052271911, + 38.97120577875481, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 11/05/07

Report Problem", + "NAME": "H02312" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03357376185724, + 38.90088891845056, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H02313" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0019698162964, + 38.923369801265956, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 07/04/07

Report Problem", + "NAME": "H02314" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00196983806445, + 38.92248794071405, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 12/28/07

Report Problem", + "NAME": "H02315" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08217914356655, + 38.94306008018525, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H02316" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98063486816388, + 38.92712991542751, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/30/07

Report Problem", + "NAME": "H02317" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02459980455362, + 38.97827773271868, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H02318" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02555529091498, + 38.972409098743746, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/30/07

Report Problem", + "NAME": "H02319" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09251870746847, + 38.9534322731507, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 11/12/07

Report Problem", + "NAME": "H02320" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97740173531604, + 38.8886205214979, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 04/12/06

Report Problem", + "NAME": "H02321" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04438494321283, + 38.91795087159957, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/31/07

Report Problem", + "NAME": "H02322" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03243162777484, + 38.9847965751539, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H02323" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93512672537646, + 38.90710618769946, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H02324" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.10781993691059, + 38.927391706227155, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US Pipe, AP Smith

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H02325" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99391201805774, + 38.92263674232255, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 05/21/07

Report Problem", + "NAME": "H02326" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99254426826764, + 38.94119475442937, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H02327" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01289192339381, + 38.9086596441178, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 09/13/07

Report Problem", + "NAME": "H02328" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0171289132211, + 38.9441509236998, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H02329" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07132006855714, + 38.96858615234745, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H02330" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99731398980849, + 38.8450141155974, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/02/07

Report Problem", + "NAME": "H02331" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04220339865742, + 38.943867294271804, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/14/07

Report Problem", + "NAME": "H02332" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04845967087124, + 38.915246437773575, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/13/07

Report Problem", + "NAME": "H02333" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07390424568763, + 38.907095806549556, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/02/07

Report Problem", + "NAME": "H02334" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0736850536795, + 38.90658617145866, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/02/07

Report Problem", + "NAME": "H02335" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02738498096726, + 38.937523301100654, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 12/20/07

Report Problem", + "NAME": "H02336" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02210405876517, + 38.97444338354282, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H02337" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01540317949495, + 38.94419583591626, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H02338" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98102919648814, + 38.93313137847946, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/23/07

Report Problem", + "NAME": "H02339" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03325253716923, + 38.97874261500374, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H02340" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02270380188011, + 38.948318853281684, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/06/07

Report Problem", + "NAME": "H02341" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05852972304771, + 38.94960475114349, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H02342" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02265472074242, + 38.94720796189297, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/06/07

Report Problem", + "NAME": "H02343" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06004257485797, + 38.94974622462952, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H02344" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02229117767558, + 38.95435528586214, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 08/02/07

Report Problem", + "NAME": "H02345" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02437869634737, + 38.963815603690286, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 09/18/07

Report Problem", + "NAME": "H02346" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0863398599611, + 38.93140770002392, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US Pipe, AP Smith

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H02347" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07446003484272, + 38.941327354464335, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, UNKNOWN

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H02348" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96154788233297, + 38.88008251981319, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, KENNEDY-K81-A/D GUAR

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H02349" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96154002356586, + 38.87888276159043, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H02350" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93908433394238, + 38.8934714628045, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H02351" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07696174519677, + 38.94465288288187, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/04/07

Report Problem", + "NAME": "H02352" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98452707218469, + 38.901437705643566, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 09/06/07

Report Problem", + "NAME": "H02353" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98307120359952, + 38.90081204453013, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 02/28/08

Report Problem", + "NAME": "H02354" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93102057926296, + 38.89633370372234, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H02355" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07686396891907, + 38.94557105371419, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 10/30/07

Report Problem", + "NAME": "H02356" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01993727557146, + 38.95435635055435, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 08/03/07

Report Problem", + "NAME": "H02537" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02209995807004, + 38.953183598728174, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 08/22/07

Report Problem", + "NAME": "H02538" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06995344197567, + 38.96318493822173, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER

In Service


Last Inspection Date: 01/30/08

Report Problem", + "NAME": "H02539" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05797381075922, + 38.947811245690204, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H02540" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04449249888805, + 38.925093566962765, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 10/19/06

Report Problem", + "NAME": "H02541" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0437313994238, + 38.92561112986625, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/05/07

Report Problem", + "NAME": "H02542" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00197057048362, + 38.90475721992508, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 10/22/07

Report Problem", + "NAME": "H02543" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02375637682073, + 38.95183478987163, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AM DARLING - B-62-B

In Service


Last Inspection Date: 08/02/07

Report Problem", + "NAME": "H02544" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99837148869801, + 38.925685088396534, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/23/07

Report Problem", + "NAME": "H02545" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08481166732525, + 38.931418250656556, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 11/21/07

Report Problem", + "NAME": "H02546" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08629146874243, + 38.92899860671544, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US Pipe, AP Smith

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H02547" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02112517659566, + 38.94632188757306, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/09/07

Report Problem", + "NAME": "H02548" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02736025955492, + 38.936883015159765, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 05/29/07

Report Problem", + "NAME": "H02549" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98936423250684, + 38.90719653759504, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H02550" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02207064350374, + 38.94975706476989, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/06/07

Report Problem", + "NAME": "H02551" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01812887101255, + 38.97134578442292, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H02552" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00739160628679, + 38.87830452196592, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H02553" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07163552106215, + 38.93798426750831, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 02/27/08

Report Problem", + "NAME": "H02554" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06756916848134, + 38.93547454431843, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 02/06/08

Report Problem", + "NAME": "H02555" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01651326188556, + 38.972391069128726, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 11/10/07

Report Problem", + "NAME": "H02556" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0585651147206, + 38.94678061981897, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Eddy

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H02557" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0684987768037, + 38.97208718020293, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/15/07

Report Problem", + "NAME": "H02558" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97931488199157, + 38.88543187362759, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 04/24/07

Report Problem", + "NAME": "H02559" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99225677604774, + 38.842720862144745, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H02560" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01994621168303, + 38.96600593455622, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H02561" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02298645342249, + 38.95102629822155, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 08/13/07

Report Problem", + "NAME": "H02562" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00066602198648, + 38.91583061255836, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/27/07

Report Problem", + "NAME": "H02563" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02178695993496, + 38.94844942256115, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 08/21/07

Report Problem", + "NAME": "H02564" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99012191567768, + 38.940768527745675, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H02565" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06699514622558, + 38.905166258010226, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/02/07

Report Problem", + "NAME": "H02566" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06787837762634, + 38.90495225024058, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/02/07

Report Problem", + "NAME": "H02567" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06206805278661, + 38.90527136838642, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/11/07

Report Problem", + "NAME": "H02568" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06339878951073, + 38.90505979534415, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/02/07

Report Problem", + "NAME": "H02569" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04119047446572, + 38.944128490494286, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 09/17/07

Report Problem", + "NAME": "H02570" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06536083795007, + 38.931337510721534, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 01/19/07

Report Problem", + "NAME": "H02571" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08735842976952, + 38.92953195304519, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US Pipe, AP Smith

In Service


Last Inspection Date: 06/08/07

Report Problem", + "NAME": "H02572" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97886664211478, + 38.88691051908534, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 04/12/06

Report Problem", + "NAME": "H02573" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02234745800985, + 38.96205548185861, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H02574" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05264608758037, + 38.931277610454146, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 01/11/07

Report Problem", + "NAME": "H02575" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0499058828883, + 38.93111799632543, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 01/11/06

Report Problem", + "NAME": "H02576" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98576094399658, + 38.90093807891935, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/20/07

Report Problem", + "NAME": "H02577" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07034337570465, + 38.96586660483941, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H02578" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03356365134552, + 38.98233090562, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H02579" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03356402105845, + 38.9814006899206, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H02580" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03462407441155, + 38.982331452288975, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H02581" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07589391357558, + 38.94120904523332, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H02582" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07909860910051, + 38.94706214563604, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H02583" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07723277946742, + 38.94306461496949, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H02584" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07656531354291, + 38.94229559292867, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Eddy

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H02585" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07567379257732, + 38.94045803139844, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H02586" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07413278665766, + 38.93770752485326, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H02587" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07331951862218, + 38.93623038838182, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H02588" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0245030808214, + 38.97139829362167, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 11/09/07

Report Problem", + "NAME": "H02589" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01990199905, + 38.94986527411361, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, KENNEDY-K81-A/D GUAR

In Service


Last Inspection Date: 08/22/07

Report Problem", + "NAME": "H02590" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01789066704265, + 38.97350309510924, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 10/29/07

Report Problem", + "NAME": "H02591" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0007294738845, + 38.922415780367054, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, KENNEDY-K81-A/D GUAR

In Service


Last Inspection Date: 06/15/07

Report Problem", + "NAME": "H02592" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0272675620226, + 38.938548247373376, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/17/07

Report Problem", + "NAME": "H02593" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00916266815548, + 38.95876382199242, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H02594" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9357146481344, + 38.89978131465113, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/01/07

Report Problem", + "NAME": "H02595" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03664550685504, + 38.967845349898745, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H02596" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07328740185461, + 38.92905439999068, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H02597" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97604628676176, + 38.934164130205055, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Eddy

In Service


Last Inspection Date: 07/16/07

Report Problem", + "NAME": "H02598" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95972973043133, + 38.88297298724842, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H02599" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95997294891637, + 38.88359457741618, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H02600" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02201973572386, + 38.951891125277406, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US PIPE-MET 250 M94

In Service


Last Inspection Date: 08/02/07

Report Problem", + "NAME": "H02601" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97984624043404, + 38.934947902801184, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H02602" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0625062994089, + 38.93843053414935, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, American Darling

In Service


Last Inspection Date: 01/26/07

Report Problem", + "NAME": "H02603" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96592309936018, + 38.9351485936903, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 08/10/07

Report Problem", + "NAME": "H02604" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98429827931386, + 38.90578355671845, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/26/07

Report Problem", + "NAME": "H02605" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96284765886905, + 38.93293790192038, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/27/07

Report Problem", + "NAME": "H02606" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09418305797594, + 38.95109207168437, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 11/12/07

Report Problem", + "NAME": "H02607" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99234638111264, + 38.92385113399154, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/19/07

Report Problem", + "NAME": "H02608" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96024224750482, + 38.86058591036806, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/06/07

Report Problem", + "NAME": "H02609" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97424814716976, + 38.9382155544687, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP SMITH - O'BRIEN

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H02610" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9752600565698, + 38.93821872774666, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H02611" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97208111033463, + 38.93607823484159, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Eddy

In Service


Last Inspection Date: 02/20/08

Report Problem", + "NAME": "H02612" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04881156595594, + 38.89358395097665, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/08/07

Report Problem", + "NAME": "H02613" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07703142445881, + 38.95630483572565, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H02614" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01982393727567, + 38.96999904805907, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 12/03/07

Report Problem", + "NAME": "H02615" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97429970712867, + 38.93728397289016, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H02616" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08615064137359, + 38.95454302150347, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 11/19/07

Report Problem", + "NAME": "H02617" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98822548703528, + 38.941713664002535, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H02618" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99114896058126, + 38.93529353037824, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H02619" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99104248181496, + 38.936285939543026, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 02/03/08

Report Problem", + "NAME": "H02620" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08826919835818, + 38.907729970032534, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H02621" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.080677145523, + 38.949630408745456, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/05/07

Report Problem", + "NAME": "H02622" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98465105467753, + 38.90264300390329, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 09/24/07

Report Problem", + "NAME": "H02623" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02712628166776, + 38.94395715481392, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US PIPE-MET 250 M94

In Service


Last Inspection Date: 08/08/07

Report Problem", + "NAME": "H02624" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02333724266687, + 38.96558114465148, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H02625" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08870407217199, + 38.93039269272922, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US Pipe, AP Smith

In Service


Last Inspection Date: 06/08/07

Report Problem", + "NAME": "H02626" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07343974357367, + 38.95162130597298, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/18/07

Report Problem", + "NAME": "H02627" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9761044289552, + 38.89954085591208, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 05/28/07

Report Problem", + "NAME": "H02628" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0781152624224, + 38.95890564928163, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/15/07

Report Problem", + "NAME": "H02629" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03573578521663, + 38.906870048628264, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 08/09/07

Report Problem", + "NAME": "H02630" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07553694946108, + 38.91524895262129, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/02/07

Report Problem", + "NAME": "H02631" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06302838633292, + 38.91333295411593, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/02/07

Report Problem", + "NAME": "H02632" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05397875475903, + 38.91777949496411, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 11/15/06

Report Problem", + "NAME": "H02633" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.981249544108, + 38.93488892478633, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H02634" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0243342749057, + 38.95915744459947, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/05/07

Report Problem", + "NAME": "H02635" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02398777772999, + 38.958520578233106, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/23/07

Report Problem", + "NAME": "H02636" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0287741749278, + 38.96183474398523, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H02637" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02237690928489, + 38.96674090982503, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H02662" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02304635422067, + 38.978263032441106, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 08/08/07

Report Problem", + "NAME": "H02663" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03630327820098, + 38.93441061193483, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 09/11/07

Report Problem", + "NAME": "H02664" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0273384955068, + 38.967236452604865, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H02665" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02581937400355, + 38.96732372744953, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H02666" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97793423332969, + 38.93403952970115, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H02667" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97977231362411, + 38.93602750772483, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 08/22/07

Report Problem", + "NAME": "H02668" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98468499851424, + 38.937099260193314, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H02669" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00797525587318, + 38.95867309675644, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H02670" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02960082318928, + 38.98312918478488, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H02671" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02960259495912, + 38.98147660893936, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H02672" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99131299040658, + 38.94120618200432, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, KENNEDY-K81-A/D GUAR

In Service


Last Inspection Date: 09/17/07

Report Problem", + "NAME": "H02673" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99287880185298, + 38.92456820278567, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 07/16/07

Report Problem", + "NAME": "H02674" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08248717048006, + 38.91174893592211, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H02675" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05379829564731, + 38.95061637448283, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 03/10/08

Report Problem", + "NAME": "H02676" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05708032507926, + 38.94972104399757, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H02677" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97411396213127, + 38.93956547173503, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H02678" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05337147216997, + 38.90160242723158, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 02/29/08

Report Problem", + "NAME": "H02679" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07455248321001, + 38.94389393758971, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H02680" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07574402514736, + 38.92745986634318, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H02681" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98664967428418, + 38.90137634132128, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 08/07/07

Report Problem", + "NAME": "H02682" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96547678509202, + 38.92666725791586, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/27/07

Report Problem", + "NAME": "H02683" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06913209618116, + 38.96104876759208, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/15/07

Report Problem", + "NAME": "H02684" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0415338475478, + 38.9197369200528, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, SUP CENT 250

In Service


Last Inspection Date: 10/23/07

Report Problem", + "NAME": "H02685" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98835980872528, + 38.942789699430485, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/02/07

Report Problem", + "NAME": "H02686" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01354477416085, + 38.96275094578935, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 10/10/07

Report Problem", + "NAME": "H02687" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02587272128599, + 38.960082658725554, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H02688" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06967068092413, + 38.96198036107136, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 03/03/08

Report Problem", + "NAME": "H02689" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02288262501449, + 38.90024466559525, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H02690" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06598766397853, + 38.9586972127499, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H02691" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06571669484644, + 38.959878960853544, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H02692" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03608807839835, + 38.970773372655756, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H02693" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00703976734135, + 38.835064416182405, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, SUP CENT 250

In Service


Last Inspection Date: 09/24/07

Report Problem", + "NAME": "H02694" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00624204787314, + 38.83476679510385, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H02695" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9850618348579, + 38.900697522529086, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, KENNEDY-K81-A/D GUAR

In Service


Last Inspection Date: 09/12/07

Report Problem", + "NAME": "H02696" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08652146281827, + 38.93701534412659, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 11/20/07

Report Problem", + "NAME": "H02697" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0210259953851, + 38.953136052981, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 08/06/07

Report Problem", + "NAME": "H02698" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07304574402293, + 38.9194310966336, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H02699" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96245836531008, + 38.93097153451782, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 08/24/07

Report Problem", + "NAME": "H02700" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96520489309603, + 38.92012397459474, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/30/07

Report Problem", + "NAME": "H02701" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02797906534607, + 38.98123057075456, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H02702" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9660450441877, + 38.92122865140622, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 07/30/07

Report Problem", + "NAME": "H02703" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01754489592821, + 38.94741380583731, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/06/07

Report Problem", + "NAME": "H02704" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07454823026318, + 38.944702632269674, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/04/07

Report Problem", + "NAME": "H02705" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03606783135201, + 38.96998530213775, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H02706" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01796820270324, + 38.96278505851114, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H02707" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02717417225318, + 38.89846227093731, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H02708" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02690274488064, + 38.89906856041094, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/01/07

Report Problem", + "NAME": "H02709" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02126259584207, + 38.9672276079961, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H02710" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02681234424902, + 38.8974490669438, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 08/29/07

Report Problem", + "NAME": "H02711" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0121051916335, + 38.87449751374221, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/01/07

Report Problem", + "NAME": "H02712" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01979880651939, + 38.95937432761223, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 07/17/07

Report Problem", + "NAME": "H02713" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96149342565168, + 38.93176697841911, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/31/07

Report Problem", + "NAME": "H02714" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01998635169623, + 38.960232305185635, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Eddy

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H02715" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07549380151357, + 38.91446445342166, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, KENNEDY-K81-A/D GUAR

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H02716" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96026513547736, + 38.85954099530886, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 12/18/07

Report Problem", + "NAME": "H02717" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04246905200324, + 38.922676225441805, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 11/01/07

Report Problem", + "NAME": "H02718" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05754488275126, + 38.959587734298275, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/15/07

Report Problem", + "NAME": "H02719" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96158842123879, + 38.85954069045356, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 12/17/07

Report Problem", + "NAME": "H02720" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02125660353127, + 38.9686858544096, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H02721" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09095103126786, + 38.930336438438886, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H02722" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97603374596963, + 38.90013634801519, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, ALorton

In Service


Last Inspection Date: 05/11/07

Report Problem", + "NAME": "H02723" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.10634529491905, + 38.926696218793246, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Clow Eddy, Eddy

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H02724" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06292700337468, + 38.96457792209319, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US Pipe, AP Smith

In Service


Last Inspection Date: 11/19/07

Report Problem", + "NAME": "H02725" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01733118435389, + 38.94841755808591, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H02726" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06149210630153, + 38.964874687582615, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US Pipe, AP Smith

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H02727" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0757762150883, + 38.92630087141769, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H02728" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99381977499158, + 38.88684027247317, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/23/07

Report Problem", + "NAME": "H02729" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96073549382282, + 38.879231947439266, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H02730" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02962030494675, + 38.94412082455208, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 08/07/07

Report Problem", + "NAME": "H02468" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01787494925566, + 38.97239819261687, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 10/29/07

Report Problem", + "NAME": "H02469" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05243315647581, + 38.917893523510216, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 04/10/07

Report Problem", + "NAME": "H02470" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05231553649288, + 38.918769852511254, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 11/15/06

Report Problem", + "NAME": "H02471" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99959125427705, + 38.9174707876315, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H02472" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99024512411675, + 38.906418140100186, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H02473" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98902682534181, + 38.90450224431941, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 08/02/07

Report Problem", + "NAME": "H02474" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02870471880496, + 38.982184671468154, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H02475" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02713414932595, + 38.96999227447476, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H02476" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03356480911077, + 38.97944754535645, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H02477" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07295081865969, + 38.91707568445428, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H02478" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0125781038407, + 38.97131856063084, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H02479" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08210481711443, + 38.95895057851505, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/15/07

Report Problem", + "NAME": "H02480" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07023686575405, + 38.96482982831641, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Eddy

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H02481" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96878861215555, + 38.872989279174504, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H02482" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07155048194703, + 38.90859926968672, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/02/07

Report Problem", + "NAME": "H02483" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98536050657182, + 38.85852835561634, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 03/06/08

Report Problem", + "NAME": "H02484" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98235192635182, + 38.86829500818065, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 08/08/07

Report Problem", + "NAME": "H02485" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0617300239778, + 38.95084857131873, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H02486" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01958554387404, + 38.94833879409187, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/06/07

Report Problem", + "NAME": "H02487" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98389137909558, + 38.928002639573705, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 07/30/07

Report Problem", + "NAME": "H02488" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06032114428511, + 38.947910311200225, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H02489" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98255158013245, + 38.92987446429014, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "null

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H02490" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02074332933599, + 38.94904158230055, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US PIPE-A P SMITH

In Service


Last Inspection Date: 07/11/07

Report Problem", + "NAME": "H02491" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00335184310933, + 38.92338755222246, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 12/28/07

Report Problem", + "NAME": "H02492" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07453920271344, + 38.92072243430179, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H02493" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02395728255865, + 38.95312804822754, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/27/07

Report Problem", + "NAME": "H02494" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92454893113323, + 38.8877063556372, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 02/05/08

Report Problem", + "NAME": "H02495" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98504739161407, + 38.867635572547385, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H02496" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96141689939331, + 38.86160613865794, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/06/07

Report Problem", + "NAME": "H02497" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96470789694999, + 38.860826203846194, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H02498" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9615870524531, + 38.86054263367201, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/06/07

Report Problem", + "NAME": "H02499" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01377791304122, + 38.967142484485365, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H02500" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99159569783862, + 38.89189301251123, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, CLOW - EDDY

In Service


Last Inspection Date: 11/16/06

Report Problem", + "NAME": "H02501" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0081087729727, + 38.91265720106606, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H02502" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02386091420239, + 38.94912544014645, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 08/20/07

Report Problem", + "NAME": "H02503" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01981977463699, + 38.91524145511604, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/12/07

Report Problem", + "NAME": "H02504" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04653791578609, + 38.93440476891451, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 01/01/06

Report Problem", + "NAME": "H02505" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0386704240855, + 38.94715544969017, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 07/20/07

Report Problem", + "NAME": "H02506" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9853012082339, + 38.903105026892945, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 07/17/07

Report Problem", + "NAME": "H02507" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98476570891793, + 38.903874668000846, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/01/07

Report Problem", + "NAME": "H02508" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9841988909006, + 38.904671678696246, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, KENNEDY-K81-A/D GUAR

In Service


Last Inspection Date: 09/24/07

Report Problem", + "NAME": "H02509" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08614169405193, + 38.93254277613375, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H02510" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08635531173482, + 38.93033880742206, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Kennedy, K81A

In Service


Last Inspection Date: 06/08/07

Report Problem", + "NAME": "H02511" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99136181329705, + 38.9056356457202, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 08/20/07

Report Problem", + "NAME": "H02512" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99361190640226, + 38.92850485165855, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H02513" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96407524474564, + 38.93292952060768, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 02/29/08

Report Problem", + "NAME": "H02515" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07286678357575, + 38.92995519697157, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H02516" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07291624480223, + 38.93068437990354, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H02517" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09691804556762, + 38.94973736942091, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US Pipe, AP Smith

In Service


Last Inspection Date: 06/04/07

Report Problem", + "NAME": "H02518" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01659968397014, + 38.94648048790097, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H02519" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05583635193537, + 38.91732244921431, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 09/18/07

Report Problem", + "NAME": "H02520" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01926967817015, + 38.94514473561404, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 08/22/07

Report Problem", + "NAME": "H02521" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03400513235559, + 38.927473059401436, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 09/21/07

Report Problem", + "NAME": "H02522" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00461969193535, + 38.91253773335434, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 07/13/07

Report Problem", + "NAME": "H02523" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97907626040227, + 38.88315960146201, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 04/26/06

Report Problem", + "NAME": "H02524" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0223726676866, + 38.96506522365824, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H02525" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02237380545215, + 38.96604305965153, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H02526" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02105290772236, + 38.96558644269551, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H02527" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96175158600312, + 38.92230999037113, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 09/17/07

Report Problem", + "NAME": "H02528" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02429424818841, + 38.96483765219254, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H02529" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08384401659636, + 38.92899800094187, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H02530" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97407244182004, + 38.934161925371164, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H02531" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04776528729575, + 38.90158273835266, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 06/13/07

Report Problem", + "NAME": "H02532" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0477741582394, + 38.90074758788903, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 10/19/07

Report Problem", + "NAME": "H02533" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08878949369527, + 38.93234353971116, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/08/07

Report Problem", + "NAME": "H02534" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0194803771406, + 38.94642281374821, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 08/22/07

Report Problem", + "NAME": "H02535" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07049248536562, + 38.95798521892536, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/15/07

Report Problem", + "NAME": "H02536" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02459890932167, + 38.95198242334732, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 08/06/07

Report Problem", + "NAME": "H02902" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0143887434619, + 38.96856663211834, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H02903" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02180522638218, + 38.91772886939987, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 07/13/07

Report Problem", + "NAME": "H02904" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01940475425917, + 38.949154055270625, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 08/22/07

Report Problem", + "NAME": "H02905" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.040897844142, + 38.98695363977869, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H02906" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02313489206699, + 38.94977973101786, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 01/14/08

Report Problem", + "NAME": "H02908" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00003065967012, + 38.84738203330689, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H02909" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01970155064404, + 38.950887314757594, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 08/22/07

Report Problem", + "NAME": "H02910" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08736464203297, + 38.92760844786164, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US Pipe, AP Smith

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H02911" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96011631015338, + 38.8573554648712, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 12/17/07

Report Problem", + "NAME": "H02912" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08850282097029, + 38.92756926109673, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US Pipe, AP Smith

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H02913" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96386257262297, + 38.88012288687299, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Eddy

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H02914" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0699376582201, + 38.94974596661718, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/18/07

Report Problem", + "NAME": "H02915" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99163012405444, + 38.888394991187646, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 11/03/06

Report Problem", + "NAME": "H02916" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06702757555705, + 38.949749536027184, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H02917" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07733838562105, + 38.967086534709644, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H02918" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0885831439012, + 38.92877448591992, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 09/17/07

Report Problem", + "NAME": "H02919" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06973636272916, + 38.94885014153114, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, American Darling

In Service


Last Inspection Date: 06/15/07

Report Problem", + "NAME": "H02920" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06651544284968, + 38.94884236163414, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, American Darling

In Service


Last Inspection Date: 06/15/07

Report Problem", + "NAME": "H02921" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06802568692844, + 38.95146170298381, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US Pipe, AP Smith

In Service


Last Inspection Date: 06/18/07

Report Problem", + "NAME": "H02922" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06524231015274, + 38.95176906625256, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/18/07

Report Problem", + "NAME": "H02923" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06665594828573, + 38.951909851851, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/18/07

Report Problem", + "NAME": "H02924" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03176816151006, + 38.89721848945617, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 08/20/07

Report Problem", + "NAME": "H02925" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06509575606306, + 38.950803415889446, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/18/07

Report Problem", + "NAME": "H02926" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99382306172488, + 38.89281046491458, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 07/09/07

Report Problem", + "NAME": "H02927" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02882609154034, + 38.90570689899109, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 05/30/07

Report Problem", + "NAME": "H03087" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04776698264268, + 38.90850458380797, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H03088" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02815455389718, + 38.90652160667121, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, American Darling

In Service


Last Inspection Date: 05/30/07

Report Problem", + "NAME": "H03089" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0447434790466, + 38.90784136120179, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/11/07

Report Problem", + "NAME": "H03090" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07078317429435, + 38.93560885666946, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 03/20/07

Report Problem", + "NAME": "H03091" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03341630351177, + 38.919804401258716, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US Pipe

In Service


Last Inspection Date: 06/13/07

Report Problem", + "NAME": "H03092" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03208475040314, + 38.90186314024949, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP SMITH - O'BRIEN

In Service


Last Inspection Date: 10/05/07

Report Problem", + "NAME": "H03093" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03037686585058, + 38.905609116809615, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 07/18/07

Report Problem", + "NAME": "H03094" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0425887405051, + 38.9163995937398, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 10/03/07

Report Problem", + "NAME": "H03095" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05466293887393, + 38.918395878206084, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 11/15/06

Report Problem", + "NAME": "H03096" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05296743828444, + 38.91890325145118, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 11/15/06

Report Problem", + "NAME": "H03097" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04041173538481, + 38.91415293161991, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/13/07

Report Problem", + "NAME": "H03098" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03164030582494, + 38.899632314630544, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Clow Eddy

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H03099" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0433075056648, + 38.91604122130108, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 10/03/07

Report Problem", + "NAME": "H03100" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01772139508522, + 38.892333362761406, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H03101" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03208871737974, + 38.89953363185921, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/01/07

Report Problem", + "NAME": "H03102" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0813364855882, + 38.9107543116095, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H03103" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02305874662248, + 38.894909950671675, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H03104" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03469703694248, + 38.932553578595794, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/08/07

Report Problem", + "NAME": "H03105" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02306608203807, + 38.89599191704609, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H03106" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02341688809271, + 38.93110941478698, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US PIPE-MET 250 M94

In Service


Last Inspection Date: 07/18/07

Report Problem", + "NAME": "H03107" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08140393638062, + 38.91174491219483, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H03108" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02307672864536, + 38.928904419535314, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/12/07

Report Problem", + "NAME": "H03109" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02321323735772, + 38.929736751362, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/12/07

Report Problem", + "NAME": "H03111" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02363740761078, + 38.932757521025074, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US PIPE-MET 250 M94

In Service


Last Inspection Date: 05/16/07

Report Problem", + "NAME": "H03112" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02108444452564, + 38.96020832152155, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/23/07

Report Problem", + "NAME": "H03113" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9751703353952, + 38.939563106514754, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 01/11/08

Report Problem", + "NAME": "H03114" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01742002027113, + 38.89345571587333, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H03115" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08744946688167, + 38.9470383515712, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H03116" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08848230121285, + 38.94713986344964, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US Pipe, AP Smith

In Service


Last Inspection Date: 07/28/05

Report Problem", + "NAME": "H03117" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0479340301891, + 38.90643934270487, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 08/22/07

Report Problem", + "NAME": "H03118" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04285137720532, + 38.98895768083349, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H03119" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94193495963901, + 38.90569577398126, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 08/07/07

Report Problem", + "NAME": "H03120" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98230029298894, + 38.89551555416437, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 03/07/08

Report Problem", + "NAME": "H03121" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02365560071762, + 38.89401038185349, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 08/28/06

Report Problem", + "NAME": "H03122" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98807822613291, + 38.86387088247043, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H03123" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01971398518002, + 38.89252267868498, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H03124" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97983242169656, + 38.864979964405556, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 09/21/07

Report Problem", + "NAME": "H03125" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07296261495479, + 38.96986861548283, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, American Darling

In Service


Last Inspection Date: 06/15/07

Report Problem", + "NAME": "H03126" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09585423574843, + 38.93338040076271, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US Pipe, AP Smith

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H03127" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09741394888795, + 38.933635001211, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 09/12/07

Report Problem", + "NAME": "H03128" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0200994217569, + 38.89296300519965, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H03129" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02608030639787, + 38.89599669701374, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H03130" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02608327485271, + 38.89626499248735, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H03131" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0260869710429, + 38.894929600508185, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H03132" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07032810487607, + 38.96981385598583, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, American Darling, B84B

In Service


Last Inspection Date: 06/15/07

Report Problem", + "NAME": "H03133" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99106326491763, + 38.93160310137425, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H03134" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99244617314679, + 38.93153137570906, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H03135" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99361543002202, + 38.93049740888045, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H03136" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06999632434669, + 38.94401711428125, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H03137" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09425666496513, + 38.93503335500786, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H03138" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09611635346562, + 38.93598523441239, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H03139" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09610696448924, + 38.935959352268156, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H03140" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07011629969837, + 38.944717310565544, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, American Darling, B84B

In Service


Last Inspection Date: 06/04/07

Report Problem", + "NAME": "H03141" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99236947888178, + 38.930541628026205, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 11/08/07

Report Problem", + "NAME": "H03142" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09794780001978, + 38.935872065100014, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H03143" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02854188135831, + 38.98408985876794, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H02928" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94027872795944, + 38.901433086539136, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 05/12/07

Report Problem", + "NAME": "H02929" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05837722138072, + 38.97263133631645, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Clow

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H02930" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06137547955139, + 38.923426389022524, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 01/16/07

Report Problem", + "NAME": "H02931" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9451951819191, + 38.89968399208242, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/01/07

Report Problem", + "NAME": "H02932" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06402924165414, + 38.97130562674562, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H02933" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0200050247894, + 38.96723731558112, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H02934" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06623855970695, + 38.96765773369292, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H02935" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02000738459866, + 38.962654657219545, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H02936" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08852181372436, + 38.95709113065836, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/05/07

Report Problem", + "NAME": "H02937" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02187068391794, + 38.9491867343747, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US PIPE-A P SMITH

In Service


Last Inspection Date: 07/09/07

Report Problem", + "NAME": "H02938" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01762649204353, + 38.94994516439553, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/16/07

Report Problem", + "NAME": "H02939" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08852757171282, + 38.95600494548803, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US Pipe, AP Smith

In Service


Last Inspection Date: 06/05/07

Report Problem", + "NAME": "H02940" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02215820738881, + 38.95088274915812, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 08/13/07

Report Problem", + "NAME": "H02941" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97110287178758, + 38.86829860368583, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 08/01/07

Report Problem", + "NAME": "H02942" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.101181272711, + 38.92303626298996, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H02943" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03668272521205, + 38.9472520915482, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/16/07

Report Problem", + "NAME": "H02944" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9827990160731, + 38.935010991342544, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H02945" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98292247631936, + 38.93399192734275, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H02946" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9862392881322, + 38.92987011919891, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Kennedy

In Service


Last Inspection Date: 12/21/07

Report Problem", + "NAME": "H02947" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96580306856188, + 38.931464603772504, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 08/09/07

Report Problem", + "NAME": "H03227" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02092291998343, + 38.950915451586106, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 08/17/07

Report Problem", + "NAME": "H02731" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99504803004115, + 38.886799640154344, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 10/23/06

Report Problem", + "NAME": "H02732" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03356052041585, + 38.98325528461156, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H02733" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97735925089813, + 38.90376141255918, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, KENNEDY-K81-A/D GUAR

In Service


Last Inspection Date: 09/05/07

Report Problem", + "NAME": "H02734" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05700505788282, + 38.929619667189975, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 01/19/07

Report Problem", + "NAME": "H02735" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98823540752882, + 38.88690853239119, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 05/09/06

Report Problem", + "NAME": "H02736" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99369186423148, + 38.888211782237654, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 11/03/06

Report Problem", + "NAME": "H02737" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98847055158396, + 38.885407291194156, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H02738" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0644464776546, + 38.975088712227425, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Kennedy, K81D

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H02739" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04781167214053, + 38.92154345500451, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 10/30/06

Report Problem", + "NAME": "H02740" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04792649812599, + 38.92060728084153, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 10/30/06

Report Problem", + "NAME": "H02741" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04697267821008, + 38.91787419006351, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 10/25/06

Report Problem", + "NAME": "H02742" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08377053342369, + 38.949734683898505, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US Pipe, AP Smith

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H02743" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92615456755493, + 38.89730507398183, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H02744" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04023335344576, + 38.94750085820114, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 07/23/07

Report Problem", + "NAME": "H02745" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04991627848544, + 38.914764554297705, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/13/07

Report Problem", + "NAME": "H02746" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98939281339175, + 38.88541362139925, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 04/28/06

Report Problem", + "NAME": "H02747" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03317375143408, + 38.91266352015362, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/13/07

Report Problem", + "NAME": "H02748" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9893943475846, + 38.88416452819514, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 04/28/06

Report Problem", + "NAME": "H02749" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0498702157463, + 38.91585565446687, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 10/31/06

Report Problem", + "NAME": "H02750" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98935164636526, + 38.94277262419313, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H02751" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98558657960098, + 38.87850638413591, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 11/01/07

Report Problem", + "NAME": "H02752" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98920779018394, + 38.94171793866747, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H02753" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05958974015776, + 38.93686741519019, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, KENNEDY-K81-A/D GUAR

In Service


Last Inspection Date: 03/04/08

Report Problem", + "NAME": "H02754" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96386806478893, + 38.923377069036455, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/31/07

Report Problem", + "NAME": "H02755" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96500196998929, + 38.92349271161427, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/31/07

Report Problem", + "NAME": "H02756" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99623721789736, + 38.9051931170514, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 02/29/08

Report Problem", + "NAME": "H02757" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.1041711439131, + 38.93034687873001, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller, Super Centurion

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H02758" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.10567693920379, + 38.93034570706572, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US Pipe, AP Smith

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H02759" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06978821523562, + 38.95321953843046, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H02760" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0182030047528, + 38.95784771400652, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/09/07

Report Problem", + "NAME": "H02762" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06113582979371, + 38.908504650197806, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 07/02/07

Report Problem", + "NAME": "H02763" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02846546381095, + 38.96597802008824, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H02764" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02851827276753, + 38.96498652348279, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H02765" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98822260263263, + 38.939553142292176, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H02766" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05418627623949, + 38.94846208211238, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 12/13/06

Report Problem", + "NAME": "H02767" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98958252679594, + 38.88913655821772, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 05/09/06

Report Problem", + "NAME": "H02768" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9874939143268, + 38.889722239991485, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 04/13/06

Report Problem", + "NAME": "H02769" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98821542043567, + 38.88963535716788, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 04/13/06

Report Problem", + "NAME": "H02770" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02429468621548, + 38.96023289465471, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H02771" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02097121178902, + 38.95197530217497, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 08/06/07

Report Problem", + "NAME": "H02772" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01810356806486, + 38.966000198826286, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 01/25/08

Report Problem", + "NAME": "H02773" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98838392888722, + 38.8881346416142, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H02774" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02408738607409, + 38.96662288628026, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H02775" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97849885896642, + 38.935017233813696, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H02776" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99015482688863, + 38.882948561934825, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 02/29/08

Report Problem", + "NAME": "H02777" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01355757632085, + 38.963875020878895, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H02778" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0620770271892, + 38.93738847588149, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Kennedy

In Service


Last Inspection Date: 01/22/07

Report Problem", + "NAME": "H02779" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0645353958969, + 38.93715377542695, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 11/26/05

Report Problem", + "NAME": "H02780" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99142816172018, + 38.88300746006085, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 02/29/08

Report Problem", + "NAME": "H02781" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99389191034899, + 38.88354791080574, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 10/31/06

Report Problem", + "NAME": "H02782" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9936908099422, + 38.88527491529525, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 11/03/06

Report Problem", + "NAME": "H02783" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99487984117705, + 38.88536244485919, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 10/20/06

Report Problem", + "NAME": "H02784" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9577998695163, + 38.92928478786997, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/31/07

Report Problem", + "NAME": "H02785" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99736249516249, + 38.888732606981996, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 10/23/06

Report Problem", + "NAME": "H02786" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03606541976758, + 38.98042876017387, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H02787" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03664211062159, + 38.98092221336629, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H02788" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03840386489804, + 38.98111491950425, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H02789" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06459310015308, + 38.96299674096101, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H02790" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06400379625342, + 38.964058777672626, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H02791" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0862127218135, + 38.949601792913846, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US Pipe, AP Smith

In Service


Last Inspection Date: 06/05/07

Report Problem", + "NAME": "H02792" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00210435365605, + 38.88681820235681, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 05/19/07

Report Problem", + "NAME": "H02793" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01761415501166, + 38.9493189740229, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 08/22/07

Report Problem", + "NAME": "H02794" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08633562595578, + 38.94872322377017, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H02795" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02811227340482, + 38.97806615772773, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 10/26/07

Report Problem", + "NAME": "H02796" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03267863074426, + 38.97804039652529, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H02797" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02287541079497, + 38.89859864151087, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H02798" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00337703261773, + 38.88742496789653, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 10/30/06

Report Problem", + "NAME": "H02799" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01564936281108, + 38.97381538961255, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H02800" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07231816644787, + 38.944053706900114, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H02801" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02504822445354, + 38.970792022856486, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H02802" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00480546922454, + 38.883310042204364, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 10/24/06

Report Problem", + "NAME": "H02803" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00708853196168, + 38.88435647499218, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H02804" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03507066553969, + 38.9583983566694, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H02805" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06049350439324, + 38.908516443147796, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 07/02/07

Report Problem", + "NAME": "H02806" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96497734743998, + 38.93622278809826, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP SMITH - O'BRIEN

In Service


Last Inspection Date: 08/10/07

Report Problem", + "NAME": "H02807" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03606738466014, + 38.983261699971635, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H02808" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03517450948188, + 38.957169778796455, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H02809" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96355366677835, + 38.92123712547026, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H02810" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00914653023953, + 38.88443489407119, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H02811" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02886988744604, + 38.9498790328301, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 07/18/07

Report Problem", + "NAME": "H02812" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0376500024943, + 38.96976644371336, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H02813" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99159666743031, + 38.89129452337258, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H02814" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03755681828297, + 38.925968484214685, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/01/07

Report Problem", + "NAME": "H02815" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0386499319476, + 38.92640204939267, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 10/19/06

Report Problem", + "NAME": "H02816" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9883723361935, + 38.89681694406874, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 08/24/07

Report Problem", + "NAME": "H02817" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05920013940896, + 38.96484396320037, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US Pipe, AP Smith

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H02818" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03981729799737, + 38.98593162585151, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H02819" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03666006178169, + 38.98577612233834, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H02820" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95936042291098, + 38.89707316470831, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/01/07

Report Problem", + "NAME": "H02821" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09662060489372, + 38.91815114002967, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H02822" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.038639075481, + 38.92535102565968, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 02/11/08

Report Problem", + "NAME": "H02823" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0160874479547, + 38.95755364327408, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H02824" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98358950539925, + 38.883975023099254, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 04/26/06

Report Problem", + "NAME": "H02825" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0115096236005, + 38.95771178306311, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H02826" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02872088746602, + 38.98327030166299, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H02827" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98838783107377, + 38.90544650991937, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/01/07

Report Problem", + "NAME": "H02828" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03497602345617, + 38.979443789792036, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H02829" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98450900238207, + 38.89365593737253, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US PIPE-MET 250 M94

In Service


Last Inspection Date: 09/05/07

Report Problem", + "NAME": "H02830" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9845065187825, + 38.89468862931972, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 05/29/07

Report Problem", + "NAME": "H02831" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06116240964118, + 38.930197061130215, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 01/17/07

Report Problem", + "NAME": "H02832" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04515146176038, + 38.919536178937236, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 10/25/06

Report Problem", + "NAME": "H02833" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05939895076244, + 38.91197129015594, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H02834" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98681380517935, + 38.907733012885835, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H02835" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00553069177245, + 38.91190689388572, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/12/07

Report Problem", + "NAME": "H02836" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99250686626317, + 38.903827856858626, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Kennedy

In Service


Last Inspection Date: 06/01/07

Report Problem", + "NAME": "H02837" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04962914635318, + 38.90316895449359, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/12/07

Report Problem", + "NAME": "H02838" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05247266824095, + 38.9001298416467, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US Pipe

In Service


Last Inspection Date: 05/25/07

Report Problem", + "NAME": "H02839" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97604911519802, + 38.936216266633835, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H02840" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03042100750358, + 38.89976240391909, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Clow Eddy

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H02841" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04001351905193, + 38.924347387804595, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 10/04/07

Report Problem", + "NAME": "H02842" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.034326080924, + 38.91816797296458, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 11/09/06

Report Problem", + "NAME": "H02843" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05135344376176, + 38.901848683339836, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 05/25/07

Report Problem", + "NAME": "H02844" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9848926326764, + 38.906201235112746, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/04/07

Report Problem", + "NAME": "H02845" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03861924822975, + 38.91190855187142, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/13/07

Report Problem", + "NAME": "H02846" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01981758338732, + 38.95213004931649, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 08/06/07

Report Problem", + "NAME": "H02847" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9873312335747, + 38.94188502526387, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H02848" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06897721180758, + 38.90789082427492, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/02/07

Report Problem", + "NAME": "H02849" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96011635569127, + 38.85842863853633, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 12/17/07

Report Problem", + "NAME": "H02850" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01714663297176, + 38.94540403641226, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H02851" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03627110790353, + 38.960841399367695, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H02852" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03836330202999, + 38.940738804845225, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, CLOW - MEDALLION

In Service


Last Inspection Date: 09/13/07

Report Problem", + "NAME": "H02853" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03606371287357, + 38.98232375662743, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H02854" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01373058280289, + 38.97003265820491, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H02855" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04075901523107, + 38.94781493894056, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 07/23/07

Report Problem", + "NAME": "H02856" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03961425219778, + 38.94896500493843, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 07/23/07

Report Problem", + "NAME": "H02857" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08188400494964, + 38.94799114368281, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H02858" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07126631225275, + 38.96218720187305, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H02859" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0733276710173, + 38.927413438138814, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/08/07

Report Problem", + "NAME": "H02860" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07332082549893, + 38.92609469685907, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H02861" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97739677370338, + 38.88354364027425, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 04/10/06

Report Problem", + "NAME": "H02862" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05943070770421, + 38.928994642311245, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 01/19/07

Report Problem", + "NAME": "H02863" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01816270221923, + 38.961417233318755, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H02864" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08637538061116, + 38.94795314850212, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 12/20/07

Report Problem", + "NAME": "H02865" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08271188351608, + 38.9107572646946, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H02866" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03633603086506, + 38.924808373675376, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 10/30/06

Report Problem", + "NAME": "H02867" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03638060500347, + 38.928564926314, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 11/15/06

Report Problem", + "NAME": "H02868" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03638443136809, + 38.92763329442551, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 11/11/06

Report Problem", + "NAME": "H02869" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03632638903728, + 38.92634597927871, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 10/28/06

Report Problem", + "NAME": "H02870" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03636657586856, + 38.93375563460904, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, KENNEDY-K81-A/D GUAR

In Service


Last Inspection Date: 09/10/07

Report Problem", + "NAME": "H02871" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08613134814472, + 38.927644486717035, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US Pipe, AP Smith

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H02872" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07055680850449, + 38.93900010465631, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 02/27/08

Report Problem", + "NAME": "H02873" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98357520181932, + 38.92538268942487, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, CLOW - EDDY

In Service


Last Inspection Date: 07/31/07

Report Problem", + "NAME": "H02874" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07522495460594, + 38.921755168866255, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, American Darling

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H02875" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08636657697011, + 38.95098914331841, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US Pipe, AP Smith

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H02876" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01999650957241, + 38.96674601639446, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H02877" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.063921121912, + 38.91985356575158, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 09/28/07

Report Problem", + "NAME": "H02878" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98236021192426, + 38.88871250430753, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 03/06/08

Report Problem", + "NAME": "H02879" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.10673440451829, + 38.93022662910844, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H02880" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07237723894121, + 38.93190779112898, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Kennedy

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H02881" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02483786340854, + 38.94303296288861, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 09/15/07

Report Problem", + "NAME": "H02882" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00135270385104, + 38.9013738532868, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/23/07

Report Problem", + "NAME": "H02883" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01979605834092, + 38.96136044139613, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H02884" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06269314730781, + 38.94076765411844, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 01/23/07

Report Problem", + "NAME": "H02885" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01477651850657, + 38.95675570231492, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 08/14/07

Report Problem", + "NAME": "H02886" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99367237037428, + 38.89955134402845, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/04/07

Report Problem", + "NAME": "H02887" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98708760656741, + 38.93836563023403, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H02888" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99368665608712, + 38.89822197206655, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 05/30/07

Report Problem", + "NAME": "H02889" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03614336191062, + 38.97518158899454, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H02890" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06458191801624, + 38.91046945310282, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 11/09/07

Report Problem", + "NAME": "H02891" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04547516810061, + 38.912661596130256, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/13/07

Report Problem", + "NAME": "H02892" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9906903057795, + 38.9276797012508, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Kennedy

In Service


Last Inspection Date: 07/19/07

Report Problem", + "NAME": "H02893" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99689708810793, + 38.892597584106376, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 10/22/06

Report Problem", + "NAME": "H02894" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98086376687272, + 38.89670413456619, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 05/29/07

Report Problem", + "NAME": "H02895" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02254618472847, + 38.96724671726225, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H02896" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06269067060322, + 38.95323311748991, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US Pipe

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H02897" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06168986025702, + 38.95274852743326, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US Pipe, AP Smith

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H02898" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02410692005859, + 38.9673348398549, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H02899" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06073249159013, + 38.92543132842902, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Eddy

In Service


Last Inspection Date: 01/16/07

Report Problem", + "NAME": "H02900" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02364450237229, + 38.95095242526244, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 08/13/07

Report Problem", + "NAME": "H02901" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03523052530355, + 38.95175756798051, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 07/13/07

Report Problem", + "NAME": "H03297" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03423424607234, + 38.91708507249467, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 01/03/07

Report Problem", + "NAME": "H03298" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98973078274481, + 38.9068140489427, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 07/31/07

Report Problem", + "NAME": "H03299" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98885272304648, + 38.90644633779362, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/01/07

Report Problem", + "NAME": "H03300" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03428090131767, + 38.93596628949295, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 05/23/07

Report Problem", + "NAME": "H03301" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06431463065022, + 38.95987453370289, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 07/06/07

Report Problem", + "NAME": "H03302" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04372931068744, + 38.92239311552636, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 10/31/06

Report Problem", + "NAME": "H03303" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.11076819424653, + 38.93302548786255, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H03304" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97476030792609, + 38.8994430757703, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 08/28/07

Report Problem", + "NAME": "H03305" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05016570493255, + 38.90641621823128, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/12/07

Report Problem", + "NAME": "H03306" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.10074616355688, + 38.92244171100309, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H03307" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0359774153151, + 38.917496742990586, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H03308" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06401258157139, + 38.94512770751248, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 12/19/06

Report Problem", + "NAME": "H03309" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.972553090231, + 38.89710844848632, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/29/07

Report Problem", + "NAME": "H03310" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04823409827345, + 38.904661304085934, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/11/07

Report Problem", + "NAME": "H03311" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0579089958781, + 38.919203379751934, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 01/16/07

Report Problem", + "NAME": "H03312" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03471726719849, + 38.918058171978856, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 07/20/07

Report Problem", + "NAME": "H03313" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05929658158536, + 38.92003715234638, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, U.S. Pipe

In Service


Last Inspection Date: 01/16/07

Report Problem", + "NAME": "H03314" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0491928417682, + 38.91921631032356, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 10/30/06

Report Problem", + "NAME": "H03315" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99755014156088, + 38.90963021299381, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/02/07

Report Problem", + "NAME": "H03316" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02324493312351, + 38.971208837008994, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 10/31/07

Report Problem", + "NAME": "H03317" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97334939813467, + 38.86956466614988, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 08/15/07

Report Problem", + "NAME": "H03318" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9295753801931, + 38.90712992640007, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 05/28/07

Report Problem", + "NAME": "H03319" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0013728864496, + 38.93113383195846, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H03320" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96556233456266, + 38.87207556892842, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H03321" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00068902400164, + 38.931156331733064, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H03322" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96461037011889, + 38.87828911533239, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H03323" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02609296347707, + 38.94182111077709, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 08/15/07

Report Problem", + "NAME": "H03324" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00070550430765, + 38.91476881807865, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, CLOW - EDDY

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H03325" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98784616603112, + 38.867320684134896, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/05/07

Report Problem", + "NAME": "H03326" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.033996320508, + 38.934752188852485, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 05/24/07

Report Problem", + "NAME": "H03327" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9858320785056, + 38.866959102776605, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 06/05/07

Report Problem", + "NAME": "H03328" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00803190570673, + 38.910447640819484, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/12/07

Report Problem", + "NAME": "H03329" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04408417959783, + 38.90728380595576, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/11/07

Report Problem", + "NAME": "H03330" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02936940340913, + 38.899748340725566, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H03433" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02793236450039, + 38.89990313246803, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 05/29/07

Report Problem", + "NAME": "H03434" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99764032626777, + 38.93266149871578, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H03435" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06139588781582, + 38.96683331148713, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H03436" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05998637153127, + 38.967377411437006, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Kennedy

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H03437" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01780065176634, + 38.95746199717616, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 08/07/07

Report Problem", + "NAME": "H03438" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0850621258863, + 38.92664400433839, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H03439" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01811267022678, + 38.91473332884798, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/12/07

Report Problem", + "NAME": "H03440" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98001187991588, + 38.903631671757026, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 07/06/07

Report Problem", + "NAME": "H03441" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03166179652261, + 38.94831104108468, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 07/17/07

Report Problem", + "NAME": "H03442" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09926604370759, + 38.94976474827561, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US Pipe, AP Smith

In Service


Last Inspection Date: 06/04/07

Report Problem", + "NAME": "H03443" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94082029569975, + 38.898296416762875, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 05/08/07

Report Problem", + "NAME": "H03444" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96694238720148, + 38.871877728830235, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H03445" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98865543317764, + 38.907761222173676, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H03446" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.10668063271588, + 38.93213531451373, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, American Darling, B84B

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H03447" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06378603850308, + 38.962212835309344, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/15/07

Report Problem", + "NAME": "H03448" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93794536763046, + 38.89830002372759, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/01/07

Report Problem", + "NAME": "H03449" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04117553848172, + 38.92703646224849, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 10/19/06

Report Problem", + "NAME": "H03450" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02667355546363, + 38.98298752315273, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H03451" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07005082813194, + 38.97295400624552, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/15/07

Report Problem", + "NAME": "H03452" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97412353447909, + 38.94080864514366, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H03453" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04214917276605, + 38.98661722539487, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H03454" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93476525744737, + 38.893516667819924, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H03455" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97748181777493, + 38.927778093133114, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 08/07/07

Report Problem", + "NAME": "H03456" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97085947471197, + 38.87144759376663, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H03457" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94331158360622, + 38.90472201663022, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 09/26/07

Report Problem", + "NAME": "H03458" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05783447726918, + 38.971482776529804, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US Pipe, AP Smith

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H03459" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06009025073817, + 38.96966792018786, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US Pipe, AP Smith

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H03460" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03254673160264, + 38.94820231137163, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, CLOW - EDDY

In Service


Last Inspection Date: 07/17/07

Report Problem", + "NAME": "H03461" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07712061955102, + 38.94639891718966, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/04/07

Report Problem", + "NAME": "H03462" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9860802044197, + 38.93712239682275, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H03463" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05382961284064, + 38.91634468059244, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/11/07

Report Problem", + "NAME": "H03464" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98755501515522, + 38.90393692183332, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 11/14/07

Report Problem", + "NAME": "H03465" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04347281206081, + 38.92345821105997, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 10/04/07

Report Problem", + "NAME": "H03466" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01610489144294, + 38.906536915075314, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/12/07

Report Problem", + "NAME": "H03331" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03469643328886, + 38.95624689896507, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H03332" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01716911321745, + 38.960098025323695, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/05/07

Report Problem", + "NAME": "H03333" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06523098739477, + 38.96856797063749, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H03334" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04234996255478, + 38.911180808629, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H03335" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02567608034323, + 38.97667218153771, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H03336" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0463103182848, + 38.91918370699859, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 10/24/06

Report Problem", + "NAME": "H03337" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02583510740307, + 38.959222423474095, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H03338" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04085210627483, + 38.91980728118933, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 09/20/07

Report Problem", + "NAME": "H03339" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01451198699614, + 38.96507280523883, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 01/22/08

Report Problem", + "NAME": "H03340" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01270880921302, + 38.96384837071562, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H03341" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01371332989149, + 38.95755259459596, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H03342" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.10136443028597, + 38.940135366154614, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 01/08/08

Report Problem", + "NAME": "H03343" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97010657452317, + 38.870666572975466, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H03344" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02413036517737, + 38.95952384371296, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 02/12/08

Report Problem", + "NAME": "H03345" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0363991665629, + 38.9186570383677, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/13/07

Report Problem", + "NAME": "H03346" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03026347006455, + 38.94830869093847, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 08/09/07

Report Problem", + "NAME": "H03347" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97441343227625, + 38.90013628363326, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 08/30/07

Report Problem", + "NAME": "H03348" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99606881935534, + 38.93123222569328, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H03349" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00813613177841, + 38.898990605817986, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H03350" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98074488060112, + 38.928314031291514, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/30/07

Report Problem", + "NAME": "H03351" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03216073892442, + 38.89629815961426, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US Pipe

In Service


Last Inspection Date: 02/29/08

Report Problem", + "NAME": "H03352" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98089050300352, + 38.88593258465733, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 11/17/07

Report Problem", + "NAME": "H03353" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9827160037569, + 38.899863115137556, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/02/07

Report Problem", + "NAME": "H03354" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97785202396865, + 38.93317642864588, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/12/07

Report Problem", + "NAME": "H03355" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98064753189516, + 38.88658736383662, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, U.S. Pipe

In Service


Last Inspection Date: 04/02/07

Report Problem", + "NAME": "H03356" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98452687382702, + 38.89087227202959, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 05/01/06

Report Problem", + "NAME": "H03357" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0408396518367, + 38.99040349653492, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H03358" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00136040600324, + 38.903853240550944, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/01/07

Report Problem", + "NAME": "H03359" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04178691624276, + 38.98969959429973, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H03360" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98950462436757, + 38.89043620750151, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, USP

In Service


Last Inspection Date: 11/02/06

Report Problem", + "NAME": "H03361" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98930192604975, + 38.900290368575824, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, CLOW - EDDY

In Service


Last Inspection Date: 08/30/07

Report Problem", + "NAME": "H03362" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08196364767504, + 38.96213651154911, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/15/07

Report Problem", + "NAME": "H03363" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00217201741032, + 38.894579887660605, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Eddy

In Service


Last Inspection Date: 07/11/07

Report Problem", + "NAME": "H03364" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00073257896204, + 38.89352328704712, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/27/07

Report Problem", + "NAME": "H03365" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00129488980372, + 38.88681949332545, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 08/31/07

Report Problem", + "NAME": "H03366" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99818834996307, + 38.893656671220334, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 11/17/06

Report Problem", + "NAME": "H03367" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9827738929664, + 38.87940478842192, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 05/19/06

Report Problem", + "NAME": "H03368" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02978944986528, + 38.89747306465408, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H03369" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00263207647633, + 38.89093485744887, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Kennedy

In Service


Last Inspection Date: 06/27/07

Report Problem", + "NAME": "H03370" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9970116738263, + 38.89352236830028, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 11/17/06

Report Problem", + "NAME": "H03371" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99382340425214, + 38.87740396939212, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 11/07/06

Report Problem", + "NAME": "H03372" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99609680847905, + 38.89187101697557, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/12/07

Report Problem", + "NAME": "H03373" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00143943869173, + 38.8908449026043, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/27/07

Report Problem", + "NAME": "H03374" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9938183830671, + 38.89532289850454, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 01/10/08

Report Problem", + "NAME": "H03375" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98059207362998, + 38.89483170998907, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 05/29/07

Report Problem", + "NAME": "H03376" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99726706755538, + 38.89206273034278, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 10/22/06

Report Problem", + "NAME": "H03377" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99270926672081, + 38.896038702323644, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 07/04/07

Report Problem", + "NAME": "H03378" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99382389041337, + 38.89681954852394, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US PIPE-MET 250 M94

In Service


Last Inspection Date: 07/02/07

Report Problem", + "NAME": "H03379" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99957258814449, + 38.880482794892494, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 11/01/06

Report Problem", + "NAME": "H03380" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00463628183971, + 38.89193024724656, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/27/07

Report Problem", + "NAME": "H03381" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00266135903874, + 38.89198713374388, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/27/07

Report Problem", + "NAME": "H03382" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00357609404077, + 38.88337790143777, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H03383" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00649776234197, + 38.91980883631186, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H03384" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93158734956272, + 38.89876956558682, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP SMITH - O'BRIEN

In Service


Last Inspection Date: 05/28/07

Report Problem", + "NAME": "H03385" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02408775649945, + 38.92709242768263, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 09/06/06

Report Problem", + "NAME": "H03386" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98826504237935, + 38.90687277145959, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/01/07

Report Problem", + "NAME": "H03387" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01524786921011, + 38.95773998356088, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H03388" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01510927572625, + 38.95864329582148, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H03389" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01601229071359, + 38.958674803639504, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H03390" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04425217960876, + 38.90034251792656, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/25/07

Report Problem", + "NAME": "H03391" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97995818439382, + 38.89318979179849, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 10/01/06

Report Problem", + "NAME": "H03392" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06516252786108, + 38.94676396739446, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 03/14/07

Report Problem", + "NAME": "H03393" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03218546279713, + 38.985667403902205, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H03394" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03041646992394, + 38.985505531321294, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H03395" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98578779691665, + 38.94292929569741, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 02/01/08

Report Problem", + "NAME": "H03396" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09914738347675, + 38.93457083996036, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H03397" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08851498953393, + 38.95539577085225, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 11/14/06

Report Problem", + "NAME": "H03398" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98716895522595, + 38.944152924790885, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US Pipe

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H03399" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02342075674645, + 38.963814087919516, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 09/18/07

Report Problem", + "NAME": "H03400" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0337478416161, + 38.90033240399695, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US Pipe

In Service


Last Inspection Date: 06/01/07

Report Problem", + "NAME": "H03401" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02427068161309, + 38.96282511490076, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H03402" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06308281390493, + 38.951898655356715, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US Pipe, AP Smith

In Service


Last Inspection Date: 09/28/07

Report Problem", + "NAME": "H03403" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94205693021019, + 38.904697303774235, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 09/24/07

Report Problem", + "NAME": "H03404" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98044613797795, + 38.941511295281714, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 08/17/07

Report Problem", + "NAME": "H03405" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9659531069675, + 38.93609799616704, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, CLOW - EDDY

In Service


Last Inspection Date: 08/10/07

Report Problem", + "NAME": "H03406" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92633030369664, + 38.89446299077991, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 09/19/07

Report Problem", + "NAME": "H03407" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06267732645263, + 38.90390466511905, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/18/07

Report Problem", + "NAME": "H03408" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97735007187362, + 38.89607085770454, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 05/30/07

Report Problem", + "NAME": "H03409" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9973775533355, + 38.88609521532298, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H03410" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02982017295054, + 38.98373785017111, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H03411" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06847002137327, + 38.927590641890546, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, U.S. Pipe

In Service


Last Inspection Date: 07/23/07

Report Problem", + "NAME": "H03412" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06287644500546, + 38.903333941911434, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 07/27/07

Report Problem", + "NAME": "H03413" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03360247456936, + 38.89901966666405, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Clow Eddy

In Service


Last Inspection Date: 06/04/07

Report Problem", + "NAME": "H03414" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08615235336855, + 38.92662663943616, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H03415" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93156893220028, + 38.90066374296222, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 05/28/07

Report Problem", + "NAME": "H03416" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02580865941684, + 38.96797541316662, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H03417" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.10759934927498, + 38.92589935689342, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US Pipe, AP Smith

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H03418" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03519530289861, + 38.89850501841142, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H03419" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03502880919689, + 38.8984907271415, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H03420" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99360730840769, + 38.929493891838334, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H03421" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96082276272078, + 38.931304809550554, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 07/27/07

Report Problem", + "NAME": "H03422" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00546675425886, + 38.927512173372406, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, KENNEDY-K81-A/D GUAR

In Service


Last Inspection Date: 06/27/07

Report Problem", + "NAME": "H03423" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00465765290892, + 38.928481619922515, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP SMITH - O'BRIEN

In Service


Last Inspection Date: 06/08/07

Report Problem", + "NAME": "H03424" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92341534107159, + 38.90081623862845, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H03425" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92454528284608, + 38.90107387430716, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H03426" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03565234909287, + 38.91042511841834, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/13/07

Report Problem", + "NAME": "H03427" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04618683047882, + 38.92317331773082, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 10/04/07

Report Problem", + "NAME": "H03428" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01718318174782, + 38.95772095094627, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/09/07

Report Problem", + "NAME": "H03429" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02503023342399, + 38.89989009760997, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/01/07

Report Problem", + "NAME": "H03430" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02380387978829, + 38.899896524653215, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/19/07

Report Problem", + "NAME": "H03431" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02589135426061, + 38.89966971861209, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/19/07

Report Problem", + "NAME": "H03432" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96888924928506, + 38.93032416746363, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, KENNEDY-K81-A/D GUAR

In Service


Last Inspection Date: 07/27/07

Report Problem", + "NAME": "H03228" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94244393855773, + 38.89603332682141, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 05/29/07

Report Problem", + "NAME": "H03229" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06686883146358, + 38.96027083349703, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H03230" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9982990173124, + 38.896766676174806, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/30/07

Report Problem", + "NAME": "H03231" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0318548600467, + 38.96025676191078, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H03232" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94092887782952, + 38.89573406927598, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/29/07

Report Problem", + "NAME": "H03233" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05310225265829, + 38.90379200372231, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/12/07

Report Problem", + "NAME": "H03234" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97530695718312, + 38.937280892983, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H03235" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02984975618305, + 38.9297171290891, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 09/21/07

Report Problem", + "NAME": "H03236" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98613881982891, + 38.93072204107117, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 07/09/07

Report Problem", + "NAME": "H03237" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97137625642253, + 38.89786249033922, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 05/29/07

Report Problem", + "NAME": "H03238" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97024276680973, + 38.93622643622479, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H03239" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93767823438161, + 38.89527454800895, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 05/29/07

Report Problem", + "NAME": "H03240" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04891458948948, + 38.9140520942187, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/12/07

Report Problem", + "NAME": "H03241" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94050592034135, + 38.89435393475314, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H03242" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01422850545389, + 38.950169969405366, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H03243" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98910193086898, + 38.905895789060146, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/01/07

Report Problem", + "NAME": "H03244" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01562374262963, + 38.950124867004895, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H03245" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01575827746454, + 38.95100529057552, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H03246" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01464972767037, + 38.95122219179631, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H03247" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05803106258423, + 38.90464530893065, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 07/20/07

Report Problem", + "NAME": "H03248" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00061885650385, + 38.907315047410485, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 08/20/07

Report Problem", + "NAME": "H03249" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02131049663008, + 38.96997450039332, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 11/06/07

Report Problem", + "NAME": "H03250" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04055047279483, + 38.927947880767114, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 05/30/07

Report Problem", + "NAME": "H03251" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07081194986277, + 38.934782660775284, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 03/20/07

Report Problem", + "NAME": "H03252" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93729333939501, + 38.899674198487396, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 03/04/08

Report Problem", + "NAME": "H03253" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01603393578681, + 38.957137847287456, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 02/04/08

Report Problem", + "NAME": "H03254" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02358998154966, + 38.93010707057808, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 08/05/06

Report Problem", + "NAME": "H03255" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02191745636011, + 38.933068867912276, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, CLOW - EDDY

In Service


Last Inspection Date: 07/20/07

Report Problem", + "NAME": "H03256" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.022497638117, + 38.93397815488185, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, KENNEDY-K81-A/D GUAR

In Service


Last Inspection Date: 05/12/07

Report Problem", + "NAME": "H03257" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.031922700864, + 38.96607360569486, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H03258" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92616527381887, + 38.88987904756654, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H03259" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04001458312968, + 38.94073239584887, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, CLOW - MEDALLION

In Service


Last Inspection Date: 05/14/07

Report Problem", + "NAME": "H03260" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09691833606425, + 38.91922675867083, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H03261" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09545286852136, + 38.91921827195258, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H03262" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92737624913352, + 38.903540382115466, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 05/24/07

Report Problem", + "NAME": "H03263" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02976871844585, + 38.959369574895995, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H03264" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99271603523866, + 38.880327507124356, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 11/04/06

Report Problem", + "NAME": "H03265" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02413506064522, + 38.96115808459131, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H03266" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07221836024834, + 38.921208692754206, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 08/10/07

Report Problem", + "NAME": "H03267" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92604935599762, + 38.89183160280566, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/08/07

Report Problem", + "NAME": "H03268" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07230046925673, + 38.93466808271233, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 02/29/08

Report Problem", + "NAME": "H03269" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04456011873708, + 38.9224091607994, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 10/16/06

Report Problem", + "NAME": "H03270" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0121012816985, + 38.905738204688184, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/12/07

Report Problem", + "NAME": "H03271" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04018867609298, + 38.913248814745145, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/13/07

Report Problem", + "NAME": "H03272" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09863817425865, + 38.94207134705794, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Kennedy, K81A

In Service


Last Inspection Date: 06/05/07

Report Problem", + "NAME": "H03273" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0401485840224, + 38.91488549911225, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 06/13/07

Report Problem", + "NAME": "H03274" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99067203042787, + 38.86161732073139, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H03275" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00335825259928, + 38.88513816406251, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 05/07/07

Report Problem", + "NAME": "H03276" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06763283633927, + 38.92623420665324, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 03/21/07

Report Problem", + "NAME": "H03277" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0332973706502, + 38.91190541524462, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/13/07

Report Problem", + "NAME": "H03278" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09099443256319, + 38.93144978695123, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H03279" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0036762592087, + 38.88264829117101, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 11/05/06

Report Problem", + "NAME": "H03280" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00064494982652, + 38.88334813664974, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 09/29/07

Report Problem", + "NAME": "H03281" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03646717927317, + 38.976908113652264, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H03282" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06378028903576, + 38.96964855288482, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H03284" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.998286048646, + 38.88573273493939, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 10/19/06

Report Problem", + "NAME": "H03285" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96527873609115, + 38.86153717534136, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 08/20/07

Report Problem", + "NAME": "H03286" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93060495846773, + 38.90712227279393, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 05/28/07

Report Problem", + "NAME": "H03287" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08522915921506, + 38.95961080136902, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/05/07

Report Problem", + "NAME": "H03288" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0346558187928, + 38.981274373552864, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H03289" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07692993278623, + 38.920731532738714, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Eddy

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H03290" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01791361191718, + 38.9746634328977, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H03291" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01322022632348, + 38.97327780788181, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H03292" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00933043029164, + 38.911905724386, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 08/07/07

Report Problem", + "NAME": "H03293" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01055762599105, + 38.97094233330344, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H03294" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02256016501191, + 38.968688754063066, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H03295" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02303479238186, + 38.97716281514932, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H03296" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02498461340262, + 38.89198192469661, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H03863" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97990996049893, + 38.92444369334872, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 08/03/07

Report Problem", + "NAME": "H03864" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92994573477426, + 38.89711938638032, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 11/28/07

Report Problem", + "NAME": "H03865" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97640335154595, + 38.89902273779327, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 05/28/07

Report Problem", + "NAME": "H03866" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01041302258128, + 38.890311457901525, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/27/07

Report Problem", + "NAME": "H03867" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02612604776414, + 38.89237705239765, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 08/10/07

Report Problem", + "NAME": "H03868" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99102877721856, + 38.93446957700486, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H03869" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03402348109263, + 38.92447660881721, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Eddy

In Service


Last Inspection Date: 08/29/06

Report Problem", + "NAME": "H03870" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06124243085797, + 38.92911490482321, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, U.S. Pipe

In Service


Last Inspection Date: 01/17/07

Report Problem", + "NAME": "H03871" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04295605152053, + 38.985655944987855, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 07/13/07

Report Problem", + "NAME": "H03872" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.10076522575906, + 38.931459797065465, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H03874" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0004716434192, + 38.92035297474018, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 07/02/07

Report Problem", + "NAME": "H03875" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97347967764179, + 38.86340106868082, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/05/07

Report Problem", + "NAME": "H03876" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96643237263883, + 38.9300391403663, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/27/07

Report Problem", + "NAME": "H03877" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07921944603848, + 38.943220705359096, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H03878" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02168194233691, + 38.89195749610055, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H03879" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07588599138984, + 38.952145385513234, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US Pipe, AP Smith

In Service


Last Inspection Date: 06/18/07

Report Problem", + "NAME": "H03880" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04727774979757, + 38.92308294239803, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 10/04/07

Report Problem", + "NAME": "H03881" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0853625024635, + 38.90862976680895, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H03882" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03964665004801, + 38.9846076838793, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H03830" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03908392320625, + 38.98395121053371, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H03831" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96321353390363, + 38.86359825445163, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H03832" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02797877832664, + 38.978736122347094, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H03833" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03223348196782, + 38.93156513595735, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, CLOW - MEDALLION

In Service


Last Inspection Date: 09/19/07

Report Problem", + "NAME": "H03834" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96158654258512, + 38.869860621375096, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 10/29/07

Report Problem", + "NAME": "H03835" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08636091099869, + 38.957082089979814, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US Pipe, AP Smith

In Service


Last Inspection Date: 06/05/07

Report Problem", + "NAME": "H03836" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96822075371378, + 38.92445615217211, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/27/07

Report Problem", + "NAME": "H03837" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09544953554047, + 38.95204335448902, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 11/16/07

Report Problem", + "NAME": "H03838" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08615751312666, + 38.944918346126705, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 12/13/07

Report Problem", + "NAME": "H03839" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02886218470458, + 38.8860928408347, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H03840" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01334858680185, + 38.913399619508205, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/12/07

Report Problem", + "NAME": "H03841" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09600278938973, + 38.91565811486848, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H03842" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0967897385974, + 38.91513128862411, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H03843" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01591880173525, + 38.976191084700844, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H03844" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98418601929126, + 38.86652599227564, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/05/07

Report Problem", + "NAME": "H03845" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02460898749625, + 38.97656312313311, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H03847" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09213751094268, + 38.91488682483357, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H03848" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01901399351266, + 38.90357978409401, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 11/06/07

Report Problem", + "NAME": "H03849" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04161429804053, + 38.895542102096144, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 09/13/07

Report Problem", + "NAME": "H03850" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01021326302616, + 38.8923027582499, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 09/06/07

Report Problem", + "NAME": "H03851" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09011456122073, + 38.92748236935688, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H03852" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03252375811546, + 38.92659747651678, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US PIPE-MET 250 M94

In Service


Last Inspection Date: 09/21/07

Report Problem", + "NAME": "H03853" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99000709490832, + 38.939065455355845, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/09/07

Report Problem", + "NAME": "H03854" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03167043335802, + 38.891956503212036, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H03856" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09099426570121, + 38.93231315252996, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/02/07

Report Problem", + "NAME": "H03857" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04337483415686, + 38.892323437960094, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 05/17/07

Report Problem", + "NAME": "H03858" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04650464095003, + 38.9879141621054, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H03859" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99711523397714, + 38.89465596591057, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H03910" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99428317455563, + 38.89799081219083, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 05/30/07

Report Problem", + "NAME": "H03911" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97836606831018, + 38.86545894951317, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/05/07

Report Problem", + "NAME": "H03912" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03707457511283, + 38.961072110034124, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H03913" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99729511234159, + 38.89541195232633, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/11/07

Report Problem", + "NAME": "H03914" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99731536566578, + 38.898179682432804, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 09/22/07

Report Problem", + "NAME": "H03915" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09634210368928, + 38.929647910327986, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H03916" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03616492698073, + 38.979448887186656, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H03917" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03625476942405, + 38.98649405887124, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H03918" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08686362531986, + 38.95341327109391, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Clow Eddy, Eddy

In Service


Last Inspection Date: 11/28/07

Report Problem", + "NAME": "H03919" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93377621621066, + 38.874790865740515, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/08/07

Report Problem", + "NAME": "H03920" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09549553322232, + 38.92783750122455, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H03921" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.10923121922406, + 38.93252609933625, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US Pipe, AP Smith

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H03922" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05419366790687, + 38.95196349631073, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H03923" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9588419117385, + 38.861817506729984, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 08/16/07

Report Problem", + "NAME": "H03925" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93620427886142, + 38.87641616150902, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 07/12/07

Report Problem", + "NAME": "H03926" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04694119757379, + 38.987019544734004, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H03927" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95152028721222, + 38.86542853072662, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 02/19/08

Report Problem", + "NAME": "H03928" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95574889530575, + 38.863987737400656, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 12/28/07

Report Problem", + "NAME": "H03929" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0854956302458, + 38.93843440169358, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H03930" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01532876019056, + 38.88827218569448, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/27/07

Report Problem", + "NAME": "H03931" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06501039288709, + 38.96986047000123, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H03932" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01745467700397, + 38.88891084251656, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H03933" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98225786810792, + 38.86540278965049, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H03934" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02300351982935, + 38.90288464874361, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Kennedy

In Service


Last Inspection Date: 08/25/07

Report Problem", + "NAME": "H03935" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98270217181815, + 38.90855545191018, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, U.S. Pipe

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H03936" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93786398290078, + 38.89682821189746, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 10/16/07

Report Problem", + "NAME": "H03937" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04666180513155, + 38.9885525741736, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 12/06/07

Report Problem", + "NAME": "H03938" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.1116466981253, + 38.93561441448011, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H03939" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.11219363916346, + 38.93730801054442, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H03940" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04757570923891, + 38.987569969160624, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H03941" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02823779857899, + 38.88684356270815, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H03942" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0282309115219, + 38.886187556095436, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H03943" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00495713826047, + 38.89117948535643, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/27/07

Report Problem", + "NAME": "H03944" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00500178262007, + 38.88988113358681, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/27/07

Report Problem", + "NAME": "H03945" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00984618617153, + 38.87216582049221, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H03946" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98823781582459, + 38.89530238124047, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 01/29/08

Report Problem", + "NAME": "H03947" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04572655821386, + 38.98716398606276, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H03948" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98106120425996, + 38.897430457030836, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 05/29/07

Report Problem", + "NAME": "H03949" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08464504993837, + 38.91460424377495, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H03950" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03861614220645, + 38.90391449224204, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/11/07

Report Problem", + "NAME": "H03951" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99737101257563, + 38.905014089088816, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 02/29/08

Report Problem", + "NAME": "H03952" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98449943972014, + 38.90832927041487, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Clow

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H03953" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01073416861786, + 38.87048679200491, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H03954" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02285070196406, + 38.91787464961466, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 09/26/06

Report Problem", + "NAME": "H03955" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.10747703024757, + 38.937333945470286, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H03956" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96147869503832, + 38.93350089214056, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 07/27/07

Report Problem", + "NAME": "H03957" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99277574731735, + 38.903198343075225, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/01/07

Report Problem", + "NAME": "H03958" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97908142675853, + 38.89344943044639, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US PIPE-A P SMITH

In Service


Last Inspection Date: 08/11/07

Report Problem", + "NAME": "H03959" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08995721371068, + 38.925913061278344, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H03960" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01579209668822, + 38.91692364525055, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, U.S. Pipe

In Service


Last Inspection Date: 06/11/07

Report Problem", + "NAME": "H03962" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96281527751978, + 38.8750967026841, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/30/07

Report Problem", + "NAME": "H03963" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09670906799096, + 38.942093921271976, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 01/08/08

Report Problem", + "NAME": "H03964" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08013863133662, + 38.95336272738712, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/13/07

Report Problem", + "NAME": "H03965" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0660259256967, + 38.90870570386126, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/02/07

Report Problem", + "NAME": "H03967" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01079539551675, + 38.86829708593764, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 08/10/07

Report Problem", + "NAME": "H03467" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01201818903515, + 38.86829535398415, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 08/01/07

Report Problem", + "NAME": "H03468" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98800133220846, + 38.90303708811884, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 01/28/08

Report Problem", + "NAME": "H03469" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0445791473415, + 38.92423719413861, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 10/04/07

Report Problem", + "NAME": "H03470" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06739893007835, + 38.95538959098755, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US Pipe, AP Smith

In Service


Last Inspection Date: 06/18/07

Report Problem", + "NAME": "H03471" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04329340794283, + 38.925014140566084, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 10/04/07

Report Problem", + "NAME": "H03472" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09547235984488, + 38.92096937637083, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H03473" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99091673282062, + 38.93261067803325, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H03474" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03561761563257, + 38.92710714782879, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 05/25/07

Report Problem", + "NAME": "H03475" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09810802359775, + 38.947861978639196, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 12/27/07

Report Problem", + "NAME": "H03476" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09670806383083, + 38.9486836465249, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US Pipe, AP Smith

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H03477" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09682813870131, + 38.94704998506508, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 01/07/08

Report Problem", + "NAME": "H03478" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9888624176088, + 38.93370164910796, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Clow Eddy

In Service


Last Inspection Date: 12/27/07

Report Problem", + "NAME": "H03479" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01224225159582, + 38.91690852269912, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, CLOW - EDDY

In Service


Last Inspection Date: 06/11/07

Report Problem", + "NAME": "H03480" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03213043256787, + 38.89808908467546, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/01/07

Report Problem", + "NAME": "H03481" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03626563882898, + 38.93041037748961, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, KENNEDY-K81-A/D GUAR

In Service


Last Inspection Date: 09/12/07

Report Problem", + "NAME": "H03482" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01409257250101, + 38.9141623940784, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 10/17/07

Report Problem", + "NAME": "H03483" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97751802616081, + 38.87080205490014, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/27/07

Report Problem", + "NAME": "H03484" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03778147839239, + 38.93005594281548, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 09/20/07

Report Problem", + "NAME": "H03485" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03360436617929, + 38.98594498021841, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 02/25/08

Report Problem", + "NAME": "H03486" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03901929060466, + 38.93149678437457, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP SMITH - O'BRIEN

In Service


Last Inspection Date: 05/18/07

Report Problem", + "NAME": "H03487" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92116154998111, + 38.89293295892934, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/08/07

Report Problem", + "NAME": "H03488" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06993720598565, + 38.95146033188334, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/18/07

Report Problem", + "NAME": "H03489" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0648778039224, + 38.95892147295136, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US Pipe, AP Smith

In Service


Last Inspection Date: 07/05/07

Report Problem", + "NAME": "H03607" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04176746414652, + 38.928147977220306, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 09/14/07

Report Problem", + "NAME": "H03608" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02961774516223, + 38.94279062562233, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, CLOW - EDDY

In Service


Last Inspection Date: 08/07/07

Report Problem", + "NAME": "H03609" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03289675476479, + 38.93557440283326, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 09/13/07

Report Problem", + "NAME": "H03610" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0687630936708, + 38.95557981693206, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US Pipe, AP Smith

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H03611" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98615011023337, + 38.938265701996706, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H03612" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01248667909704, + 38.95863384036325, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H03613" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98094488213499, + 38.897887657549866, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/17/07

Report Problem", + "NAME": "H03614" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97848309145489, + 38.94293098092975, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H03615" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02326747336885, + 38.970016925534274, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 11/06/07

Report Problem", + "NAME": "H03616" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02123102130753, + 38.923717610292435, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 10/04/06

Report Problem", + "NAME": "H03617" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01791989150955, + 38.955487980242914, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 07/20/07

Report Problem", + "NAME": "H03618" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04275495061151, + 38.945085221162486, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 08/08/07

Report Problem", + "NAME": "H03619" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06857757212204, + 38.93172482649028, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Eddy

In Service


Last Inspection Date: 11/02/06

Report Problem", + "NAME": "H03620" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06976366098428, + 38.90863433874821, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/02/07

Report Problem", + "NAME": "H03621" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02410955535525, + 38.892410132338334, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H03622" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0386894040868, + 38.93255967598979, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP SMITH - O'BRIEN

In Service


Last Inspection Date: 09/13/07

Report Problem", + "NAME": "H03490" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04115347643652, + 38.931492160799195, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 09/14/07

Report Problem", + "NAME": "H03491" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.10086253282172, + 38.936857743065055, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Kennedy, K81A

In Service


Last Inspection Date: 07/20/05

Report Problem", + "NAME": "H03492" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92435148839108, + 38.88694422693056, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 02/05/08

Report Problem", + "NAME": "H03493" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01372085823124, + 38.95668417023782, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H03494" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0997752917991, + 38.93582170338214, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H03495" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0931650833886, + 38.93267259442051, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H03496" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92073814069416, + 38.89404085533239, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/11/07

Report Problem", + "NAME": "H03497" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01668371123995, + 38.916861634116884, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/11/07

Report Problem", + "NAME": "H03498" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06847798975795, + 38.93468727528434, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 02/06/08

Report Problem", + "NAME": "H03499" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06994033852389, + 38.95961481171528, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/15/07

Report Problem", + "NAME": "H03500" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0700326822772, + 38.91837021050567, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H03501" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07119585400345, + 38.91973315256621, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H03502" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01624996062424, + 38.91856654864214, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/11/07

Report Problem", + "NAME": "H03503" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.91533726488154, + 38.89709851513759, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 11/06/07

Report Problem", + "NAME": "H03504" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0719586462016, + 38.95066023327597, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, American Darling

In Service


Last Inspection Date: 08/28/07

Report Problem", + "NAME": "H03505" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06976552667464, + 38.953954780000906, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/18/07

Report Problem", + "NAME": "H03506" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06395599340895, + 38.92439308451422, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 11/15/06

Report Problem", + "NAME": "H03507" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06403904663674, + 38.925894158326486, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 01/18/06

Report Problem", + "NAME": "H03508" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9991027660933, + 38.84778999505156, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 09/25/07

Report Problem", + "NAME": "H03509" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97312787861743, + 38.86998259643053, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 08/15/07

Report Problem", + "NAME": "H03510" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99498873935342, + 38.85973167311152, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/04/07

Report Problem", + "NAME": "H03511" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02095755775508, + 38.90730002623178, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 10/02/07

Report Problem", + "NAME": "H03512" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96502790165346, + 38.92881473337035, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, KENNEDY-K81-A/D GUAR

In Service


Last Inspection Date: 07/27/07

Report Problem", + "NAME": "H03513" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98822607764494, + 38.908173716881976, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 10/23/06

Report Problem", + "NAME": "H03514" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.986788771045, + 38.909433731469726, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, U.S. PIPE

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H03515" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0217678007848, + 38.89972227672309, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H03516" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02097771900802, + 38.8997218177079, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H03517" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02233393008127, + 38.9643956569575, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H03518" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.10996084388502, + 38.93205912695095, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US Pipe, AP Smith

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H03519" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9835867974813, + 38.89679894753847, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 05/15/07

Report Problem", + "NAME": "H03520" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99256406835455, + 38.942793447610214, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 08/09/07

Report Problem", + "NAME": "H03521" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0277269091157, + 38.96275021750744, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H03522" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93896208746283, + 38.87157923201205, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US PIPE-MET 250 M94

In Service


Last Inspection Date: 07/27/07

Report Problem", + "NAME": "H03523" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02073157901705, + 38.90423525494305, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 10/10/07

Report Problem", + "NAME": "H03524" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04437360904353, + 38.89827069305227, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 06/13/07

Report Problem", + "NAME": "H03525" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99263604315881, + 38.93356622869363, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H03526" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99124428129417, + 38.93356573635454, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, U.S. Pipe

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H03527" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01645539326304, + 38.95436758528171, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 11/09/07

Report Problem", + "NAME": "H03528" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98657249782944, + 38.93380238253051, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H03529" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9872753008676, + 38.9453083118496, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H03530" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0327429624509, + 38.8919515591772, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Kennedy

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H03531" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99258526421836, + 38.940629838151104, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H03532" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03327068465558, + 38.984067746213725, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 07/11/07

Report Problem", + "NAME": "H03533" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00782919903669, + 38.893223111341605, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/27/07

Report Problem", + "NAME": "H03534" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00722571707709, + 38.89375455391396, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/27/07

Report Problem", + "NAME": "H03535" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00818319153815, + 38.89227793789439, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/27/07

Report Problem", + "NAME": "H03536" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00611604125696, + 38.893755031669244, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/27/07

Report Problem", + "NAME": "H03537" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97018782938873, + 38.937110901958384, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H03538" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.10113057907711, + 38.92702125554618, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US Pipe, AP Smith

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H03539" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05450915260506, + 38.92823876662402, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 09/21/07

Report Problem", + "NAME": "H03540" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00064685369448, + 38.889943027327455, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 11/03/07

Report Problem", + "NAME": "H03541" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99504653391331, + 38.93225566550957, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H03542" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04775599202239, + 38.89837482021134, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 10/24/07

Report Problem", + "NAME": "H03543" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01374021929531, + 38.95866633669406, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H03544" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04572830838023, + 38.89826512594186, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/29/07

Report Problem", + "NAME": "H03545" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97732647684614, + 38.884241019733444, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/18/07

Report Problem", + "NAME": "H03546" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07263374916317, + 38.935573021349896, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H03547" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07688469443129, + 38.91922331602368, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H03548" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06855101713087, + 38.95830295071001, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Kennedy

In Service


Last Inspection Date: 09/24/07

Report Problem", + "NAME": "H03549" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0761135742582, + 38.91922445141739, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H03550" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0966488045416, + 38.92537947996271, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H03551" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09772203483506, + 38.923645674339994, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H03552" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0961516317116, + 38.92618920663205, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H03553" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97510464986044, + 38.94021241925771, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H03554" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92998715624509, + 38.896341782002246, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/08/07

Report Problem", + "NAME": "H03555" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01776505953998, + 38.95658617430043, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 11/08/07

Report Problem", + "NAME": "H03556" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08350418811625, + 38.914294412090925, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H03557" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97628105960614, + 38.939733999281444, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 08/13/07

Report Problem", + "NAME": "H03558" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09072308463259, + 38.94402779179968, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 06/04/07

Report Problem", + "NAME": "H03559" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00640052318134, + 38.839306354002446, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H03560" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03161045862089, + 38.89617030995506, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/01/07

Report Problem", + "NAME": "H03561" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03801328331464, + 38.94924861256427, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 07/17/07

Report Problem", + "NAME": "H03562" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03350551320615, + 38.8948737301164, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H03563" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0335328033324, + 38.89414833247011, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H03564" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03211037259001, + 38.893450358329694, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H03565" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96498579366997, + 38.930532371271475, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/27/07

Report Problem", + "NAME": "H03566" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06883084150009, + 38.96961954726777, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/15/07

Report Problem", + "NAME": "H03567" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03483103176875, + 38.98616942125019, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H03568" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03353093077355, + 38.89281301338369, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H03570" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03352935056255, + 38.8934976139276, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H03572" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03210758664463, + 38.89294615162206, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H03573" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98210916758026, + 38.86880949547161, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H03574" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98083421247642, + 38.89617984291388, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 06/12/07

Report Problem", + "NAME": "H03576" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.073723600765, + 38.91877161250799, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Kennedy

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H03577" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03627502423484, + 38.934939371976625, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, KENNEDY-K81-A/D GUAR

In Service


Last Inspection Date: 09/13/07

Report Problem", + "NAME": "H03578" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00196989818596, + 38.90713099191895, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 08/20/07

Report Problem", + "NAME": "H03579" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97030744562417, + 38.89904102170986, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 12/11/07

Report Problem", + "NAME": "H03580" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01772316190412, + 38.951135133712526, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/06/07

Report Problem", + "NAME": "H03581" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97030685493905, + 38.900460099398536, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, CLOW - EDDY

In Service


Last Inspection Date: 06/24/07

Report Problem", + "NAME": "H03582" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98412242592256, + 38.92691358413429, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/30/07

Report Problem", + "NAME": "H03583" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06869098110673, + 38.950785765423596, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/18/07

Report Problem", + "NAME": "H03584" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07482935147564, + 38.919209200965525, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H03585" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06175018721785, + 38.96296459500961, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H03586" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.078610480102, + 38.9226014616886, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H03587" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07721011013284, + 38.922601764718415, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H03588" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.996237336026, + 38.89464853605419, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 11/17/06

Report Problem", + "NAME": "H03589" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98094061209993, + 38.88871499281592, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, KENNEDY-K81-A/D GUAR

In Service


Last Inspection Date: 08/15/07

Report Problem", + "NAME": "H03590" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.10462878785783, + 38.93153283774806, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US Pipe, AP Smith

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H03591" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.10579525899973, + 38.93147391829147, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US Pipe, Metropolitan

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H03592" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03515977974857, + 38.984191209676595, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H03593" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98699175805315, + 38.884048464528746, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 04/28/06

Report Problem", + "NAME": "H03594" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93051093669813, + 38.900045262021244, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H03595" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09924264907829, + 38.92766583372402, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H03598" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05915347544803, + 38.970458519593265, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Am. Darling

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H03599" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98767458054587, + 38.909808890628184, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/12/07

Report Problem", + "NAME": "H03600" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06918313232683, + 38.94319846573763, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 01/23/07

Report Problem", + "NAME": "H03601" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09820310633214, + 38.93672710819925, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 01/30/08

Report Problem", + "NAME": "H03602" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09640769656482, + 38.93689336470722, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 01/10/08

Report Problem", + "NAME": "H03603" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99513930911083, + 38.92835761224649, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Kennedy

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H03604" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0161162222745, + 38.95561371890085, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 08/01/07

Report Problem", + "NAME": "H03605" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01801310619798, + 38.97783561092687, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H03606" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0241161346038, + 38.892947894666534, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H03623" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06080593579244, + 38.91195520720525, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/02/07

Report Problem", + "NAME": "H03624" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00349951129549, + 38.90179401247429, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/23/07

Report Problem", + "NAME": "H03625" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03603311313024, + 38.92861706597699, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, U.S. Pipe

In Service


Last Inspection Date: 09/12/07

Report Problem", + "NAME": "H03626" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98706064919195, + 38.90011391132168, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 02/29/08

Report Problem", + "NAME": "H03627" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99251046407925, + 38.87933429204732, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 07/27/07

Report Problem", + "NAME": "H03628" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02340590137683, + 38.94204977857756, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 08/20/07

Report Problem", + "NAME": "H03629" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99503666664481, + 38.90036731500801, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 05/28/07

Report Problem", + "NAME": "H03630" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9947877391105, + 38.88266900606166, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AM DARLING - B-84-B

In Service


Last Inspection Date: 08/03/07

Report Problem", + "NAME": "H03631" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99270242324893, + 38.89814173130459, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 08/24/07

Report Problem", + "NAME": "H03632" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9913498446408, + 38.90317578837661, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/01/07

Report Problem", + "NAME": "H03633" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98250128690327, + 38.86280263754207, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/05/07

Report Problem", + "NAME": "H03634" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98453132964869, + 38.88972583089636, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/01/06

Report Problem", + "NAME": "H03635" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98709658955805, + 38.86323840536412, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 07/12/07

Report Problem", + "NAME": "H03636" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9817391517061, + 38.898515838365, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 06/01/07

Report Problem", + "NAME": "H03637" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01780522474259, + 38.91831272856207, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/11/07

Report Problem", + "NAME": "H03638" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05057805248413, + 38.901935141495144, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 08/08/07

Report Problem", + "NAME": "H03860" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08284878024966, + 38.93576238291455, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 11/28/07

Report Problem", + "NAME": "H03861" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08409890038097, + 38.93668000362474, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/20/07

Report Problem", + "NAME": "H03862" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05770442299941, + 38.91611569521685, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/11/07

Report Problem", + "NAME": "H04040" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08662125231317, + 38.92436624935645, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H04041" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98371465716961, + 38.89899349249849, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 08/24/07

Report Problem", + "NAME": "H04042" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04177175090446, + 38.89932046886113, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, CLOW - EDDY

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H04043" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01103386883443, + 38.831798486191275, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H04045" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00995084093915, + 38.83288575170231, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H04046" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02854884668233, + 38.894980786862554, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Clow Eddy

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H04047" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02514928775247, + 38.94260309290333, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 09/15/07

Report Problem", + "NAME": "H04048" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05702232323367, + 38.97194758603748, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H04049" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05629909667, + 38.97266068612665, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H04050" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97425492349903, + 38.94171353886082, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 08/29/07

Report Problem", + "NAME": "H04051" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07573085679125, + 38.95248056685318, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US Pipe, AP Smith

In Service


Last Inspection Date: 06/18/07

Report Problem", + "NAME": "H04052" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01643052574566, + 38.947537705491264, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H04053" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01586649186335, + 38.94863270354359, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 07/27/07

Report Problem", + "NAME": "H04054" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0684167028383, + 38.97057009668146, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US Pipe, AP Smith

In Service


Last Inspection Date: 06/15/07

Report Problem", + "NAME": "H04055" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95978665670779, + 38.866650130056975, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H04056" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95997011447649, + 38.867589509105336, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 08/28/07

Report Problem", + "NAME": "H04057" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01487219659207, + 38.961449290097285, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/05/07

Report Problem", + "NAME": "H04058" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01355819790655, + 38.95543634649551, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H04059" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04419602781695, + 38.919716197268066, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 08/16/07

Report Problem", + "NAME": "H04060" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02005767147647, + 38.96869166031924, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H04061" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01375133712867, + 38.96145372422804, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/05/07

Report Problem", + "NAME": "H04062" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03975031325787, + 38.98718292495032, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H04063" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0388952422845, + 38.98778543811387, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H04064" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06067002568248, + 38.96367401986806, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H04066" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9791710704358, + 38.86830932097184, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US PIPE-MET 250 M94

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H04067" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05669197844536, + 38.948006462190435, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 09/26/07

Report Problem", + "NAME": "H04068" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95635154378483, + 38.8574793712542, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 12/19/07

Report Problem", + "NAME": "H04069" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05886548933277, + 38.974784329722446, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Eddy

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H04070" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9572988108649, + 38.857506773850666, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 12/20/07

Report Problem", + "NAME": "H04071" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95650687754384, + 38.86473471172185, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 01/03/08

Report Problem", + "NAME": "H04072" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98332298599779, + 38.903261353463854, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 08/13/07

Report Problem", + "NAME": "H04073" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05973347103077, + 38.97541950141029, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 07/02/07

Report Problem", + "NAME": "H04074" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04447098000675, + 38.98757801898338, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H04075" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0789281388047, + 38.944837782033424, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H04076" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06968110563282, + 38.95456296060451, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H04077" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97888279186657, + 38.8862037515252, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 04/12/06

Report Problem", + "NAME": "H04078" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98212771509833, + 38.896160382711955, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US PIPE-MET 250 M94

In Service


Last Inspection Date: 08/24/07

Report Problem", + "NAME": "H04079" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04238191531039, + 38.940834544272654, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 05/14/07

Report Problem", + "NAME": "H04080" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97006383997629, + 38.93762528004567, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H04082" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07155691243143, + 38.9583234992033, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H04083" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99816703591898, + 38.84521429970991, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 10/17/07

Report Problem", + "NAME": "H04084" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07713768504172, + 38.931925348225796, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H04085" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07852847850171, + 38.932540716448024, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/17/07

Report Problem", + "NAME": "H04086" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05216429665562, + 38.93550136105225, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 12/27/06

Report Problem", + "NAME": "H04087" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03352291853086, + 38.960320686584865, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H04088" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05388161748036, + 38.93504170813739, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 12/28/06

Report Problem", + "NAME": "H04089" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07870202301126, + 38.91929192074877, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, American Darling

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H04090" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09251282938644, + 38.94208533657608, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/05/07

Report Problem", + "NAME": "H04091" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98397296793766, + 38.90909195392388, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 06/04/07

Report Problem", + "NAME": "H04092" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99787141723502, + 38.84706921384978, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/02/07

Report Problem", + "NAME": "H04093" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01323041960103, + 38.951106514649524, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H04094" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95853381973963, + 38.86747746576027, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H04095" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09065436896263, + 38.94973380945873, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, American Darling, 13843

In Service


Last Inspection Date: 06/04/07

Report Problem", + "NAME": "H04096" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0664335955175, + 38.97044425092554, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H04097" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07563919776541, + 38.930486340266896, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/17/07

Report Problem", + "NAME": "H04098" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09972541822468, + 38.93809722509768, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER

In Service


Last Inspection Date: 01/30/08

Report Problem", + "NAME": "H04099" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04078943476497, + 38.988175695037896, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H04100" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04185893638387, + 38.98760633181776, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H04101" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05663744327478, + 38.97557317276737, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H04102" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03331745963929, + 38.967670405478614, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H04103" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06104480063263, + 38.97674652924848, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US Pipe, AP Smith

In Service


Last Inspection Date: 06/13/07

Report Problem", + "NAME": "H04104" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97840451796174, + 38.940633483429274, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H04105" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06770001660747, + 38.96105156933964, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Eddy

In Service


Last Inspection Date: 06/15/07

Report Problem", + "NAME": "H02948" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00221244259393, + 38.905694795654476, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, U.S. Pipe

In Service


Last Inspection Date: 08/20/07

Report Problem", + "NAME": "H02949" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04156597768267, + 38.91473781631745, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/13/07

Report Problem", + "NAME": "H02950" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03434655343527, + 38.911904796252664, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 11/24/07

Report Problem", + "NAME": "H02951" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94185353379996, + 38.87095546114053, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 07/27/07

Report Problem", + "NAME": "H02952" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94422238688007, + 38.87068867061388, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/27/07

Report Problem", + "NAME": "H02953" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03064494329088, + 38.98139730236563, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H02954" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96472342470437, + 38.86279193559433, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 07/27/07

Report Problem", + "NAME": "H02955" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99256887443242, + 38.89657497042028, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/02/07

Report Problem", + "NAME": "H02956" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03646264841899, + 38.90037117994516, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H02957" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03989327314353, + 38.949413134877766, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 07/18/07

Report Problem", + "NAME": "H02958" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93649035427315, + 38.894421401238304, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H02959" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93787631808944, + 38.894603665178266, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/29/07

Report Problem", + "NAME": "H02960" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97396896606872, + 38.91569954439072, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/31/07

Report Problem", + "NAME": "H02961" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9702417662267, + 38.93514179165418, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 01/10/08

Report Problem", + "NAME": "H02962" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93669390087652, + 38.90154269543422, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 05/12/07

Report Problem", + "NAME": "H02963" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9763044924441, + 38.934995973348904, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 02/26/08

Report Problem", + "NAME": "H02964" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93649024941064, + 38.90070270858288, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 05/12/07

Report Problem", + "NAME": "H02965" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9752576216346, + 38.936128225814585, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 07/17/07

Report Problem", + "NAME": "H02966" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08969568447627, + 38.928812030810974, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H02967" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09060295034901, + 38.9288113309887, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, CLOW - EDDY

In Service


Last Inspection Date: 06/27/07

Report Problem", + "NAME": "H02968" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.10062932746031, + 38.92577087392711, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H02969" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0999641554701, + 38.92639025337231, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H02970" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01571697210065, + 38.94543686536992, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H02971" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06409720135247, + 38.906055783001875, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/02/07

Report Problem", + "NAME": "H02972" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02973342919985, + 38.90271086302745, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 09/14/07

Report Problem", + "NAME": "H02974" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02948487020159, + 38.90345979949418, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Clow Eddy

In Service


Last Inspection Date: 07/16/07

Report Problem", + "NAME": "H02975" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97229268802785, + 38.86817630563903, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 08/14/07

Report Problem", + "NAME": "H02977" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02947389315197, + 38.901976973057096, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 01/23/08

Report Problem", + "NAME": "H02978" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08395005293166, + 38.92758994312347, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H02979" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08490699611133, + 38.92878907840041, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H02980" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0263575848704, + 38.98028491319458, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H02981" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97312498181334, + 38.87210576858482, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/27/07

Report Problem", + "NAME": "H02982" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02255583510971, + 38.9678782563258, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H02983" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02409493213075, + 38.967884408231924, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H02984" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02978067986126, + 38.958505706828696, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/20/07

Report Problem", + "NAME": "H02985" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0759482629434, + 38.921640439414546, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H02986" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0753347203405, + 38.920626417876086, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, American Darling

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H02987" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9873322250439, + 38.94279688930142, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H02988" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99137291222536, + 38.94226925460015, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H02989" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99016741744016, + 38.94279727927315, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H02990" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02460274115977, + 38.97735697440674, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/30/07

Report Problem", + "NAME": "H02991" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06532711131152, + 38.9385468922548, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 05/28/07

Report Problem", + "NAME": "H02992" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97827601281539, + 38.88501275921611, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 04/26/06

Report Problem", + "NAME": "H02993" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06103787674311, + 38.93941398009788, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 01/23/07

Report Problem", + "NAME": "H02994" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9874904167884, + 38.9483891668096, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H02995" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05022434699933, + 38.899021540353786, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 05/30/07

Report Problem", + "NAME": "H02996" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06290389927247, + 38.94000924979791, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 01/23/07

Report Problem", + "NAME": "H02997" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95116096184061, + 38.89185398085343, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/30/07

Report Problem", + "NAME": "H02998" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06206069015427, + 38.95443700347486, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H02999" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98229656724462, + 38.894828332352944, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 05/29/07

Report Problem", + "NAME": "H03000" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03198973846924, + 38.9840865974315, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H03001" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03146467084993, + 38.982369413712924, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H03002" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0580820494067, + 38.92976971084407, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 01/19/07

Report Problem", + "NAME": "H03003" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0212889498334, + 38.96123611742944, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 08/22/07

Report Problem", + "NAME": "H03004" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06174761456867, + 38.95273689429035, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H03005" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07116792920074, + 38.94407248345832, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US Pipe, AP Smith

In Service


Last Inspection Date: 06/04/07

Report Problem", + "NAME": "H03006" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07252430746055, + 38.946246889557514, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 02/27/07

Report Problem", + "NAME": "H03007" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06390743607209, + 38.947817674296836, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/18/07

Report Problem", + "NAME": "H03008" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0317115825553, + 38.98331185864448, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Kennedy

In Service


Last Inspection Date: 12/05/07

Report Problem", + "NAME": "H03011" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0746864483502, + 38.94225883853485, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H03012" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04660697225161, + 38.915883972564075, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 12/13/07

Report Problem", + "NAME": "H03013" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05504206511793, + 38.922077052115164, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Eddy

In Service


Last Inspection Date: 01/09/07

Report Problem", + "NAME": "H03014" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05420279506004, + 38.92118215207154, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 01/08/07

Report Problem", + "NAME": "H03015" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96158803992253, + 38.8584722823408, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 12/17/07

Report Problem", + "NAME": "H03016" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06420009266469, + 38.91459228540269, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP SMITH - O'BRIEN

In Service


Last Inspection Date: 10/16/07

Report Problem", + "NAME": "H03017" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97985765635987, + 38.93414049072257, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Eddy

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H03018" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04185247563534, + 38.90029193751483, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H03019" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03781470311527, + 38.98413658441228, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H03022" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03655960121773, + 38.98422727278148, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 07/12/07

Report Problem", + "NAME": "H03023" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0258980132094, + 38.89819715647122, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AM DARLING - B-62-B

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H03024" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02589090923084, + 38.8991105788257, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H03026" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97265336894158, + 38.89623892163102, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Kennedy

In Service


Last Inspection Date: 05/29/07

Report Problem", + "NAME": "H03027" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99593299847837, + 38.847614992775895, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 03/12/08

Report Problem", + "NAME": "H03028" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98722162081393, + 38.94063985150541, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H03029" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98720564624243, + 38.93973400298994, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H03030" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07254358027352, + 38.94557482355423, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 10/10/07

Report Problem", + "NAME": "H03031" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96030138624464, + 38.855432859360555, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/06/07

Report Problem", + "NAME": "H03032" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02543039027128, + 38.93744058711033, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 05/29/07

Report Problem", + "NAME": "H03033" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02340156988542, + 38.96455719127427, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H03034" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98831228616139, + 38.868264650840004, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 11/29/07

Report Problem", + "NAME": "H03035" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03489267189798, + 38.97863815525506, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H03036" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01121501130028, + 38.86457728425669, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, American Darling

In Service


Last Inspection Date: 07/05/07

Report Problem", + "NAME": "H03037" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0627498346912, + 38.96271200287118, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, CLOW - EDDY

In Service


Last Inspection Date: 07/02/07

Report Problem", + "NAME": "H03038" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03161623059155, + 38.95086298079314, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 07/16/07

Report Problem", + "NAME": "H03039" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07698095184269, + 38.92737933453517, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H03040" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05625682098265, + 38.922018396979134, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 11/02/06

Report Problem", + "NAME": "H03041" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0562799401089, + 38.9219865864635, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 01/08/07

Report Problem", + "NAME": "H03042" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0324021280902, + 38.88703742305465, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H03043" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98384903271742, + 38.902332702098725, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 08/30/07

Report Problem", + "NAME": "H03044" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07689570971831, + 38.92167502435756, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, American Darling

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H03045" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97742065292081, + 38.870291727982654, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/27/07

Report Problem", + "NAME": "H03046" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.91988640097766, + 38.89138571378376, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Kennedy

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H03047" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98783083546893, + 38.905937255126915, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 10/25/06

Report Problem", + "NAME": "H03048" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.91935850525131, + 38.8928769031489, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H03049" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98234413229171, + 38.88987833884194, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Eddy

In Service


Last Inspection Date: 12/13/07

Report Problem", + "NAME": "H03050" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02210590270623, + 38.891961443379316, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H03051" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98371962752331, + 38.89368192726817, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, U.S. Pipe

In Service


Last Inspection Date: 11/02/06

Report Problem", + "NAME": "H03052" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02229788417795, + 38.9626276865333, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H03053" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99145719128774, + 38.896028383967334, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 05/30/07

Report Problem", + "NAME": "H03054" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07118207234939, + 38.94557519209683, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/04/07

Report Problem", + "NAME": "H03055" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02589261985113, + 38.898455922851475, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H03056" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07252535397834, + 38.944860378728514, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/04/07

Report Problem", + "NAME": "H03057" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01121321152814, + 38.89587848417434, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H03058" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09862948149636, + 38.93542112168419, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US Pipe, AP Smith

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H03059" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09429926442536, + 38.933423734469294, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H03060" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09690891832666, + 38.93459711185135, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H03061" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92801999809289, + 38.89199576822766, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H03062" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0616879339619, + 38.90975680831896, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/02/07

Report Problem", + "NAME": "H03968" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03606786536979, + 38.9787393214202, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H03969" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0525084929729, + 38.9072960431751, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/11/07

Report Problem", + "NAME": "H03970" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03016400705357, + 38.96458551370847, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H03971" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09668170160201, + 38.94302560853069, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 01/08/08

Report Problem", + "NAME": "H03973" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09671075726781, + 38.94411299327274, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 01/24/08

Report Problem", + "NAME": "H03974" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09803281476682, + 38.94317677742152, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/04/07

Report Problem", + "NAME": "H03975" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97540058984123, + 38.9125489999525, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H03976" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03460529069865, + 38.96865568635638, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H03977" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08783395031158, + 38.92581868369559, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H03978" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08632753819212, + 38.92547903942986, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H03979" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97822738811706, + 38.93822279533832, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H03980" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97991455023197, + 38.9383644646014, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H03981" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00674117092807, + 38.88337491499376, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/23/07

Report Problem", + "NAME": "H03982" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98597813021148, + 38.90590420302283, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 07/30/07

Report Problem", + "NAME": "H03983" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02301107047627, + 38.88472800998696, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H03984" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06305918575342, + 38.97514923810629, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H03985" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02675503132782, + 38.88116717029896, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/28/07

Report Problem", + "NAME": "H03986" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0665521850546, + 38.964065273251784, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H03987" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09241363308224, + 38.943228008750694, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 12/10/07

Report Problem", + "NAME": "H03988" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06376949697231, + 38.95820712399084, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/15/07

Report Problem", + "NAME": "H03989" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06031583923898, + 38.95782405161072, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, OTHER, SEE FLD NOTES

In Service


Last Inspection Date: 06/18/07

Report Problem", + "NAME": "H03990" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09427905928855, + 38.937236803935924, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 01/28/08

Report Problem", + "NAME": "H03991" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08883645267849, + 38.94875196927613, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US Pipe, AP Smith

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H03992" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07869497771303, + 38.96202180294453, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/15/07

Report Problem", + "NAME": "H03993" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0429748838458, + 38.893376574264394, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 05/24/07

Report Problem", + "NAME": "H03994" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00637765657599, + 38.958679293406085, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H03995" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08982996756723, + 38.92506344929522, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H03996" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01602771740421, + 38.95642084448925, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H03997" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06292550685887, + 38.905942662484556, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/02/07

Report Problem", + "NAME": "H03998" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01980276107504, + 38.89034543915308, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H03999" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01357395614416, + 38.956034187140546, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H04000" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06269138832498, + 38.905029026189716, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/11/07

Report Problem", + "NAME": "H04001" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02204024219837, + 38.8890403824405, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H04002" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00191570334259, + 38.92447347439483, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, U.S. Pipe

In Service


Last Inspection Date: 07/04/07

Report Problem", + "NAME": "H04003" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97424444409062, + 38.91267366044658, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/02/07

Report Problem", + "NAME": "H04004" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00521851748582, + 38.96191074751201, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, KENNEDY-K81-A/D GUAR

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H04005" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96614379977014, + 38.86332439318026, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 08/20/07

Report Problem", + "NAME": "H04006" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01604768424016, + 38.96998161076748, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 07/17/07

Report Problem", + "NAME": "H04007" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01798979967707, + 38.96999639890795, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 11/08/07

Report Problem", + "NAME": "H04008" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03328315926508, + 38.96422308535336, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H04010" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0238265466472, + 38.89338067113388, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H04011" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99370727002821, + 38.94263119441689, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H04012" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93060463282256, + 38.8991854425678, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 11/10/07

Report Problem", + "NAME": "H04013" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01590225628522, + 38.94936853072098, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H04014" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00597295640206, + 38.96275739706677, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H04015" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00493167869334, + 38.96275936437879, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H04016" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07785319025015, + 38.92053735034512, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H04017" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07863753641577, + 38.92073190951478, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H04018" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9639708265334, + 38.927918526610114, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 07/27/07

Report Problem", + "NAME": "H04019" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04357751409007, + 38.89440173764898, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AM DARLING - B-84-B

In Service


Last Inspection Date: 05/22/07

Report Problem", + "NAME": "H04021" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06345914346076, + 38.9544323792256, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H04022" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07782609452616, + 38.92260089669057, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H04023" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97809766570585, + 38.87216301954785, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/27/07

Report Problem", + "NAME": "H04024" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99170790665153, + 38.881327767439224, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 08/24/07

Report Problem", + "NAME": "H04025" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00914027167185, + 38.95937947515001, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H04026" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96765966457971, + 38.872845621288775, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H04027" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01250568837185, + 38.95078117056552, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H04028" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01127409964606, + 38.893323732400454, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 11/27/07

Report Problem", + "NAME": "H04029" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0298103442541, + 38.903666872988985, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 05/29/07

Report Problem", + "NAME": "H04030" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01580450973327, + 38.952071863715666, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H04032" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99164721389013, + 38.874741483565835, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H04033" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98601578552778, + 38.93959433725474, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H04034" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02127026646194, + 38.96327450830563, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H04035" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03208252955329, + 38.90648623624658, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US Pipe

In Service


Last Inspection Date: 05/30/07

Report Problem", + "NAME": "H04036" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04629683964683, + 38.986346257729046, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 08/30/07

Report Problem", + "NAME": "H04037" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01349904007813, + 38.95460841265484, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H04038" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08855635198329, + 38.94975116399902, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 12/13/07

Report Problem", + "NAME": "H04039" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.983107967382, + 38.881095468785446, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 05/17/06

Report Problem", + "NAME": "H03677" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93649173908001, + 38.8719792391055, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 07/23/07

Report Problem", + "NAME": "H03678" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08495111066085, + 38.95338792184123, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton, Jumbo

In Service


Last Inspection Date: 06/05/07

Report Problem", + "NAME": "H03679" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99014864329517, + 38.88850120150739, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H03680" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06649007812808, + 38.926274012544695, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 03/21/07

Report Problem", + "NAME": "H03681" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97228728616999, + 38.89802257240617, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 05/29/07

Report Problem", + "NAME": "H03682" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97305461341588, + 38.89815158049901, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 05/29/07

Report Problem", + "NAME": "H03683" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07194684810413, + 38.95402424498342, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/18/07

Report Problem", + "NAME": "H03684" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0704029814852, + 38.96767312792083, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 11/05/07

Report Problem", + "NAME": "H03685" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06819964179292, + 38.95970487763922, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/15/07

Report Problem", + "NAME": "H03686" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06857977859936, + 38.92611669080908, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 01/18/06

Report Problem", + "NAME": "H03687" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97335088000865, + 38.89716489944282, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 05/29/07

Report Problem", + "NAME": "H03688" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06939470842758, + 38.96580666327167, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US Pipe, AP Smith

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H03689" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96647728455709, + 38.923312842592246, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/27/07

Report Problem", + "NAME": "H03690" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99159495079708, + 38.89412463786989, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 05/30/07

Report Problem", + "NAME": "H03691" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93521318221076, + 38.87287414331036, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/08/07

Report Problem", + "NAME": "H03692" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01092779574589, + 38.89388438312533, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H03693" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05694661152383, + 38.91986118140679, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Eddy

In Service


Last Inspection Date: 01/16/07

Report Problem", + "NAME": "H03694" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94029933366774, + 38.9027639647087, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 05/12/07

Report Problem", + "NAME": "H03695" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97314431741103, + 38.937179315985574, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/06/07

Report Problem", + "NAME": "H03696" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0205514687882, + 38.92702235174442, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, KENNEDY-K81-A/D GUAR

In Service


Last Inspection Date: 07/11/07

Report Problem", + "NAME": "H03697" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0853824635693, + 38.95215701440594, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, American Darling, B84B

In Service


Last Inspection Date: 06/05/07

Report Problem", + "NAME": "H03698" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9783843125799, + 38.89911538475254, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, U.S. Pipe

In Service


Last Inspection Date: 08/28/07

Report Problem", + "NAME": "H03699" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02234943910024, + 38.963810532145374, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H03700" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.980472508922, + 38.89947491577438, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 10/25/06

Report Problem", + "NAME": "H03701" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02006437787375, + 38.96382170242456, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H03702" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0200717411199, + 38.96440122888235, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H03703" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97362628962821, + 38.89622811909845, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 05/29/07

Report Problem", + "NAME": "H03704" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07334808038217, + 38.922589118554164, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Kennedy

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H03705" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08853939694403, + 38.93443787261761, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/08/07

Report Problem", + "NAME": "H03706" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0135852712972, + 38.892217321679375, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H03707" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9692144008831, + 38.9351346612466, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 09/18/07

Report Problem", + "NAME": "H03708" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96144233639275, + 38.8563659923698, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 09/25/07

Report Problem", + "NAME": "H03709" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0207600042742, + 38.90560467234774, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Kennedy

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H03711" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02171332822185, + 38.90569951012563, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Eddy

In Service


Last Inspection Date: 06/12/07

Report Problem", + "NAME": "H03712" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01965967869721, + 38.905688685374685, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 02/29/08

Report Problem", + "NAME": "H03713" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02500514892911, + 38.905713526572235, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 05/25/07

Report Problem", + "NAME": "H03714" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06996003837614, + 38.95214374893433, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Eddy

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H03715" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0691474798505, + 38.91160221589817, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/02/07

Report Problem", + "NAME": "H03716" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0275442165845, + 38.94192542711134, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP SMITH - O'BRIEN

In Service


Last Inspection Date: 08/07/07

Report Problem", + "NAME": "H03717" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0659115101399, + 38.948024220431506, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/05/07

Report Problem", + "NAME": "H03718" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03089662049607, + 38.909121929570325, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Kennedy

In Service


Last Inspection Date: 05/30/07

Report Problem", + "NAME": "H03719" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92005501407913, + 38.893834818771566, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 12/05/07

Report Problem", + "NAME": "H03720" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9208296184903, + 38.89132150558269, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/11/07

Report Problem", + "NAME": "H03721" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01179322841816, + 38.89621411476836, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H03722" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.920399197111, + 38.89252964150244, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H03723" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02449089988893, + 38.89384785188733, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H03724" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01135124439529, + 38.89625492140214, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H03725" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01229578405268, + 38.896209513728095, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 08/14/07

Report Problem", + "NAME": "H03726" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0175407045451, + 38.954430467340345, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 08/06/07

Report Problem", + "NAME": "H03727" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95582762484945, + 38.89472922965072, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/01/07

Report Problem", + "NAME": "H03728" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09072110165582, + 38.943221902714605, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 12/04/07

Report Problem", + "NAME": "H03729" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02114474067075, + 38.92236311680298, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/09/07

Report Problem", + "NAME": "H03730" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02977627681746, + 38.9603388614735, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H03731" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97227316669225, + 38.937285833876736, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H03732" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07139661612302, + 38.95144319880221, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US Pipe, AP Smith

In Service


Last Inspection Date: 06/18/07

Report Problem", + "NAME": "H03733" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07149511555085, + 38.9519844548071, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Eddy

In Service


Last Inspection Date: 06/18/07

Report Problem", + "NAME": "H03734" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99014412893996, + 38.87637385009661, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 10/18/06

Report Problem", + "NAME": "H03735" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06989891802888, + 38.95079151738554, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/18/07

Report Problem", + "NAME": "H03736" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.1089673506558, + 38.930876923651695, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US Pipe, AP Smith

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H03737" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07449581337784, + 38.950685804032574, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, American Darling

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H03738" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00897728353526, + 38.86883306897482, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 07/05/07

Report Problem", + "NAME": "H03739" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99140377054967, + 38.8594056386091, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H03740" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99736764122783, + 38.88421520178614, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H03741" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09669654450336, + 38.93833754409531, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 01/28/08

Report Problem", + "NAME": "H03742" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09363207613583, + 38.95454338590985, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US Pipe, AP Smith

In Service


Last Inspection Date: 06/04/07

Report Problem", + "NAME": "H03743" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03756818679783, + 38.94831320181106, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, JCF&M - O'BRIEN

In Service


Last Inspection Date: 07/17/07

Report Problem", + "NAME": "H03745" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06782067092134, + 38.96980681528786, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, American Darling, B84B

In Service


Last Inspection Date: 06/15/07

Report Problem", + "NAME": "H03746" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02462632034302, + 38.97575849555607, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, KENNEDY-K81-A/D GUAR

In Service


Last Inspection Date: 09/13/07

Report Problem", + "NAME": "H03747" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02975356797397, + 38.89383454975894, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Clow Eddy

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H03748" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08629777521445, + 38.95600283812685, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, American Darling, B84B

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H03749" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0332257376092, + 38.96678495718561, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H03750" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02094461563445, + 38.92117828812778, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 10/04/06

Report Problem", + "NAME": "H03751" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03479925964035, + 38.983269696087696, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US PIPE-A P SMITH

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H03752" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98611537580487, + 38.86828080558696, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H03753" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98368081284474, + 38.868295940148016, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H03754" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02640885529095, + 38.9816359993884, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H03755" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93595291359323, + 38.892961706694685, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H03756" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0152190176066, + 38.96996937125363, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H03757" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0120368884428, + 38.89813621335621, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H03758" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98857173461492, + 38.92974780349216, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H03759" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01173910187487, + 38.962806523745826, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H03760" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03163797839147, + 38.9519323919739, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "LORTON

In Service


Last Inspection Date: 07/13/07

Report Problem", + "NAME": "H03761" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08369855437151, + 38.9598213311138, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US Pipe, AP Smith

In Service


Last Inspection Date: 06/15/07

Report Problem", + "NAME": "H03762" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02307129536355, + 38.95192642408664, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 08/06/07

Report Problem", + "NAME": "H03763" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0006666692874, + 38.92710127701415, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 05/26/07

Report Problem", + "NAME": "H03764" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00067257706168, + 38.92865223812971, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 07/21/07

Report Problem", + "NAME": "H03765" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0981991942097, + 38.938032018000676, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US Pipe, AP Smith

In Service


Last Inspection Date: 09/24/07

Report Problem", + "NAME": "H03766" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03657419052587, + 38.97321080522942, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H03767" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99147214260988, + 38.942797066448314, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H03768" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93552592358458, + 38.90153821012132, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 05/12/07

Report Problem", + "NAME": "H03769" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01715890067166, + 38.92151159171768, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 11/11/07

Report Problem", + "NAME": "H03770" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02661216471658, + 38.97572342389356, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 07/29/07

Report Problem", + "NAME": "H03771" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08197121143826, + 38.953935581040234, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/18/07

Report Problem", + "NAME": "H03772" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06727793389449, + 38.96301045094308, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H03773" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06691636964722, + 38.96218992536008, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H03774" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03624027089462, + 38.96484329801526, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H03775" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03606891843275, + 38.96618248104796, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H03776" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01151398465859, + 38.95863948027614, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H03777" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02108847292881, + 38.96274863950616, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H03778" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01628669731507, + 38.960114330397104, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/05/07

Report Problem", + "NAME": "H03779" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07172472634355, + 38.95326636250473, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/18/07

Report Problem", + "NAME": "H03780" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92659979375982, + 38.89538823889925, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H03063" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05481944695319, + 38.90863927935803, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/11/07

Report Problem", + "NAME": "H03064" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99045305923349, + 38.89362891870926, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 08/16/07

Report Problem", + "NAME": "H03065" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02960908896921, + 38.98432816699746, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H03066" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96138370683586, + 38.86300740514237, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H03067" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02982710973664, + 38.98233223347925, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H03068" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9838035827238, + 38.90661697762803, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 09/24/07

Report Problem", + "NAME": "H03069" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02408068276591, + 38.90034027371829, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 08/15/07

Report Problem", + "NAME": "H03070" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96161646154707, + 38.86464616677731, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H03071" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96305345025989, + 38.86467463746823, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H03072" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02300677333967, + 38.901462408978254, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 08/15/07

Report Problem", + "NAME": "H03073" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92482080753835, + 38.900409802471714, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H03074" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92373018419002, + 38.90336745850674, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/08/07

Report Problem", + "NAME": "H03075" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03364369264172, + 38.92648065493712, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, KENNEDY-K81-A/D GUAR

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H03076" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97428972209386, + 38.91341281352198, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 10/04/07

Report Problem", + "NAME": "H03077" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00334994320968, + 38.91338393879082, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 08/09/07

Report Problem", + "NAME": "H03078" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02511580881117, + 38.901630403843804, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/01/07

Report Problem", + "NAME": "H03079" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05419268649665, + 38.96710665957529, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H03080" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05339476720333, + 38.972366533079885, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H03081" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.1125383286442, + 38.933493859497865, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H03082" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.11179712299568, + 38.932421347729324, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H03083" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.11339121339472, + 38.93430413432582, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H03084" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03471359883676, + 38.92632287668111, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/21/07

Report Problem", + "NAME": "H03085" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01884359062524, + 38.89914307904043, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 10/23/07

Report Problem", + "NAME": "H03086" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08079917976667, + 38.90968626762176, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H03144" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05011078397638, + 38.92509781496898, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, U.S. Pipe

In Service


Last Inspection Date: 01/02/07

Report Problem", + "NAME": "H03145" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01716558161729, + 38.96617805495967, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H03146" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97614306030557, + 38.937146131347774, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H03147" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98686088996996, + 38.878449367192985, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 05/19/06

Report Problem", + "NAME": "H03148" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01850567279425, + 38.95217319775716, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 08/06/07

Report Problem", + "NAME": "H03149" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02136505073196, + 38.893516344880595, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H03150" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02125294674073, + 38.96787721220207, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H03151" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97193514646283, + 38.9266449440927, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP SMITH - O'BRIEN

In Service


Last Inspection Date: 07/27/07

Report Problem", + "NAME": "H03152" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0622395873915, + 38.96190733397728, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 12/06/06

Report Problem", + "NAME": "H03153" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02208557190023, + 38.893868951574575, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H03154" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01892885021266, + 38.9509652738986, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/06/07

Report Problem", + "NAME": "H03155" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01269773684562, + 38.91076793287809, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/11/07

Report Problem", + "NAME": "H03156" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02560353653519, + 38.97535640157549, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 08/05/07

Report Problem", + "NAME": "H03157" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07597581965106, + 38.920554251490216, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H03158" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01445662012209, + 38.970911630605706, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H03159" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97992285017801, + 38.892137896330816, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Eddy

In Service


Last Inspection Date: 11/01/06

Report Problem", + "NAME": "H03160" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02757932395554, + 38.89503858324773, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 11/09/07

Report Problem", + "NAME": "H03161" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03378412864905, + 38.89674597564679, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H03162" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03204687358763, + 38.959331074935484, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H03163" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00834632839808, + 38.91116145773266, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, American Darling

In Service


Last Inspection Date: 06/12/07

Report Problem", + "NAME": "H03164" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00668606710775, + 38.91116805053838, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, A.M Darling

In Service


Last Inspection Date: 06/12/07

Report Problem", + "NAME": "H03165" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03489033834887, + 38.98542149689027, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H03166" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0193985907573, + 38.95545874664475, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 08/01/07

Report Problem", + "NAME": "H03167" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01796350962823, + 38.9554724613172, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 08/01/07

Report Problem", + "NAME": "H03168" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05868106619577, + 38.96082930030023, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/15/07

Report Problem", + "NAME": "H03169" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06103442452928, + 38.96111596339867, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, U.S. Pipe

In Service


Last Inspection Date: 06/15/07

Report Problem", + "NAME": "H03170" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06206808690501, + 38.96111634711395, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/15/07

Report Problem", + "NAME": "H03171" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06383390729334, + 38.96111396410806, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/15/07

Report Problem", + "NAME": "H03172" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06831085455843, + 38.960101518445335, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H03173" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00504620826737, + 38.915662148765044, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US PIPE-MET 250 M94

In Service


Last Inspection Date: 09/26/07

Report Problem", + "NAME": "H03174" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99259931929079, + 38.942241403978024, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP SMITH - O'BRIEN

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H03175" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04338426468321, + 38.905765143216705, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H03176" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02343349885864, + 38.964877797455635, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H03177" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04122348711469, + 38.90554513094255, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 09/14/07

Report Problem", + "NAME": "H03178" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98876281410804, + 38.93259738370972, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H03179" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06125704515705, + 38.90604031689242, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 10/17/07

Report Problem", + "NAME": "H03180" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01795801880182, + 38.96010097863465, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 02/11/08

Report Problem", + "NAME": "H03181" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97798088532983, + 38.905736044810936, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP SMITH - O'BRIEN

In Service


Last Inspection Date: 06/01/07

Report Problem", + "NAME": "H03182" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07218142447562, + 38.93341050686152, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H03183" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99610510582475, + 38.882195423491474, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 08/06/07

Report Problem", + "NAME": "H03184" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03342680659567, + 38.902431263270714, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, CLOW - EDDY

In Service


Last Inspection Date: 05/29/07

Report Problem", + "NAME": "H03185" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9983770585032, + 38.88364220587385, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 10/24/06

Report Problem", + "NAME": "H03186" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03188537061007, + 38.96547600877725, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H03187" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06384730087355, + 38.93345825419992, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Kennedy

In Service


Last Inspection Date: 01/22/07

Report Problem", + "NAME": "H03188" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0623914666454, + 38.93342628620925, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, U.S. Pipe

In Service


Last Inspection Date: 01/22/07

Report Problem", + "NAME": "H03189" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03354560389819, + 38.905583486006044, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Clow Eddy

In Service


Last Inspection Date: 07/27/07

Report Problem", + "NAME": "H03190" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0295379713994, + 38.9649033944595, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H03191" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02992553456137, + 38.96548422881598, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H03192" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0350029582957, + 38.95298587803494, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 09/10/07

Report Problem", + "NAME": "H03193" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03420182627764, + 38.95525409969401, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 07/20/07

Report Problem", + "NAME": "H03194" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0836747219192, + 38.95909814692505, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 09/19/07

Report Problem", + "NAME": "H03195" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0210331732302, + 38.96205700483449, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H03196" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02233705863725, + 38.96123460669477, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H03197" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08613009266448, + 38.94615900551879, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 12/13/07

Report Problem", + "NAME": "H03198" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02001259489441, + 38.96559534535164, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H03199" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04084405420814, + 38.94498942572128, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US PIPE-MET 250 M94

In Service


Last Inspection Date: 07/20/07

Report Problem", + "NAME": "H03200" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02233651766645, + 38.96558315074984, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H03201" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01818410341815, + 38.96208764225485, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H03202" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01978833708134, + 38.962058780560724, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H03203" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05982166459445, + 38.92964514024582, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 01/01/06

Report Problem", + "NAME": "H03204" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05484272262582, + 38.91710801701536, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 11/15/06

Report Problem", + "NAME": "H03205" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02410285262988, + 38.965475682936756, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H03206" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9731781709192, + 38.91341622103919, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 01/22/08

Report Problem", + "NAME": "H03207" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05532668603573, + 38.917922259143026, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 09/18/07

Report Problem", + "NAME": "H03208" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07708626176108, + 38.955398522853244, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/18/07

Report Problem", + "NAME": "H03209" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01814837482497, + 38.95952572697822, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/05/07

Report Problem", + "NAME": "H03210" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09117591710422, + 38.94170236347056, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 12/01/07

Report Problem", + "NAME": "H03211" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01788018551073, + 38.95311603756104, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 08/06/07

Report Problem", + "NAME": "H03212" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03534395233046, + 38.900405854604756, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/01/07

Report Problem", + "NAME": "H03213" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02975547661387, + 38.905568694103394, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 05/30/07

Report Problem", + "NAME": "H03214" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03744482475409, + 38.898599312202094, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H03215" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99826787017928, + 38.89484157005496, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 08/20/07

Report Problem", + "NAME": "H03217" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96614811675154, + 38.93740151748665, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, CLOW - EDDY

In Service


Last Inspection Date: 07/30/07

Report Problem", + "NAME": "H03218" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96702467886138, + 38.93773785859908, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/31/07

Report Problem", + "NAME": "H03219" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01376017119289, + 38.90650970325695, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/12/07

Report Problem", + "NAME": "H03220" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02127716386049, + 38.9666283589006, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H03221" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03320654797018, + 38.96547181254771, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H03222" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97727047753588, + 38.87189155540718, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/27/07

Report Problem", + "NAME": "H03223" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03359826259181, + 38.96607518113642, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H03224" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04580996506851, + 38.9181264705252, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 10/25/06

Report Problem", + "NAME": "H03225" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00793015891381, + 38.91494642066939, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H03226" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98739632735732, + 38.94109091557004, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H03883" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02993102017118, + 38.96689660329951, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 01/24/08

Report Problem", + "NAME": "H03884" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09067994690605, + 38.9510866978661, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/04/07

Report Problem", + "NAME": "H03885" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.11038764936174, + 38.93389987912438, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H03886" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94467417940768, + 38.89338113353268, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/02/07

Report Problem", + "NAME": "H03887" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0294107470302, + 38.88605622905826, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H03888" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03138760520034, + 38.886051705821195, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H03889" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02978226203604, + 38.88605471159471, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H03890" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01238495004036, + 38.89282399770782, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 09/14/07

Report Problem", + "NAME": "H03891" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0504189584601, + 38.92385555226625, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 04/30/07

Report Problem", + "NAME": "H03892" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05587634447056, + 38.94552488410289, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 10/01/07

Report Problem", + "NAME": "H03893" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0612463631752, + 38.96825400819106, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H03894" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02899749615027, + 38.93613977816719, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 05/20/07

Report Problem", + "NAME": "H03895" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97208970699663, + 38.934006003443756, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/31/07

Report Problem", + "NAME": "H03896" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07452274816076, + 38.95486545414465, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/18/07

Report Problem", + "NAME": "H03897" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96756117691892, + 38.92938999601311, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/27/07

Report Problem", + "NAME": "H03898" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07233903474206, + 38.94207655466052, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Kennedy

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H03899" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98080096162482, + 38.86424581581121, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US PIPE-MET 250 M94

In Service


Last Inspection Date: 06/05/07

Report Problem", + "NAME": "H03900" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02003147510977, + 38.89232519721652, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 12/17/07

Report Problem", + "NAME": "H03901" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06426700595999, + 38.94045449089907, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 01/23/07

Report Problem", + "NAME": "H03902" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94701816806304, + 38.89410343029709, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/02/07

Report Problem", + "NAME": "H03903" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01225239256465, + 38.86606355011329, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/05/07

Report Problem", + "NAME": "H03904" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.012117532979, + 38.86539800467446, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 07/05/07

Report Problem", + "NAME": "H03905" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02313279945245, + 38.89196242462637, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H03907" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02376546437307, + 38.89196180216161, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Muelller

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H03908" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98740892170207, + 38.879379976435274, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 05/19/06

Report Problem", + "NAME": "H03909" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02021440176755, + 38.91642804618404, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 10/04/06

Report Problem", + "NAME": "H03639" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98063121662285, + 38.89824276963699, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 05/29/07

Report Problem", + "NAME": "H03640" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03739949869475, + 38.91190599392193, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/16/07

Report Problem", + "NAME": "H03641" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98282288389858, + 38.89870385409001, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/02/07

Report Problem", + "NAME": "H03642" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0389614784742, + 38.91464011754894, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 06/13/07

Report Problem", + "NAME": "H03643" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9718437434898, + 38.89620212830783, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 02/08/08

Report Problem", + "NAME": "H03644" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02828119021994, + 38.91265469942714, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AM DARLING - B-62-B

In Service


Last Inspection Date: 05/12/07

Report Problem", + "NAME": "H03645" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97696852582, + 38.896913560633564, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, U.S. Pipe

In Service


Last Inspection Date: 08/09/07

Report Problem", + "NAME": "H03646" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98301921993799, + 38.891959841567974, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 12/15/06

Report Problem", + "NAME": "H03647" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98316287471619, + 38.90790310782094, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H03648" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07008910339574, + 38.91257320447507, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H03649" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0220419598844, + 38.89236167938233, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H03650" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02605409876183, + 38.914919678784116, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 10/04/06

Report Problem", + "NAME": "H03651" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0220410988322, + 38.89304449600635, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H03652" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98846723544642, + 38.90071774474027, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 05/14/07

Report Problem", + "NAME": "H03653" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0450155056833, + 38.986431984549405, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H03654" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07737144758829, + 38.9125746087927, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, UNKNOWN

In Service


Last Inspection Date: 07/06/07

Report Problem", + "NAME": "H03655" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99016210125716, + 38.8994864211401, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/02/07

Report Problem", + "NAME": "H03656" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0685664874811, + 38.97414463957226, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Kennedy

In Service


Last Inspection Date: 06/15/07

Report Problem", + "NAME": "H03657" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97732163172466, + 38.88545134908238, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 04/06/06

Report Problem", + "NAME": "H03658" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00189385896061, + 38.91265565640735, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP SMITH - O'BRIEN

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H03659" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01531647738463, + 38.91266766691569, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/11/07

Report Problem", + "NAME": "H03660" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99146062492818, + 38.89835274907097, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 10/22/07

Report Problem", + "NAME": "H03661" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99632227998107, + 38.89667894325444, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H03662" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06969589736448, + 38.92354424519247, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H03663" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01317587490239, + 38.91403104240183, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 09/24/07

Report Problem", + "NAME": "H03664" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01321823864798, + 38.914782098541885, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 03/05/08

Report Problem", + "NAME": "H03665" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98930899156106, + 38.89606840244226, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 09/07/07

Report Problem", + "NAME": "H03666" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02991852688407, + 38.96608027027174, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H03667" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99623514257868, + 38.89929725684337, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 05/30/07

Report Problem", + "NAME": "H03668" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98086774955685, + 38.89543659520728, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 05/29/07

Report Problem", + "NAME": "H03669" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05939719823994, + 38.93736314077285, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 01/18/08

Report Problem", + "NAME": "H03670" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.992572321266, + 38.89269925581821, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 07/31/07

Report Problem", + "NAME": "H03671" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99368999608703, + 38.89421681732873, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, CLOW - EDDY

In Service


Last Inspection Date: 07/08/07

Report Problem", + "NAME": "H03672" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06204860798529, + 38.94210801739967, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, U.S. Pipe

In Service


Last Inspection Date: 12/19/06

Report Problem", + "NAME": "H03673" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97732142921282, + 38.887466415623784, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 04/06/06

Report Problem", + "NAME": "H03674" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99851999834095, + 38.89253414296477, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 09/18/07

Report Problem", + "NAME": "H03675" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98702073677197, + 38.87756751740622, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 03/20/07

Report Problem", + "NAME": "H03676" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97619226841928, + 38.86553156673918, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/27/07

Report Problem", + "NAME": "H06739" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97571177773297, + 38.86599735584727, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H06740" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95395505577085, + 38.88967237753783, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 11/20/07

Report Problem", + "NAME": "H06741" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95601211207112, + 38.88958216769603, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 09/19/07

Report Problem", + "NAME": "H06742" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0257342955336, + 38.901365180338246, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H06743" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0793399357029, + 38.95482322452686, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/13/07

Report Problem", + "NAME": "H06744" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01151128241311, + 38.96383945946481, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H06745" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0209775280849, + 38.90079746076288, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US Pipe

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H06746" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02494205099968, + 38.900803527962424, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 08/15/07

Report Problem", + "NAME": "H06747" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02685710766697, + 38.90094249872682, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Clow Eddy

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H06748" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08763583940052, + 38.95923725131862, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H06750" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96779725523542, + 38.858067618875474, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 09/25/07

Report Problem", + "NAME": "H06751" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93391594052164, + 38.899137807634276, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/01/07

Report Problem", + "NAME": "H06752" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01997826848236, + 38.91423012545715, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 01/25/08

Report Problem", + "NAME": "H06753" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00547560881265, + 38.84637883308082, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H06754" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02439297733744, + 38.97948113049743, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H06755" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02440662013707, + 38.980360888537334, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 08/06/07

Report Problem", + "NAME": "H06756" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95477451931532, + 38.88367693562122, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 11/13/07

Report Problem", + "NAME": "H06757" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9536481212613, + 38.88764160564635, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/02/07

Report Problem", + "NAME": "H06758" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96462964466762, + 38.860166655668365, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/06/07

Report Problem", + "NAME": "H06759" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0408517845078, + 38.99374710161613, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 09/27/07

Report Problem", + "NAME": "H06760" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9755956911888, + 38.89856910900174, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 08/29/07

Report Problem", + "NAME": "H06761" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95615373364924, + 38.88687019460337, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 05/30/07

Report Problem", + "NAME": "H06762" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99463782613996, + 38.953091536231284, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H06763" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06645934937967, + 38.937416027920605, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Kennedy

In Service


Last Inspection Date: 03/08/07

Report Problem", + "NAME": "H06764" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01878735609293, + 38.91415425662246, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 08/24/07

Report Problem", + "NAME": "H06765" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01998347678683, + 38.9131889140317, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/11/07

Report Problem", + "NAME": "H06766" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0180741642603, + 38.91402962168495, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 08/14/07

Report Problem", + "NAME": "H06767" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94252687115358, + 38.896887658020376, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H06768" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.10211954219713, + 38.93777130054011, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/05/07

Report Problem", + "NAME": "H06769" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94340512482906, + 38.90238856487108, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, KENNEDY-K81-A/D GUAR

In Service


Last Inspection Date: 10/16/07

Report Problem", + "NAME": "H06770" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0395358351307, + 38.89682850695422, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/24/07

Report Problem", + "NAME": "H06771" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97155970955157, + 38.90035182436649, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H06772" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00000984760143, + 38.96004295725367, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H06773" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93302287169982, + 38.88576873842303, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 01/16/08

Report Problem", + "NAME": "H06774" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00892011912906, + 38.90083947816433, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H07197" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00894688005167, + 38.897743618199506, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H07198" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00939348519698, + 38.89769822603817, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H07199" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0091771433557, + 38.90388729993978, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US Pipe

In Service


Last Inspection Date: 06/12/07

Report Problem", + "NAME": "H07200" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00899347692015, + 38.90013204620811, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H07201" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00894785037569, + 38.89904613705559, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 07/11/07

Report Problem", + "NAME": "H07202" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01782766257763, + 38.88744576275732, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/27/07

Report Problem", + "NAME": "H07203" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95825889949046, + 38.91861289514262, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 07/30/07

Report Problem", + "NAME": "H07204" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01892694196995, + 38.883384241899456, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 11/20/07

Report Problem", + "NAME": "H07205" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01871752829672, + 38.88704923685434, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/09/07

Report Problem", + "NAME": "H07206" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98702194377705, + 38.882780402581254, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 09/26/06

Report Problem", + "NAME": "H07207" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0760866996656, + 38.93226364151522, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H07208" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07733033357897, + 38.93114472297318, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H07209" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07433804000576, + 38.932022037940236, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/08/07

Report Problem", + "NAME": "H07210" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01503886054155, + 38.877600907692184, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 07/30/07

Report Problem", + "NAME": "H07211" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01073346648421, + 38.87723435373883, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H07212" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96680159991848, + 38.870595738904306, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 03/10/08

Report Problem", + "NAME": "H07213" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04370720675433, + 38.99274652904947, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H07214" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03630310624884, + 38.90267650414809, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 08/03/07

Report Problem", + "NAME": "H07215" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.008040458826, + 38.95246531699045, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H07216" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01598044680377, + 38.87834588488748, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H07217" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01540541759621, + 38.878484862563035, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H07218" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97432436464165, + 38.84799496356251, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 01/16/08

Report Problem", + "NAME": "H07219" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97311002954135, + 38.848328560921125, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 10/11/07

Report Problem", + "NAME": "H07220" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0093318201568, + 38.90137860516174, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H07221" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.91239327832523, + 38.894254690289245, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H07222" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.91620274195222, + 38.89441105985491, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H07223" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.91359566850382, + 38.89431823006889, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H07224" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93384210812016, + 38.90368210438252, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H07225" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9151337259828, + 38.89435100400987, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, KENNEDY-K81-A/D GUAR

In Service


Last Inspection Date: 02/29/08

Report Problem", + "NAME": "H07226" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01154222075427, + 38.877366835132634, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H07227" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99699340192487, + 38.954002266365585, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H07228" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.91900045070366, + 38.895873199959226, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H07229" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93786808494754, + 38.893322823693715, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H07230" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00999535557048, + 38.834449310180084, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H07231" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99755314306138, + 38.92094740941287, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H07667" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97135230860745, + 38.91753719035839, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, KENNEDY-K81-A/D GUAR

In Service


Last Inspection Date: 07/31/07

Report Problem", + "NAME": "H07668" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97492738611184, + 38.90367021987711, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, eddy

In Service


Last Inspection Date: 05/28/07

Report Problem", + "NAME": "H07669" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04326853668506, + 38.91878644352333, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/15/07

Report Problem", + "NAME": "H07670" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99014307800064, + 38.87547219959561, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 10/18/06

Report Problem", + "NAME": "H07671" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93765621558026, + 38.89183337460716, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H07672" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01677983744221, + 38.8730177022914, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/05/07

Report Problem", + "NAME": "H07673" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01887697985103, + 38.873455208423735, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/05/07

Report Problem", + "NAME": "H07674" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01640764249932, + 38.87633372868106, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H07675" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01159629528371, + 38.87936112579086, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 08/07/07

Report Problem", + "NAME": "H07677" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01261033798694, + 38.87658511129462, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H07678" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01233546547482, + 38.87936309496276, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H07679" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00944277407116, + 38.87633054483603, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H07680" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05466802507115, + 38.902797777126835, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H07681" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0546644060393, + 38.90230258949338, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/25/07

Report Problem", + "NAME": "H07682" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05344022400106, + 38.902351296537745, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 02/29/08

Report Problem", + "NAME": "H07683" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0563526613564, + 38.89719554228751, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, KENNEDY-K81-A/D GUAR

In Service


Last Inspection Date: 05/11/07

Report Problem", + "NAME": "H07684" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00539260233548, + 38.836967351080574, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/15/07

Report Problem", + "NAME": "H07685" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03491034254026, + 38.96391870854372, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 08/30/07

Report Problem", + "NAME": "H07686" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97721122571765, + 38.882744758604666, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Kennedy

In Service


Last Inspection Date: 04/06/06

Report Problem", + "NAME": "H07687" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96274420677837, + 38.85721945898499, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 12/03/07

Report Problem", + "NAME": "H07688" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97803667181053, + 38.896984049594245, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 05/29/07

Report Problem", + "NAME": "H07689" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0415979436605, + 38.90487850636528, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/11/07

Report Problem", + "NAME": "H07690" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99326421206962, + 38.917553371752454, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 10/16/07

Report Problem", + "NAME": "H07691" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05396737998048, + 38.898283212361086, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP SMITH - O'BRIEN

In Service


Last Inspection Date: 05/14/07

Report Problem", + "NAME": "H07692" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0534704855882, + 38.898228309672355, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 05/11/07

Report Problem", + "NAME": "H07693" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03755410254352, + 38.91743951244679, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 08/30/07

Report Problem", + "NAME": "H07694" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06017002561991, + 38.90270180948715, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 02/29/08

Report Problem", + "NAME": "H07695" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98055268599259, + 38.85524640680752, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/06/07

Report Problem", + "NAME": "H07696" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04766864729972, + 38.89608397483113, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H07697" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04484972777144, + 38.89448203416388, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP SMITH - O'BRIEN

In Service


Last Inspection Date: 05/17/07

Report Problem", + "NAME": "H07698" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04444684838937, + 38.894130240194535, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H07699" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99164281106908, + 38.876616328836434, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 11/10/06

Report Problem", + "NAME": "H07700" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04880336671062, + 38.896089649990614, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 03/28/07

Report Problem", + "NAME": "H07701" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0379773301635, + 38.899475870010406, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 02/04/08

Report Problem", + "NAME": "H08105" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97894392208693, + 38.88988682881371, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP SMITH - O'BRIEN

In Service


Last Inspection Date: 04/12/06

Report Problem", + "NAME": "H08106" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98165412357774, + 38.862557829894975, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, KENNEDY-K81-A/D GUAR

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H08107" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9147522190026, + 38.88963372475377, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H08108" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.91654995106566, + 38.88963548236685, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 08/05/06

Report Problem", + "NAME": "H08109" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02421339881987, + 38.88333321499806, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H08110" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02421108343869, + 38.88462760318923, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H08111" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.91631701038018, + 38.88755314567799, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant,

In Service


Last Inspection Date: 06/08/07

Report Problem", + "NAME": "H08112" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01386833571942, + 38.82122451049569, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/18/07

Report Problem", + "NAME": "H08113" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01373901775405, + 38.822126697690344, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/18/07

Report Problem", + "NAME": "H08114" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93686756980581, + 38.891976634589106, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H08116" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00495907837568, + 38.880452620386954, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H08117" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03451993866423, + 38.96030260517449, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H08118" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.91736596444753, + 38.88840732851712, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/08/07

Report Problem", + "NAME": "H08119" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05577166845528, + 38.8939583760691, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/30/07

Report Problem", + "NAME": "H08120" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01186173359831, + 38.88752855127196, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H08121" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06602071262793, + 38.904456359945804, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/02/07

Report Problem", + "NAME": "H08122" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.91502224180435, + 38.888557456157436, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/10/07

Report Problem", + "NAME": "H08123" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.91408993993186, + 38.88929839807364, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 10/30/07

Report Problem", + "NAME": "H08124" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03037041539007, + 38.893085867578534, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H08125" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00055785842466, + 38.95940107255572, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H08126" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02499525397063, + 38.9148842911261, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 10/04/06

Report Problem", + "NAME": "H08127" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02408329066122, + 38.914723359574246, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 10/04/06

Report Problem", + "NAME": "H08128" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00924159351723, + 38.90863474849086, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 09/28/07

Report Problem", + "NAME": "H08129" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05453300132713, + 38.897308343842006, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 05/11/07

Report Problem", + "NAME": "H08130" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98156112121428, + 38.93715530917865, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H08131" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03655346529241, + 38.93627169387359, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 09/11/07

Report Problem", + "NAME": "H08132" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06182094754568, + 38.92834710097888, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, American Darling

In Service


Last Inspection Date: 01/17/07

Report Problem", + "NAME": "H08133" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04092863613873, + 38.92393933632943, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/11/07

Report Problem", + "NAME": "H08134" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0221265819427, + 38.898539817011454, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H08135" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02271292907197, + 38.89836079842859, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H08136" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02406975777616, + 38.898062404027264, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H08137" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02084117174662, + 38.87633543588754, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H08138" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97300181603889, + 38.859527393050946, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H08139" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01374574817113, + 38.88377595751544, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H08140" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99840104160103, + 38.95365818727558, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP SMITH - O'BRIEN

In Service


Last Inspection Date: 07/27/07

Report Problem", + "NAME": "H06702" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99721094891771, + 38.952651535941946, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 08/15/07

Report Problem", + "NAME": "H06703" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99880649925983, + 38.95261883607398, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 10/16/07

Report Problem", + "NAME": "H06704" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00232570456356, + 38.954843158538196, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H06705" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00114517405473, + 38.95480814291553, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H06706" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0005142660758, + 38.954252031074866, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H06707" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99167780726519, + 38.890480109195764, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 10/22/06

Report Problem", + "NAME": "H06708" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95310858880491, + 38.858883995619365, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 12/27/07

Report Problem", + "NAME": "H06709" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02173224424004, + 38.919954660636435, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 07/12/07

Report Problem", + "NAME": "H06710" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98307754778058, + 38.86721708826973, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/05/07

Report Problem", + "NAME": "H06711" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0585309713972, + 38.92188727193555, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 11/02/06

Report Problem", + "NAME": "H06712" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99959727710178, + 38.90865930069435, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 06/01/07

Report Problem", + "NAME": "H06713" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9974288222908, + 38.88765148607277, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/13/07

Report Problem", + "NAME": "H06714" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98814650876594, + 38.88606472645686, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/09/06

Report Problem", + "NAME": "H06715" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95402279913114, + 38.88995550144341, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 05/30/07

Report Problem", + "NAME": "H06716" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95558173450337, + 38.88995358231732, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 05/30/07

Report Problem", + "NAME": "H06717" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02013062656702, + 38.90424171993253, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 02/29/08

Report Problem", + "NAME": "H06720" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02491135204471, + 38.904239492161786, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, KENNEDY-K81-A/D GUAR

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H06721" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04274884712204, + 38.9466990842324, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, CLOW - EDDY

In Service


Last Inspection Date: 07/18/07

Report Problem", + "NAME": "H06722" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01884121146134, + 38.90432045178427, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 10/13/07

Report Problem", + "NAME": "H06723" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97638676191636, + 38.87314917819528, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 07/27/07

Report Problem", + "NAME": "H06724" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94714033787068, + 38.899418538210234, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 11/30/07

Report Problem", + "NAME": "H06725" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93553230448904, + 38.9109076910083, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/29/07

Report Problem", + "NAME": "H06726" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07078422439486, + 38.96085470511081, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/15/07

Report Problem", + "NAME": "H06727" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03661697939123, + 38.98735629283935, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 07/30/07

Report Problem", + "NAME": "H06729" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03906193377343, + 38.986262689053405, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H06730" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03795766048816, + 38.98708403377112, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H06731" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01084131188746, + 38.96635609459757, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H06732" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93787036223503, + 38.90860321777128, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H06733" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9904958233762, + 38.95619927788162, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H06734" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95099574866201, + 38.865689411630726, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Kennedy

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H06735" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9389755508876, + 38.907339838995775, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H06736" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93984986018565, + 38.90535541954279, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H06737" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93925528624392, + 38.900397255202975, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 10/18/07

Report Problem", + "NAME": "H06738" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09254635127105, + 38.9486973026342, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Clow Eddy, Eddy

In Service


Last Inspection Date: 06/04/07

Report Problem", + "NAME": "H07232" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93382327899475, + 38.90474118788292, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H07233" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92157933552461, + 38.89424472400106, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 07/05/07

Report Problem", + "NAME": "H07234" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9851538135623, + 38.91911475703648, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 07/30/07

Report Problem", + "NAME": "H07235" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98330231947256, + 38.91924845195794, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/30/07

Report Problem", + "NAME": "H07236" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97892835332335, + 38.855296644203406, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/06/07

Report Problem", + "NAME": "H07237" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96679766606418, + 38.86961438004594, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 08/16/07

Report Problem", + "NAME": "H07238" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96679581303398, + 38.86777686242704, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H07239" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0636452801437, + 38.948887919837276, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Kennedy

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H07240" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9666680627454, + 38.86867883801794, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H07241" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93226220888265, + 38.89755675743699, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 05/28/07

Report Problem", + "NAME": "H07242" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93130172420881, + 38.89710167047263, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H07243" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01967362915791, + 38.95321598453066, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, KENNEDY-K81-A/D GUAR

In Service


Last Inspection Date: 08/02/07

Report Problem", + "NAME": "H07244" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97550798565447, + 38.84743397409999, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H07245" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00887822824681, + 38.87539174302792, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, CLOW - EDDY

In Service


Last Inspection Date: 05/30/07

Report Problem", + "NAME": "H07246" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99623315117327, + 38.9012061819032, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 08/24/07

Report Problem", + "NAME": "H07247" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00606339758599, + 38.9071935853177, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/12/07

Report Problem", + "NAME": "H07248" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92804164672515, + 38.88152634767735, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/12/07

Report Problem", + "NAME": "H07249" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05344021828674, + 38.900758663977086, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/25/07

Report Problem", + "NAME": "H07250" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99724158304521, + 38.901266187703385, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 05/16/07

Report Problem", + "NAME": "H07251" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99826064706298, + 38.90127459410005, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 08/31/07

Report Problem", + "NAME": "H07252" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00751400965916, + 38.946484469770624, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 07/27/07

Report Problem", + "NAME": "H07253" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9737727225967, + 38.890777566180994, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 02/23/07

Report Problem", + "NAME": "H07255" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0108679583866, + 38.887530602783514, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H07256" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99075291491035, + 38.93062772081035, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 10/30/07

Report Problem", + "NAME": "H07257" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97399120404835, + 38.89240987804229, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 02/23/07

Report Problem", + "NAME": "H07258" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00881961020227, + 38.87758203077894, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Eddy

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H07259" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00930522065583, + 38.878462725693296, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 08/16/07

Report Problem", + "NAME": "H07260" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00937235300053, + 38.87469652635012, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H07261" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00944827614639, + 38.877586476799294, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H07262" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98342357713578, + 38.876706706480256, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, KENNEDY-K81-A/D GUAR

In Service


Last Inspection Date: 10/18/06

Report Problem", + "NAME": "H07264" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98676341517982, + 38.876578961326985, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 01/04/08

Report Problem", + "NAME": "H07265" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03642312919904, + 38.904976362366526, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/02/07

Report Problem", + "NAME": "H07266" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9853565847851, + 38.87652116669425, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 01/06/07

Report Problem", + "NAME": "H07267" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0465514278772, + 38.896150438687805, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/29/07

Report Problem", + "NAME": "H07702" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04368932293251, + 38.89529565927772, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 05/22/07

Report Problem", + "NAME": "H07703" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04442034926468, + 38.894170499666586, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 05/24/07

Report Problem", + "NAME": "H07704" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04572986746048, + 38.89496064083354, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP SMITH - O'BRIEN

In Service


Last Inspection Date: 05/24/07

Report Problem", + "NAME": "H07705" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0448323779181, + 38.89614923733559, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 05/22/07

Report Problem", + "NAME": "H07706" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9840155149534, + 38.86390963763843, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 06/05/07

Report Problem", + "NAME": "H07707" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98277500179164, + 38.863687421809345, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/05/07

Report Problem", + "NAME": "H07708" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09010290543684, + 38.90907642652341, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H07710" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93017148673826, + 38.88066259171604, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Kennedy

In Service


Last Inspection Date: 06/08/07

Report Problem", + "NAME": "H07711" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03931769336532, + 38.90619250627998, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 07/04/07

Report Problem", + "NAME": "H07712" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98856490722186, + 38.85682458078639, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/04/07

Report Problem", + "NAME": "H07713" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99582352528398, + 38.91202241001932, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 08/07/07

Report Problem", + "NAME": "H07714" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99046222038285, + 38.874682216628244, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 10/18/06

Report Problem", + "NAME": "H07715" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94784720320794, + 38.90443724934308, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP SMITH - O'BRIEN

In Service


Last Inspection Date: 06/02/07

Report Problem", + "NAME": "H07716" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95246022829865, + 38.90508292730649, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/02/07

Report Problem", + "NAME": "H07718" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98912704057659, + 38.83079641789728, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 10/11/07

Report Problem", + "NAME": "H07719" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98999498305183, + 38.82999721053814, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/18/07

Report Problem", + "NAME": "H07720" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01290430053886, + 38.873833184843015, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 07/05/07

Report Problem", + "NAME": "H07721" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93653748617665, + 38.89820879639172, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/02/07

Report Problem", + "NAME": "H07722" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05433234478356, + 38.94348155986243, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 09/26/07

Report Problem", + "NAME": "H07723" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03436247298768, + 38.94903956155696, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US PIPE-MET 250 M94

In Service


Last Inspection Date: 07/17/07

Report Problem", + "NAME": "H07724" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09724558516685, + 38.92929154082307, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H07725" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05600337284044, + 38.900825143175915, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/30/07

Report Problem", + "NAME": "H07727" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05597990398972, + 38.90219493827348, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H07728" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.977988540688, + 38.9068194262826, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/01/07

Report Problem", + "NAME": "H07729" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9916561781167, + 38.85849224792853, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/17/07

Report Problem", + "NAME": "H07730" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9312637752667, + 38.89181323054132, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/06/07

Report Problem", + "NAME": "H07731" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0554934718497, + 38.89327835858064, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/30/07

Report Problem", + "NAME": "H07732" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9873343554735, + 38.85198215279726, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 08/01/07

Report Problem", + "NAME": "H07734" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0662298132155, + 38.91180775590383, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H07736" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93084474132424, + 38.88057317864063, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 09/12/07

Report Problem", + "NAME": "H07737" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06628176841052, + 38.910815781826415, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 08/06/07

Report Problem", + "NAME": "H07738" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0662008800927, + 38.909828224911614, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/02/07

Report Problem", + "NAME": "H07739" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99270593709383, + 38.89106001988396, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/11/07

Report Problem", + "NAME": "H07740" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03664588377005, + 38.901615708286606, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H08141" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92780039612224, + 38.88707814832078, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/08/07

Report Problem", + "NAME": "H08142" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04151322791029, + 38.908898493871376, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP SMITH - O'BRIEN

In Service


Last Inspection Date: 10/12/07

Report Problem", + "NAME": "H08143" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04028346416186, + 38.908630196396956, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/13/07

Report Problem", + "NAME": "H08144" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03736201545385, + 38.907616178766666, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 07/09/07

Report Problem", + "NAME": "H08145" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03834930200641, + 38.90795714009193, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP SMITH - O'BRIEN

In Service


Last Inspection Date: 07/09/07

Report Problem", + "NAME": "H08146" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05735174646733, + 38.93023071146079, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 01/19/07

Report Problem", + "NAME": "H08147" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99267277976033, + 38.8607069825124, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 09/07/07

Report Problem", + "NAME": "H08148" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00131375632988, + 38.88610450699817, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 10/30/06

Report Problem", + "NAME": "H08149" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0007573019991, + 38.886754268371845, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 10/30/06

Report Problem", + "NAME": "H08150" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95602339297108, + 38.900677003252326, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H08152" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95722838637901, + 38.90062352660191, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H08153" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9934376085016, + 38.91525068088991, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/31/07

Report Problem", + "NAME": "H08154" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06049710038423, + 38.90977916810914, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/02/07

Report Problem", + "NAME": "H08155" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02284487258444, + 38.89622084505351, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H08156" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02246245935183, + 38.980433010542164, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Eddy

In Service


Last Inspection Date: 09/12/06

Report Problem", + "NAME": "H08157" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01339550515529, + 38.89345469727164, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H08158" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00209402051352, + 38.830854568763904, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Kennedy

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H08159" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01462246845327, + 38.891447097778624, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H08160" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00926931424503, + 38.868295433385356, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP SMITH - O'BRIEN

In Service


Last Inspection Date: 07/05/07

Report Problem", + "NAME": "H08161" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92456958859614, + 38.89604421417688, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H08162" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02424766072127, + 38.935145217729044, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 01/02/08

Report Problem", + "NAME": "H08163" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94202236269832, + 38.90861666634091, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H08164" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0172963812285, + 38.890654725306696, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H08165" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00074023920943, + 38.886346387055426, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 10/30/06

Report Problem", + "NAME": "H08166" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05812501222938, + 38.93557330871181, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/10/07

Report Problem", + "NAME": "H08167" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04456499397594, + 38.911074677276005, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/11/07

Report Problem", + "NAME": "H08168" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95381372360585, + 38.85834333883947, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 12/26/07

Report Problem", + "NAME": "H08169" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00755524231829, + 38.90570537332664, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/12/07

Report Problem", + "NAME": "H08170" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00880649602487, + 38.90569611521218, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/18/07

Report Problem", + "NAME": "H08172" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00572081136154, + 38.905719260326336, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 07/04/07

Report Problem", + "NAME": "H08173" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01340079016845, + 38.902443942775804, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 07/31/07

Report Problem", + "NAME": "H08174" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04240553327146, + 38.90126458670531, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H08175" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95565860108124, + 38.85691093069084, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US PIPE-MET 250 M94

In Service


Last Inspection Date: 08/21/07

Report Problem", + "NAME": "H08176" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93171236515379, + 38.88551644748906, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/10/07

Report Problem", + "NAME": "H06775" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07997674543732, + 38.961032367081344, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Eddy

In Service


Last Inspection Date: 06/18/07

Report Problem", + "NAME": "H06776" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93561081739895, + 38.88600962758285, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/08/07

Report Problem", + "NAME": "H06777" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05931200835049, + 38.90982979904883, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 09/04/07

Report Problem", + "NAME": "H06778" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.10244670460115, + 38.93988473964499, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 01/08/08

Report Problem", + "NAME": "H06779" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03091852572004, + 38.88608572947236, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H06780" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03035854074379, + 38.88609295695204, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H06781" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01822966368945, + 38.92886967524745, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 04/20/07

Report Problem", + "NAME": "H06782" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95941927170149, + 38.91845287454123, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 07/30/07

Report Problem", + "NAME": "H06783" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04338693484873, + 38.90467721268086, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/11/07

Report Problem", + "NAME": "H06784" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02966817634758, + 38.899743058400354, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Clow Eddy

In Service


Last Inspection Date: 05/29/07

Report Problem", + "NAME": "H06785" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07469621511788, + 38.93910692946605, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US Pipe, AP Smith

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H06786" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05744155687229, + 38.96314680294454, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H06787" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00579436256669, + 38.888774120746874, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/27/07

Report Problem", + "NAME": "H06788" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95380719997834, + 38.87396028435545, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H06789" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01650694641194, + 38.97397167263155, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H06790" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94350489538657, + 38.903783169603216, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H06791" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97268359089284, + 38.922408914627795, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, CLOW - EDDY

In Service


Last Inspection Date: 08/02/07

Report Problem", + "NAME": "H06792" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95114901816872, + 38.89247950822375, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US pipe

In Service


Last Inspection Date: 05/30/07

Report Problem", + "NAME": "H06793" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99157703651174, + 38.955543577165905, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H06794" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04437285473905, + 38.94515082911551, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, CLOW - EDDY

In Service


Last Inspection Date: 07/18/07

Report Problem", + "NAME": "H06795" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97891349259542, + 38.843241253842216, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 09/25/07

Report Problem", + "NAME": "H06796" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93930316910527, + 38.8794846133168, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H06797" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0886893672408, + 38.94138019415723, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 12/10/07

Report Problem", + "NAME": "H06798" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0980655268222, + 38.95115875666244, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US Pipe, AP Smith

In Service


Last Inspection Date: 06/04/07

Report Problem", + "NAME": "H06799" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05549341051372, + 38.984084077342835, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Kennedy

In Service


Last Inspection Date: 06/13/07

Report Problem", + "NAME": "H06800" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0526978139392, + 38.97704680578762, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Kennedy

In Service


Last Inspection Date: 10/24/07

Report Problem", + "NAME": "H06801" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0035409833462, + 38.82825590688537, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/15/07

Report Problem", + "NAME": "H06802" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98235268411509, + 38.89207209518024, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 11/01/06

Report Problem", + "NAME": "H06803" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98093008033639, + 38.89206613326344, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Eddy

In Service


Last Inspection Date: 08/24/07

Report Problem", + "NAME": "H06804" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97833887260107, + 38.91527651301537, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/31/07

Report Problem", + "NAME": "H06805" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05682587062851, + 38.97885234639924, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/13/07

Report Problem", + "NAME": "H06806" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04295758729371, + 38.926561641107796, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 10/23/06

Report Problem", + "NAME": "H06807" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98199379578354, + 38.919101025555314, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/30/07

Report Problem", + "NAME": "H06808" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03549478026815, + 38.901479082619964, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 05/29/07

Report Problem", + "NAME": "H08177" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0092827879668, + 38.902604736306714, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/12/07

Report Problem", + "NAME": "H08178" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04150093609918, + 38.90126745191087, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP SMITH - O'BRIEN

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H08179" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99350386421665, + 38.92752398463641, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/19/07

Report Problem", + "NAME": "H08180" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99355669919886, + 38.92658690672346, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/19/07

Report Problem", + "NAME": "H08181" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03959123380503, + 38.89742481485953, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H08182" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04419249618404, + 38.90140050011229, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/30/07

Report Problem", + "NAME": "H08183" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92182074154292, + 38.899207829429145, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 11/01/07

Report Problem", + "NAME": "H08184" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92120249374817, + 38.900071739400516, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H08185" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02363245136844, + 38.88123143409648, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP SMITH - O'BRIEN

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H08186" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02225212129427, + 38.88135470577844, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H08187" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0416078282054, + 38.902217507242085, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP SMITH - O'BRIEN

In Service


Last Inspection Date: 07/06/07

Report Problem", + "NAME": "H08188" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9207012937859, + 38.89904467214268, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H08189" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00758525140215, + 38.90569406590387, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H08190" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00025186288822, + 38.92305260761414, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/30/07

Report Problem", + "NAME": "H08191" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9972408231606, + 38.92448807802464, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/30/07

Report Problem", + "NAME": "H08192" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03995315557866, + 38.93535159953509, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/18/07

Report Problem", + "NAME": "H08193" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01358784632926, + 38.89290682205701, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H08194" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04051846792657, + 38.8964255864395, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/24/07

Report Problem", + "NAME": "H08195" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01494671207605, + 38.90258946535637, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/10/07

Report Problem", + "NAME": "H08196" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93050311745522, + 38.90002479938208, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/08/07

Report Problem", + "NAME": "H08197" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09320065072461, + 38.92114763836906, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H08198" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03831158173872, + 38.9014610409353, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/28/07

Report Problem", + "NAME": "H08199" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03748416543611, + 38.90146517393015, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US Pipe

In Service


Last Inspection Date: 05/29/07

Report Problem", + "NAME": "H08200" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02119456986291, + 38.89365163659758, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H08201" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02906451894086, + 38.888715003678044, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H08202" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92756634578595, + 38.9047109646528, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H08203" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92740591776794, + 38.90597091741606, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US PIPE-A P SMITH

In Service


Last Inspection Date: 05/28/07

Report Problem", + "NAME": "H08204" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03182204114798, + 38.91197219079815, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 06/15/07

Report Problem", + "NAME": "H08205" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03209063664018, + 38.91712557874504, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H08206" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03210336684512, + 38.90895414811679, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 05/30/07

Report Problem", + "NAME": "H08207" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99123696917337, + 38.86205485832162, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H08208" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04566521114579, + 38.90863023480223, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/12/07

Report Problem", + "NAME": "H08209" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99958465694297, + 38.89002489648742, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 10/22/06

Report Problem", + "NAME": "H08210" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0438685423126, + 38.991540667148115, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H08211" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92215662292064, + 38.901056983892204, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP SMITH - O'BRIEN

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H08212" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05264919204835, + 38.89643309950491, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 07/13/07

Report Problem", + "NAME": "H08213" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05557594075515, + 38.94970435584497, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 02/20/08

Report Problem", + "NAME": "H08214" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04313662915926, + 38.90875583518156, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP SMITH - O'BRIEN

In Service


Last Inspection Date: 06/12/07

Report Problem", + "NAME": "H08215" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01744375663698, + 38.88549660543028, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H08216" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03081125628373, + 38.90141181307621, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 05/29/07

Report Problem", + "NAME": "H08217" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03336025786113, + 38.977209204283, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H08218" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01929184680138, + 38.94215128765235, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/06/07

Report Problem", + "NAME": "H08219" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02857666736612, + 38.934475904627455, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 10/11/07

Report Problem", + "NAME": "H08220" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03931652931746, + 38.90154979970365, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 05/29/07

Report Problem", + "NAME": "H08221" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04534624867802, + 38.92793162400314, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 11/09/06

Report Problem", + "NAME": "H08222" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0463193741046, + 38.929753137432066, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 11/09/06

Report Problem", + "NAME": "H08223" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01351392151345, + 38.86472204025098, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, A.P. Smith

In Service


Last Inspection Date: 07/05/07

Report Problem", + "NAME": "H08224" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05338534483874, + 38.89968216306236, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 05/25/07

Report Problem", + "NAME": "H08226" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08392436344513, + 38.93520806434547, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/08/07

Report Problem", + "NAME": "H08227" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0137510566863, + 38.868501266149224, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/05/07

Report Problem", + "NAME": "H08230" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02236734369201, + 38.87872401757323, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H08231" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02686660091739, + 38.9057012853849, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/24/07

Report Problem", + "NAME": "H08232" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01223179441675, + 38.90273073486977, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/12/07

Report Problem", + "NAME": "H08233" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01223631934823, + 38.903637686407194, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/12/07

Report Problem", + "NAME": "H08234" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01631002904152, + 38.907182154548025, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/12/07

Report Problem", + "NAME": "H08235" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99957175775653, + 38.90362408420953, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP SMITH - O'BRIEN

In Service


Last Inspection Date: 08/24/07

Report Problem", + "NAME": "H08236" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0196865787712, + 38.887694302678234, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H08237" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01712937463928, + 38.88769284095378, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AM DARLING - B-62-B

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H08238" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05325998845386, + 38.974429858512536, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 07/19/07

Report Problem", + "NAME": "H08239" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05451519215418, + 38.97400137106152, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US Pipe, AP Smith

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H08240" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02141160033958, + 38.9025904232028, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 10/18/07

Report Problem", + "NAME": "H08241" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01773654470381, + 38.90138746860893, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/02/07

Report Problem", + "NAME": "H08242" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02423988131991, + 38.91253429240804, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP SMITH - O'BRIEN

In Service


Last Inspection Date: 10/04/06

Report Problem", + "NAME": "H08243" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01626198843816, + 38.901224676959394, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H08244" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97312474257745, + 38.88525611195604, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H08245" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99793329869803, + 38.87658623326196, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 11/16/06

Report Problem", + "NAME": "H08246" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00578083068814, + 38.885218820420974, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 10/30/06

Report Problem", + "NAME": "H08247" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0672432194845, + 38.97200398815426, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/15/07

Report Problem", + "NAME": "H08248" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01999553121911, + 38.92114513258771, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 07/09/07

Report Problem", + "NAME": "H08249" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00472236749316, + 38.885007594424685, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/07/07

Report Problem", + "NAME": "H08250" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03071004240493, + 38.91339480588025, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/13/07

Report Problem", + "NAME": "H08251" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02971018132025, + 38.91326958726182, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/15/07

Report Problem", + "NAME": "H08252" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02427706527385, + 38.912565219321955, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP SMITH - O'BRIEN

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H08253" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03834107114176, + 38.95707617833018, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/05/07

Report Problem", + "NAME": "H08254" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00293472570456, + 38.925205297973406, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 02/28/08

Report Problem", + "NAME": "H08255" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9758817182945, + 38.882693774413184, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 04/10/06

Report Problem", + "NAME": "H08256" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01979363064866, + 38.897860590742205, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H08257" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03326918376025, + 38.91043142449036, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/13/07

Report Problem", + "NAME": "H08258" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93674142079028, + 38.890259092651476, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H08259" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02413260889021, + 38.913400187017174, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 10/04/06

Report Problem", + "NAME": "H08260" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02584994353063, + 38.91337647010082, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP SMITH - O'BRIEN

In Service


Last Inspection Date: 09/08/07

Report Problem", + "NAME": "H08261" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01210857023432, + 38.869347977064805, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 02/29/08

Report Problem", + "NAME": "H08262" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00927794074641, + 38.89511931173586, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/27/07

Report Problem", + "NAME": "H08263" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00896262042976, + 38.8960392256087, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/27/07

Report Problem", + "NAME": "H08264" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01511786062102, + 38.96854741563351, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/19/07

Report Problem", + "NAME": "H08265" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98952692870112, + 38.91281293838704, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 09/28/07

Report Problem", + "NAME": "H08266" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98551208205598, + 38.92471905963108, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/30/07

Report Problem", + "NAME": "H08267" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07949187356242, + 38.93323857834559, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H08268" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01583620541501, + 38.87752262745055, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H08269" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99513327070656, + 38.93132925498553, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Kennedy

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H08270" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04649363470668, + 38.89357737456082, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/21/07

Report Problem", + "NAME": "H08271" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01230137266033, + 38.92634611310559, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/10/06

Report Problem", + "NAME": "H08272" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01013885360227, + 38.926591229778545, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, CLOW - EDDY

In Service


Last Inspection Date: 06/10/06

Report Problem", + "NAME": "H08273" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01398335499461, + 38.92621440255582, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/10/06

Report Problem", + "NAME": "H08274" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01532220622806, + 38.92688260660708, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, KENNEDY-K81-A/D GUAR

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H08275" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02405292872156, + 38.8944090110871, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H08276" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02406840229555, + 38.89565075720782, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H08277" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02490264297842, + 38.89603614939658, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H08278" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00510950552537, + 38.873082494450905, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H08279" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99606942549883, + 38.93299883544605, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H08280" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.984790676523, + 38.90043212834989, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 09/10/07

Report Problem", + "NAME": "H08281" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06743986700921, + 38.936163150493876, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 02/06/08

Report Problem", + "NAME": "H08282" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05517856338699, + 38.93414474992192, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 12/27/06

Report Problem", + "NAME": "H08283" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01373964756537, + 38.89489005965317, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H08284" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95138380039576, + 38.88833419518425, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/02/07

Report Problem", + "NAME": "H08285" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95157623961008, + 38.88941006457362, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/02/07

Report Problem", + "NAME": "H08286" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0428356429657, + 38.92247281884923, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 10/04/07

Report Problem", + "NAME": "H08287" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01532574724511, + 38.90230944559513, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/12/07

Report Problem", + "NAME": "H08288" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94464310550777, + 38.90652417217478, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H08289" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02606368145655, + 38.91274468592601, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 10/04/06

Report Problem", + "NAME": "H08290" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9403631158589, + 38.90950012644815, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/02/07

Report Problem", + "NAME": "H08291" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98558416828085, + 38.89660300893139, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/02/07

Report Problem", + "NAME": "H08292" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98692181841473, + 38.896762317109065, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/02/07

Report Problem", + "NAME": "H08293" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07853351345675, + 38.96102858898315, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/18/07

Report Problem", + "NAME": "H08294" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04474272033883, + 38.919258717509656, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 10/25/06

Report Problem", + "NAME": "H08295" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04536119029878, + 38.91837010471332, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 10/25/06

Report Problem", + "NAME": "H08296" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98821772840788, + 38.94636344257222, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H08297" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98822205775481, + 38.94711051769654, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H08298" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00207792724254, + 38.82319824431888, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/15/07

Report Problem", + "NAME": "H08299" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00374368104323, + 38.83209246142694, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H08300" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0745179419083, + 38.92233686601356, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H08301" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00137767016994, + 38.88861960954308, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 10/31/06

Report Problem", + "NAME": "H08302" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03954898450759, + 38.90482729379108, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/11/07

Report Problem", + "NAME": "H08303" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03870626477836, + 38.90481002775378, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/11/07

Report Problem", + "NAME": "H08304" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00415039685, + 38.887707932173186, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/27/07

Report Problem", + "NAME": "H08305" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03084566274906, + 38.91414191257845, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/13/07

Report Problem", + "NAME": "H08306" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02971224774062, + 38.913967498614944, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/15/07

Report Problem", + "NAME": "H08307" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9892134418145, + 38.87402078337386, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 12/12/06

Report Problem", + "NAME": "H08308" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92179076001224, + 38.89728089314876, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H08309" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03350578907524, + 38.90972104906031, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AM DARLING - B-62-B

In Service


Last Inspection Date: 10/25/07

Report Problem", + "NAME": "H08310" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03074528355717, + 38.89724948166159, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 08/20/07

Report Problem", + "NAME": "H08311" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96362156871533, + 38.850699911071544, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 10/04/07

Report Problem", + "NAME": "H08312" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96257937013323, + 38.85150873728961, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/06/07

Report Problem", + "NAME": "H08313" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0113459515883, + 38.9013182150612, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 08/06/07

Report Problem", + "NAME": "H08314" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0160661789324, + 38.91755385770648, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/11/07

Report Problem", + "NAME": "H08315" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01510686781566, + 38.8923022999448, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H08316" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99055525683777, + 38.87335822368137, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 11/10/06

Report Problem", + "NAME": "H08317" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98222824471678, + 38.83619910675699, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 10/17/07

Report Problem", + "NAME": "H08318" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96254275137659, + 38.926826639313255, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/27/07

Report Problem", + "NAME": "H08428" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96280426767339, + 38.925778650334095, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/31/07

Report Problem", + "NAME": "H08429" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9613028254853, + 38.92613610827265, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/27/07

Report Problem", + "NAME": "H08430" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9392726023663, + 38.89175677212225, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 10/08/07

Report Problem", + "NAME": "H08431" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02083652520874, + 38.884773856446024, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 11/03/07

Report Problem", + "NAME": "H08432" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02679516929125, + 38.97648061376269, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H08433" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98696072061638, + 38.908576156445044, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/27/07

Report Problem", + "NAME": "H08434" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96481506894972, + 38.84973311316996, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 10/04/07

Report Problem", + "NAME": "H08437" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99698155188067, + 38.94559483426475, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H08438" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99840611729657, + 38.945426704764486, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H08439" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02605733788842, + 38.90977280878796, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP SMITH - O'BRIEN

In Service


Last Inspection Date: 08/16/07

Report Problem", + "NAME": "H08440" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02587864211371, + 38.9110871926042, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP SMITH - O'BRIEN

In Service


Last Inspection Date: 05/18/07

Report Problem", + "NAME": "H08441" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97718498973083, + 38.88679479636077, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 04/06/06

Report Problem", + "NAME": "H08442" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00381412784823, + 38.87470687551057, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H08443" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02605383574824, + 38.90848666127305, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/30/07

Report Problem", + "NAME": "H08444" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02591163873204, + 38.90711401011605, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/30/07

Report Problem", + "NAME": "H08445" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97489749027639, + 38.927786358732135, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP SMITH - O'BRIEN

In Service


Last Inspection Date: 08/07/07

Report Problem", + "NAME": "H08446" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97370627688652, + 38.92776132393991, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP SMITH - O'BRIEN

In Service


Last Inspection Date: 08/07/07

Report Problem", + "NAME": "H08447" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03900908895159, + 38.903847997163304, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 07/02/07

Report Problem", + "NAME": "H08448" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98381084491167, + 38.881325570503094, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/17/06

Report Problem", + "NAME": "H08449" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02423415194802, + 38.920817517456605, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/21/06

Report Problem", + "NAME": "H08450" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.10248470261361, + 38.923019930141635, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H08452" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0150670437515, + 38.895202360187156, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H08453" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0197770001507, + 38.894299667958826, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H08454" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01968850613716, + 38.893676231752664, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H08455" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00790620159373, + 38.89677353762276, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H08456" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09146094765984, + 38.916366471316195, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H08457" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9949765650847, + 38.8387182415587, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, SUP CENT 250

In Service


Last Inspection Date: 09/12/07

Report Problem", + "NAME": "H08458" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99184322048237, + 38.882666954785755, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 11/07/06

Report Problem", + "NAME": "H08459" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99279589759597, + 38.88266990912566, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 11/07/06

Report Problem", + "NAME": "H08460" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03808518129945, + 38.8964851216087, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/30/07

Report Problem", + "NAME": "H08461" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95899268806791, + 38.927475865897996, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/31/07

Report Problem", + "NAME": "H08462" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95952451906204, + 38.92641322328298, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/31/07

Report Problem", + "NAME": "H08463" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95816678847049, + 38.92822525403737, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/31/07

Report Problem", + "NAME": "H08464" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95856004768567, + 38.92774257557982, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/31/07

Report Problem", + "NAME": "H08465" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97874310067432, + 38.83891656384935, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H08320" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98090804420679, + 38.83722066429693, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 10/04/07

Report Problem", + "NAME": "H08321" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04477094130978, + 38.93428994564243, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 09/20/07

Report Problem", + "NAME": "H08322" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98439807816389, + 38.85959801716119, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/05/07

Report Problem", + "NAME": "H08323" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08455634619834, + 38.95874907307745, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, American Darling

In Service


Last Inspection Date: 06/05/07

Report Problem", + "NAME": "H08324" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05050700205177, + 38.89719671153101, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP SMITH - O'BRIEN

In Service


Last Inspection Date: 05/23/07

Report Problem", + "NAME": "H08325" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03434068464448, + 38.91109067822516, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US Pipe

In Service


Last Inspection Date: 06/13/07

Report Problem", + "NAME": "H08326" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03318859323646, + 38.91118194134541, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 10/30/07

Report Problem", + "NAME": "H08327" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02799335021693, + 38.89720467227648, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H08328" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02817944809317, + 38.897510533529406, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H08329" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02798523689899, + 38.89750416626152, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H08330" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02971165071288, + 38.898224859335, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP SMITH - O'BRIEN

In Service


Last Inspection Date: 06/02/07

Report Problem", + "NAME": "H08331" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0278904743096, + 38.89840758351679, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H08332" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98845940621565, + 38.88277003166853, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 04/28/06

Report Problem", + "NAME": "H08333" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00522213820375, + 38.90991302897518, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/12/07

Report Problem", + "NAME": "H08334" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04055172817277, + 38.90139941536408, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H08335" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06645356958478, + 38.922527824070826, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H08336" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06502920837417, + 38.92272326820528, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H08337" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06543401109026, + 38.92333855392444, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H08338" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98689992846845, + 38.85620339196964, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 08/17/07

Report Problem", + "NAME": "H08339" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98555681399935, + 38.857141091752496, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/05/07

Report Problem", + "NAME": "H08340" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01898043308506, + 38.91272105309525, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/11/07

Report Problem", + "NAME": "H08341" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04501646204457, + 38.89529116468103, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, KENNEDY-K81-A/D GUAR

In Service


Last Inspection Date: 05/25/07

Report Problem", + "NAME": "H08342" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98816471194674, + 38.837750818319385, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/02/07

Report Problem", + "NAME": "H08343" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02619707222384, + 38.898391445191194, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP SMITH - O'BRIEN

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H08344" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02381303904498, + 38.898532792202516, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H08345" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9883786746581, + 38.879420011156185, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 10/27/06

Report Problem", + "NAME": "H08346" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02283404670345, + 38.897080569409574, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H08347" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02206304492873, + 38.89710260789232, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/02/07

Report Problem", + "NAME": "H08348" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0169171448239, + 38.97330557233673, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, KENNEDY-K81-A/D GUAR

In Service


Last Inspection Date: 09/17/07

Report Problem", + "NAME": "H08349" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04337971467226, + 38.906529998821355, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H08350" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03295321706722, + 38.92350394493053, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 08/21/06

Report Problem", + "NAME": "H08351" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03285151529943, + 38.92267544224298, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H08352" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02172945583831, + 38.911068246585344, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/12/07

Report Problem", + "NAME": "H08353" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02097298162155, + 38.91125199281655, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H08354" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00716575264279, + 38.90718151478236, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/12/07

Report Problem", + "NAME": "H08355" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0145768195112, + 38.896003203035555, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H08356" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98768896734745, + 38.83681138550871, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H08357" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98928491590188, + 38.879224579692156, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 10/16/06

Report Problem", + "NAME": "H08358" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98837899611085, + 38.88112601104574, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 03/05/07

Report Problem", + "NAME": "H08359" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01403141657126, + 38.90379759906298, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Eddy

In Service


Last Inspection Date: 06/12/07

Report Problem", + "NAME": "H08360" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96326847348543, + 38.880678366073994, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H08362" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9825575519487, + 38.92894088897529, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/30/07

Report Problem", + "NAME": "H08363" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94577625936975, + 38.86921353709764, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP SMITH - O'BRIEN

In Service


Last Inspection Date: 07/30/07

Report Problem", + "NAME": "H08364" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94703477273785, + 38.8683998085889, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H08365" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9563895304164, + 38.92728647858071, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/31/07

Report Problem", + "NAME": "H08366" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95998785756807, + 38.92908739259746, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/31/07

Report Problem", + "NAME": "H08367" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04025982788481, + 38.903890200379095, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 09/14/07

Report Problem", + "NAME": "H08369" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92332854926619, + 38.89953523775674, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H08370" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03443405457999, + 38.9014902821746, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 08/06/07

Report Problem", + "NAME": "H08371" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03354155308863, + 38.90123515490904, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 05/29/07

Report Problem", + "NAME": "H08372" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02204435392741, + 38.884068467473675, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H08373" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98899509108924, + 38.8612038684665, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/04/07

Report Problem", + "NAME": "H08374" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.91974324070002, + 38.89917079258774, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/08/07

Report Problem", + "NAME": "H08375" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0326395003206, + 38.90123053689111, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H08376" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01829311716507, + 38.89196076946774, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H08377" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03347096524197, + 38.90140821668236, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP SMITH - O'BRIEN

In Service


Last Inspection Date: 05/29/07

Report Problem", + "NAME": "H08378" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01384898174817, + 38.8851367246785, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 11/04/07

Report Problem", + "NAME": "H08379" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01063685948301, + 38.9057054847332, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/12/07

Report Problem", + "NAME": "H08380" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99460350852914, + 38.909909138456875, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H08381" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99551978574854, + 38.909654691506766, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US PIPE-A P SMITH

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H08382" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.032102210849, + 38.90121111060677, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/29/07

Report Problem", + "NAME": "H08383" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03217864309157, + 38.90141339025018, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/29/07

Report Problem", + "NAME": "H08384" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96375080281416, + 38.924997377139746, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/31/07

Report Problem", + "NAME": "H08385" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9898512889259, + 38.83379076058705, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 10/30/07

Report Problem", + "NAME": "H08386" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0228134302436, + 38.88491735091642, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H08387" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02822365104687, + 38.89621301216608, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/02/07

Report Problem", + "NAME": "H08388" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02825521358331, + 38.89481603216257, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Kennedy

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H08389" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01470054031982, + 38.91768706349387, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Kennedy

In Service


Last Inspection Date: 06/11/07

Report Problem", + "NAME": "H08390" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02011984858905, + 38.897421323292384, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H08391" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01456811375331, + 38.90863579123086, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, CLOW - EDDY

In Service


Last Inspection Date: 09/25/07

Report Problem", + "NAME": "H08392" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0526693576068, + 38.913784905295614, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/11/07

Report Problem", + "NAME": "H08393" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98853372608112, + 38.86072686429535, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/04/07

Report Problem", + "NAME": "H08394" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99485835521703, + 38.93352980089793, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H08395" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02089442069115, + 38.89725620816021, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H08396" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99504121148979, + 38.89286552808492, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US PIPE-A P SMITH

In Service


Last Inspection Date: 06/27/07

Report Problem", + "NAME": "H08397" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9963869020058, + 38.89239424150939, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 10/19/06

Report Problem", + "NAME": "H08398" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00009277077737, + 38.960240183984304, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US PIPE-A P SMITH

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H08399" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03472186902212, + 38.901528500520605, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US Pipe

In Service


Last Inspection Date: 05/29/07

Report Problem", + "NAME": "H08400" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04035226386559, + 38.91884498711813, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/13/07

Report Problem", + "NAME": "H08401" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09758322381626, + 38.91781397793509, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H08402" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00076633215748, + 38.87758588357054, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H08403" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09665497285758, + 38.91737221497994, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H08404" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96086351700934, + 38.92771938951734, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/27/07

Report Problem", + "NAME": "H08405" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96185308264808, + 38.926848792888386, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/27/07

Report Problem", + "NAME": "H08406" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96094253819084, + 38.92706797972132, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/27/07

Report Problem", + "NAME": "H08407" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9619430855142, + 38.924185378131774, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/31/07

Report Problem", + "NAME": "H08408" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00471748575956, + 38.894848162840894, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/27/07

Report Problem", + "NAME": "H08409" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00336797377814, + 38.89525374818417, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/27/07

Report Problem", + "NAME": "H08410" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99801097628497, + 38.946349092688955, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H08411" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99845883958635, + 38.947335470064644, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H08412" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99770476850875, + 38.94720454937909, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H08413" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01016547589707, + 38.903815457590504, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/12/07

Report Problem", + "NAME": "H08414" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01624662809736, + 38.89599123582937, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H08415" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01129772563324, + 38.90384923399925, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 09/24/07

Report Problem", + "NAME": "H08416" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01222011013053, + 38.92120324505646, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/11/07

Report Problem", + "NAME": "H08418" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96200971460257, + 38.92475458143464, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/31/07

Report Problem", + "NAME": "H08419" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96402536763, + 38.92594683051196, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/27/07

Report Problem", + "NAME": "H08420" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9621355275832, + 38.927497267175745, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/27/07

Report Problem", + "NAME": "H08421" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96258566163135, + 38.92368791198445, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/31/07

Report Problem", + "NAME": "H08423" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96036446401986, + 38.92427438707619, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 08/10/07

Report Problem", + "NAME": "H08424" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96369466263668, + 38.92576998507413, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 10/22/07

Report Problem", + "NAME": "H08425" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9625030277677, + 38.9255432928641, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP SMITH - O'BRIEN

In Service


Last Inspection Date: 07/31/07

Report Problem", + "NAME": "H08426" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96309268978209, + 38.9267188225985, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/27/07

Report Problem", + "NAME": "H08427" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95689856788752, + 38.92864146368962, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 10/15/07

Report Problem", + "NAME": "H08466" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95970909884488, + 38.924449050474934, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 10/07/07

Report Problem", + "NAME": "H08467" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95726784464247, + 38.92814826806567, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 10/07/07

Report Problem", + "NAME": "H08468" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95984502892284, + 38.92534896520106, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/31/07

Report Problem", + "NAME": "H08469" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08638710577023, + 38.93462981066992, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 11/20/07

Report Problem", + "NAME": "H08470" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02798760970032, + 38.89365008944466, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 02/15/08

Report Problem", + "NAME": "H08471" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02836423520479, + 38.89196439736748, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 09/15/07

Report Problem", + "NAME": "H08472" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02826522843692, + 38.89236599654917, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H08473" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02826125937592, + 38.892938407398994, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H08474" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06318425130685, + 38.944293495447674, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 07/10/07

Report Problem", + "NAME": "H08475" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0573447641172, + 38.93383851487389, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 12/27/06

Report Problem", + "NAME": "H08476" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94637204663934, + 38.89843839358465, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/01/07

Report Problem", + "NAME": "H08477" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94616299994543, + 38.898971673545276, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 09/06/07

Report Problem", + "NAME": "H08478" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02847482355152, + 38.911745638926384, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP SMITH - O'BRIEN

In Service


Last Inspection Date: 05/18/07

Report Problem", + "NAME": "H08479" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02875439842148, + 38.91095659298035, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 05/12/07

Report Problem", + "NAME": "H08480" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03812996010343, + 38.89634445038992, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/30/07

Report Problem", + "NAME": "H08481" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08658881613316, + 38.95998389743036, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/05/07

Report Problem", + "NAME": "H08482" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92255226785032, + 38.898665229480834, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H08483" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02182938574424, + 38.8974671481761, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H08484" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02204448311844, + 38.899259240202056, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H08485" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97922669310609, + 38.919809755946844, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/30/07

Report Problem", + "NAME": "H08486" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98449915185869, + 38.84439894866785, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H08487" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97208616208393, + 38.928242145248376, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/27/07

Report Problem", + "NAME": "H08488" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05459880699436, + 38.94173242238124, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 12/20/06

Report Problem", + "NAME": "H08489" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97510623589379, + 38.87412643178905, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/27/07

Report Problem", + "NAME": "H08490" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97512818899816, + 38.89879257990533, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US PIPE-A P SMITH

In Service


Last Inspection Date: 09/07/07

Report Problem", + "NAME": "H08491" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02859860157034, + 38.88768369546333, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H08492" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02822972218756, + 38.88667732401562, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H08493" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00432219533818, + 38.84966108808251, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/02/07

Report Problem", + "NAME": "H08494" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05497110319803, + 38.95221189678646, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H08495" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00622271852494, + 38.90147398542171, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H08496" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01626838110322, + 38.89159573448617, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 11/17/07

Report Problem", + "NAME": "H08497" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99732923533367, + 38.88520448349828, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 03/01/07

Report Problem", + "NAME": "H08498" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99744155044182, + 38.884990005440564, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 08/08/07

Report Problem", + "NAME": "H08499" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98711293458845, + 38.881325477069744, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/19/06

Report Problem", + "NAME": "H08500" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03100176511474, + 38.91107117192213, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, CLOW - EDDY

In Service


Last Inspection Date: 05/18/07

Report Problem", + "NAME": "H08501" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.029718354384, + 38.91127255354978, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 03/07/08

Report Problem", + "NAME": "H08502" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00579074823631, + 38.89494169348083, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/27/07

Report Problem", + "NAME": "H08503" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99708905931759, + 38.944563721900295, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H08504" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99780241534405, + 38.94433857542791, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H08505" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0432831916959, + 38.9148896048663, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/19/07

Report Problem", + "NAME": "H08506" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04329924046024, + 38.91562729143581, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/13/07

Report Problem", + "NAME": "H08507" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04336543084449, + 38.91328248714605, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/10/07

Report Problem", + "NAME": "H08508" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04336294928191, + 38.91420757221476, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/10/07

Report Problem", + "NAME": "H08509" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00467641774055, + 38.955577477958514, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 09/12/07

Report Problem", + "NAME": "H08510" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01676421713123, + 38.97492892271481, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H08511" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00094005175632, + 38.952682427762525, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H08512" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00111515709453, + 38.95275324023068, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H08513" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0046655435606, + 38.95495466495944, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H08514" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97800595108619, + 38.841120966288855, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/06/07

Report Problem", + "NAME": "H08516" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92790991157297, + 38.88776816789205, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Clow Eddy

In Service


Last Inspection Date: 02/28/08

Report Problem", + "NAME": "H08518" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92981760872138, + 38.888724920649125, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/08/07

Report Problem", + "NAME": "H08519" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93041850895601, + 38.88594005981671, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Eddy

In Service


Last Inspection Date: 06/08/07

Report Problem", + "NAME": "H08520" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97168509423048, + 38.85692322325186, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, U.S. Pipe

In Service


Last Inspection Date: 07/06/07

Report Problem", + "NAME": "H08521" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9269147821931, + 38.8814460948615, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H08522" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92996967614468, + 38.88805560823569, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/08/07

Report Problem", + "NAME": "H08523" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03181107669249, + 38.90145226288173, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 02/21/08

Report Problem", + "NAME": "H08525" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02006637347118, + 38.88882305079976, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AM DARLING - B-84-B

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H08526" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02685913709283, + 38.89041123219989, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, CLOW - EDDY

In Service


Last Inspection Date: 06/27/07

Report Problem", + "NAME": "H08527" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03036355406417, + 38.888691909048134, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H08528" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92575333584115, + 38.88681264016373, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 11/03/07

Report Problem", + "NAME": "H08529" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92903683068647, + 38.881683576463125, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US PIPE-A P SMITH

In Service


Last Inspection Date: 06/08/07

Report Problem", + "NAME": "H08530" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0376211413675, + 38.96128358441223, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H08531" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98387172945833, + 38.8553852639279, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/05/07

Report Problem", + "NAME": "H08532" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9482544365408, + 38.88915211769327, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/02/07

Report Problem", + "NAME": "H08533" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99043433811318, + 38.86019398022922, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Clow Eddy

In Service


Last Inspection Date: 06/04/07

Report Problem", + "NAME": "H08534" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93534554685658, + 38.904581087974115, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, CLOW - EDDY

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H08535" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93597316733936, + 38.90601041048936, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Clow Eddy

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H08536" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95496542205478, + 38.864111889116856, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 01/03/08

Report Problem", + "NAME": "H08537" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97360608449723, + 38.858177709127055, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Clow Eddy

In Service


Last Inspection Date: 07/06/07

Report Problem", + "NAME": "H08538" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99010971881326, + 38.83154461312445, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/18/07

Report Problem", + "NAME": "H06304" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99158447120384, + 38.84400563613905, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 02/21/08

Report Problem", + "NAME": "H06305" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99650063765533, + 38.82731645106532, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/15/07

Report Problem", + "NAME": "H06306" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9942613489853, + 38.85891046792447, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 10/03/07

Report Problem", + "NAME": "H06307" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9424613941558, + 38.87942205420123, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H06308" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94318930617003, + 38.880100904643065, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H06309" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00094198954898, + 38.95876499697013, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H06310" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99793491978788, + 38.824950095276236, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/15/07

Report Problem", + "NAME": "H06311" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99772070099907, + 38.82556903633247, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/15/07

Report Problem", + "NAME": "H06312" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0000479654624, + 38.95502742771825, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H06313" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99654653064003, + 38.948286640332384, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H06314" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00131907759724, + 38.95697461055816, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H06315" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96467675990772, + 38.873105370179346, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/09/06

Report Problem", + "NAME": "H06316" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9513462421715, + 38.86993561831918, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H06317" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06008266147673, + 38.90404294626886, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/11/07

Report Problem", + "NAME": "H06318" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96223514638304, + 38.87188215688112, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H06319" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03984973394303, + 38.905599108174734, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US Pipe

In Service


Last Inspection Date: 06/11/07

Report Problem", + "NAME": "H06320" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99797795290505, + 38.96087385228594, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H06321" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00292127032174, + 38.959335141986934, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H06322" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0029134179376, + 38.95860702266086, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H06323" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.959429989507, + 38.871193757676636, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 08/09/06

Report Problem", + "NAME": "H06324" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08621657401493, + 38.941646176336384, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 11/14/07

Report Problem", + "NAME": "H06325" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0060432725119, + 38.82914523706379, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/15/07

Report Problem", + "NAME": "H06326" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97975742844228, + 38.907449627792346, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 06/01/07

Report Problem", + "NAME": "H06327" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05602825092163, + 38.959417683301226, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/15/07

Report Problem", + "NAME": "H06328" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09058080915013, + 38.94488207705248, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 12/20/07

Report Problem", + "NAME": "H06329" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92994923586132, + 38.87848045455763, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/08/07

Report Problem", + "NAME": "H06330" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92997035249158, + 38.879522179931946, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/08/07

Report Problem", + "NAME": "H06331" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95678689031837, + 38.89197872047685, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/01/07

Report Problem", + "NAME": "H06332" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96668122823594, + 38.92563092149949, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 10/30/07

Report Problem", + "NAME": "H06333" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98107604350997, + 38.84970423505059, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 09/07/07

Report Problem", + "NAME": "H06334" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95761052706486, + 38.885276744294536, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 03/10/08

Report Problem", + "NAME": "H06335" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9689828986322, + 38.85529060601268, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/06/07

Report Problem", + "NAME": "H06336" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.10319215143784, + 38.937125373112885, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US Pipe, AP Smith

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H06337" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96025208313756, + 38.87751710826846, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H06338" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.10199165846161, + 38.94207491012106, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 01/09/08

Report Problem", + "NAME": "H06809" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93188206066793, + 38.889632854120734, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H06810" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04354367039312, + 38.99020962857461, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H06811" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04431139193487, + 38.98497449063176, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H06812" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05259754131637, + 38.89962876752536, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/25/07

Report Problem", + "NAME": "H06813" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08112630706023, + 38.9067914243098, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, SUP CENT 250

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H06814" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97907583196913, + 38.90427153327567, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Kennedy

In Service


Last Inspection Date: 05/12/07

Report Problem", + "NAME": "H06815" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93903046883437, + 38.89978244361404, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H06816" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97909581360963, + 38.90103858259027, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/19/07

Report Problem", + "NAME": "H06817" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97935427625308, + 38.89961572234665, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, KENNEDY-K81-A/D GUAR

In Service


Last Inspection Date: 05/28/07

Report Problem", + "NAME": "H06818" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0498815307086, + 38.91266203218983, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 03/06/08

Report Problem", + "NAME": "H06819" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05524152681508, + 38.966256015539265, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H06820" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9791653098176, + 38.90501399955406, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 01/29/08

Report Problem", + "NAME": "H06821" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97916724142279, + 38.9037688565339, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 07/17/07

Report Problem", + "NAME": "H06822" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97915266357276, + 38.90256463524427, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, USP

In Service


Last Inspection Date: 06/02/07

Report Problem", + "NAME": "H06823" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97890899180648, + 38.90175636187868, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 08/24/07

Report Problem", + "NAME": "H06824" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.950614591531, + 38.90207286702679, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 06/11/07

Report Problem", + "NAME": "H06825" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93277440125377, + 38.89183110849277, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H06826" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93397222830615, + 38.891781056551544, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H06827" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08344901069415, + 38.96247001853708, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/15/07

Report Problem", + "NAME": "H06828" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99794042749807, + 38.84321258359658, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 07/02/07

Report Problem", + "NAME": "H06829" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00211459104457, + 38.8791159604665, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H06830" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9777128015119, + 38.90233239529218, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 05/19/07

Report Problem", + "NAME": "H06832" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98036613862679, + 38.90127756047794, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 09/07/07

Report Problem", + "NAME": "H06833" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04581257261422, + 38.942667049608396, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/28/07

Report Problem", + "NAME": "H06834" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93061566693929, + 38.8981998981573, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H06835" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00197923389352, + 38.88001350485407, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 11/01/06

Report Problem", + "NAME": "H06836" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00218617108085, + 38.878343606629706, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H06837" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00074163014447, + 38.87933638556729, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US PIPE-MET 250 M94

In Service


Last Inspection Date: 11/10/06

Report Problem", + "NAME": "H06838" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98829182615815, + 38.912835648282005, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/18/07

Report Problem", + "NAME": "H06839" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99682697263924, + 38.91014814825445, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 07/10/07

Report Problem", + "NAME": "H06840" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9932680535277, + 38.91057318212014, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H06841" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06492180613985, + 38.903931743686734, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 08/01/07

Report Problem", + "NAME": "H06842" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99607692273177, + 38.84348248291928, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/02/07

Report Problem", + "NAME": "H06843" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06799562489095, + 38.90967835835896, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 11/08/07

Report Problem", + "NAME": "H07268" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97288442106708, + 38.874268999431315, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H07269" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.1057971046107, + 38.92774309571597, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H07270" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9718932464032, + 38.87758487310338, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H07271" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97102071397458, + 38.87902117427944, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H07272" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93505601398128, + 38.883847091875765, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/08/07

Report Problem", + "NAME": "H07273" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0172380791555, + 38.82272044132549, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/15/07

Report Problem", + "NAME": "H07274" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05588598026421, + 38.93690658413924, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 11/18/05

Report Problem", + "NAME": "H07275" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99827184749294, + 38.91957081503366, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H07276" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99166522071086, + 38.898960666041795, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/02/07

Report Problem", + "NAME": "H07277" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.992527170893, + 38.89896296744019, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 08/30/07

Report Problem", + "NAME": "H07278" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04337789329506, + 38.90362982387168, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/11/07

Report Problem", + "NAME": "H07279" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0279766083476, + 38.88343885332378, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, KENNEDY-K81-A/D GUAR

In Service


Last Inspection Date: 06/28/07

Report Problem", + "NAME": "H07280" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00049927276746, + 38.83139627437486, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H07281" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99473614256651, + 38.89153822135641, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 12/04/06

Report Problem", + "NAME": "H07282" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01433752866193, + 38.87935951522073, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H07283" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01998269109451, + 38.87742059309258, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 02/21/08

Report Problem", + "NAME": "H07284" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01913810912403, + 38.87834478854834, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H07285" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01998414816177, + 38.878508275290706, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H07286" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03124438213845, + 38.97214077611694, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H07287" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09438902912585, + 38.93248178929561, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 10/26/07

Report Problem", + "NAME": "H07288" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98649905520308, + 38.932808217717465, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H07291" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97412070698806, + 38.88402778257524, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 04/10/06

Report Problem", + "NAME": "H07292" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93814038792657, + 38.876428562683174, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H07293" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95743452962736, + 38.885872710903186, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 02/07/08

Report Problem", + "NAME": "H07294" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02796855055394, + 38.881700353750524, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H07295" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03114521856557, + 38.882812887396334, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H07296" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03087176449948, + 38.88312784813139, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H07297" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03925445444915, + 38.982948349912874, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H07298" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98375852939992, + 38.91475560227307, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, KENNEDY-K81-A/D GUAR

In Service


Last Inspection Date: 07/19/07

Report Problem", + "NAME": "H07299" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93392357053568, + 38.90612145930246, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H07300" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01884523396411, + 38.89598159392819, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H07301" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95132071266752, + 38.873913376547904, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H07302" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95287539677435, + 38.87454847589481, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H07303" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.91649170986268, + 38.893011248621335, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 02/29/08

Report Problem", + "NAME": "H07304" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01342033836507, + 38.878461757788635, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H07741" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92526210004631, + 38.88185626399039, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 01/22/08

Report Problem", + "NAME": "H07742" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93281190286608, + 38.90613430179411, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US PIPE-MET 250 M94

In Service


Last Inspection Date: 09/18/07

Report Problem", + "NAME": "H07743" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05263459899241, + 38.89868417910864, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP SMITH - O'BRIEN

In Service


Last Inspection Date: 06/08/07

Report Problem", + "NAME": "H07744" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05160308022576, + 38.8981174818172, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 05/14/07

Report Problem", + "NAME": "H07745" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99181324622516, + 38.913476458853495, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/31/07

Report Problem", + "NAME": "H07746" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05002308526707, + 38.90711874141516, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/12/07

Report Problem", + "NAME": "H07747" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00713398029409, + 38.902596068103726, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 02/29/08

Report Problem", + "NAME": "H07748" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9730906640221, + 38.916419030126704, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 07/30/07

Report Problem", + "NAME": "H07749" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05654547254223, + 38.89470632929781, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/13/07

Report Problem", + "NAME": "H07750" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97854699647581, + 38.9290532669026, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/30/07

Report Problem", + "NAME": "H07751" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97725497061309, + 38.9291135404281, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 08/08/07

Report Problem", + "NAME": "H07752" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06110013765166, + 38.906758932084074, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 10/17/07

Report Problem", + "NAME": "H07753" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05717522525298, + 38.90690650266282, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/11/07

Report Problem", + "NAME": "H07754" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99488126588837, + 38.902294033570534, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 08/27/07

Report Problem", + "NAME": "H07755" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0582657616718, + 38.90689473049063, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/11/07

Report Problem", + "NAME": "H07756" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99487383548785, + 38.90382141760269, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP SMITH - O'BRIEN

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H07757" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06946745852954, + 38.916522866822895, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 01/16/08

Report Problem", + "NAME": "H07758" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99487947157466, + 38.89468810322306, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP SMITH - O'BRIEN

In Service


Last Inspection Date: 06/02/07

Report Problem", + "NAME": "H07759" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93052527485881, + 38.90470013195742, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, KENNEDY-K81-A/D GUAR

In Service


Last Inspection Date: 05/24/07

Report Problem", + "NAME": "H07760" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0093999101176, + 38.88311783915731, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H07761" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01063283576278, + 38.88312134578459, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H07762" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99487230027009, + 38.89903637692326, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP SMITH - O'BRIEN

In Service


Last Inspection Date: 08/27/07

Report Problem", + "NAME": "H07763" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00196897298102, + 38.842707697793834, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 03/11/08

Report Problem", + "NAME": "H07764" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99139999991228, + 38.87320087615333, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP SMITH - O'BRIEN

In Service


Last Inspection Date: 06/05/07

Report Problem", + "NAME": "H07765" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01742140936466, + 38.87384271477187, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/05/07

Report Problem", + "NAME": "H07766" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01765882040428, + 38.87451807484806, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/05/07

Report Problem", + "NAME": "H07767" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02081924170639, + 38.88135481684726, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H07768" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0174426769584, + 38.87551687743489, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/05/07

Report Problem", + "NAME": "H07769" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01867656891648, + 38.881341846725824, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H07770" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03621679669857, + 38.89796392521521, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 08/15/07

Report Problem", + "NAME": "H07771" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0368967817473, + 38.89796860396744, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 08/15/07

Report Problem", + "NAME": "H07772" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04346389556616, + 38.92826027783582, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H07773" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02406298086142, + 38.81754920450373, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 10/11/07

Report Problem", + "NAME": "H07774" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99745840910933, + 38.82620057874815, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/15/07

Report Problem", + "NAME": "H06339" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9956068334873, + 38.82844436207334, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/15/07

Report Problem", + "NAME": "H06340" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99682326982476, + 38.828125006322736, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/15/07

Report Problem", + "NAME": "H06341" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99339191721745, + 38.95552054258865, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H06342" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93476059633116, + 38.895033836867896, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H06343" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94791305166814, + 38.86882538255405, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H06344" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95998804184612, + 38.88935925271337, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/30/07

Report Problem", + "NAME": "H06345" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06107098506828, + 38.90850181945575, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, SUP CENT 250

In Service


Last Inspection Date: 08/13/07

Report Problem", + "NAME": "H06346" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93320064366125, + 38.88965038022436, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H06347" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99032197115449, + 38.88140162869176, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 10/27/06

Report Problem", + "NAME": "H06348" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9760216362617, + 38.84839872241051, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H06349" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.10189551860627, + 38.93639631563402, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US Pipe, AP Smith

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H06350" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00192226267096, + 38.82213544512, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H06352" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03855193202259, + 38.912755556166076, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/23/07

Report Problem", + "NAME": "H06353" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98762947524733, + 38.83216761803273, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/18/07

Report Problem", + "NAME": "H06354" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99506468853413, + 38.92624212382352, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/31/07

Report Problem", + "NAME": "H06355" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99598770630901, + 38.925284016651744, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/19/07

Report Problem", + "NAME": "H06356" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98563966534705, + 38.86056768974044, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/05/07

Report Problem", + "NAME": "H06357" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08950270210565, + 38.90941356583103, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/27/07

Report Problem", + "NAME": "H06358" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93547349084179, + 38.90275046283293, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP SMITH - O'BRIEN

In Service


Last Inspection Date: 05/12/07

Report Problem", + "NAME": "H06359" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95493978817174, + 38.85947083173937, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H06360" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.91612755633857, + 38.89788590295347, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/08/07

Report Problem", + "NAME": "H06361" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0347101888558, + 38.90360959613769, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 05/30/07

Report Problem", + "NAME": "H06362" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95963016559689, + 38.88526874870483, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 03/10/08

Report Problem", + "NAME": "H06363" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93369194522047, + 38.90070602734576, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 05/12/07

Report Problem", + "NAME": "H06364" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00857842370351, + 38.82447080877871, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/15/07

Report Problem", + "NAME": "H06365" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94415948378074, + 38.90044744658407, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, CLOW - EDDY

In Service


Last Inspection Date: 05/08/07

Report Problem", + "NAME": "H06366" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.10301117280481, + 38.93838187549443, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Kennedy, K81A

In Service


Last Inspection Date: 06/05/07

Report Problem", + "NAME": "H06367" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99841487177481, + 38.90708070417186, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/10/07

Report Problem", + "NAME": "H06368" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94010232235925, + 38.87872176274441, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H06369" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01083734992935, + 38.82609913629217, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/15/07

Report Problem", + "NAME": "H06370" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99191366111425, + 38.83417960066931, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/18/07

Report Problem", + "NAME": "H06372" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98957882319804, + 38.83502705741386, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H06373" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94078738017618, + 38.869412767156305, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 07/27/07

Report Problem", + "NAME": "H06374" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94462028341387, + 38.892721515049516, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 05/30/07

Report Problem", + "NAME": "H06375" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99864897478108, + 38.84317751506021, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/02/07

Report Problem", + "NAME": "H06844" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99484419430694, + 38.843697448548774, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Kennedy

In Service


Last Inspection Date: 07/02/07

Report Problem", + "NAME": "H06845" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9922569181805, + 38.84395933423378, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/07/07

Report Problem", + "NAME": "H06846" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99955191583206, + 38.84320232226955, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/02/07

Report Problem", + "NAME": "H06848" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.91897316867937, + 38.891790001345214, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H06849" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9402533802271, + 38.87757590921841, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/08/07

Report Problem", + "NAME": "H06850" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93928743314085, + 38.87652350957581, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H06851" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08364710794544, + 38.95335321635176, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US Pipe, AP Smith

In Service


Last Inspection Date: 06/05/07

Report Problem", + "NAME": "H06852" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09069924201972, + 38.953367298846686, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 11/12/07

Report Problem", + "NAME": "H06853" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94248132894039, + 38.8672304526927, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 07/27/07

Report Problem", + "NAME": "H06854" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94265647631872, + 38.86794841010728, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 07/27/07

Report Problem", + "NAME": "H06855" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94618815273662, + 38.906538136283935, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP SMITH - O'BRIEN

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H06856" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93474601630156, + 38.892914303294454, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H06857" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.963360431868, + 38.93503937652759, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/27/07

Report Problem", + "NAME": "H06858" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96128073431242, + 38.882799424655836, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 11/05/07

Report Problem", + "NAME": "H06859" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00222589421041, + 38.91816450759264, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 05/28/07

Report Problem", + "NAME": "H06860" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00369154111137, + 38.91805374010515, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, KENNEDY-K81-A/D GUAR

In Service


Last Inspection Date: 07/12/07

Report Problem", + "NAME": "H06861" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99063765723189, + 38.92962671738468, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H06862" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05725835591967, + 38.91261370752583, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/11/07

Report Problem", + "NAME": "H06863" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05520375582552, + 38.970257873523714, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H06864" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06425030350772, + 38.906894673585185, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 07/02/07

Report Problem", + "NAME": "H06865" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97134524838968, + 38.8522550803544, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/06/07

Report Problem", + "NAME": "H06866" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05606306758123, + 38.96852105408021, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 02/12/08

Report Problem", + "NAME": "H06867" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05625816843887, + 38.962009617823256, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Kennedy

In Service


Last Inspection Date: 06/15/07

Report Problem", + "NAME": "H06868" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05983560459721, + 38.966514994145456, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H06869" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98376542601555, + 38.857205735079866, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/05/07

Report Problem", + "NAME": "H06870" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08314101453924, + 38.94104236238156, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H06871" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97073573734988, + 38.91963415842319, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/30/07

Report Problem", + "NAME": "H06872" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9704394700389, + 38.92000406482806, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/30/07

Report Problem", + "NAME": "H06873" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96784416447316, + 38.92242569083767, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/30/07

Report Problem", + "NAME": "H06874" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96646694615163, + 38.92384010561988, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/27/07

Report Problem", + "NAME": "H06875" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96922992836353, + 38.92147108261294, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/30/07

Report Problem", + "NAME": "H06876" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96698599320483, + 38.92353877195621, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/31/07

Report Problem", + "NAME": "H06877" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96046686602362, + 38.8763736734287, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H06878" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95811052128136, + 38.93061837270984, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 10/11/07

Report Problem", + "NAME": "H06879" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96727098728275, + 38.857171800876756, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/06/07

Report Problem", + "NAME": "H07305" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99635417416557, + 38.884554151004195, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/12/07

Report Problem", + "NAME": "H07306" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01494724758, + 38.881212401512734, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H07307" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01378666928579, + 38.8813579576819, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H07308" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01279834871673, + 38.881219872480905, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H07309" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06878110099485, + 38.91722232852371, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H07310" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01602895733629, + 38.96265282003601, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H07311" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05135348582326, + 38.90381273899625, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/12/07

Report Problem", + "NAME": "H07312" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97474021922181, + 38.87126849176154, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/27/07

Report Problem", + "NAME": "H07313" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93934619799694, + 38.897468791997184, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 05/30/07

Report Problem", + "NAME": "H07314" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98460593523568, + 38.932915786081175, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H07315" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0269938774607, + 38.882992178578796, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H07316" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0532342281229, + 38.90276396427433, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 06/11/07

Report Problem", + "NAME": "H07317" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0493638217325, + 38.902781509455075, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/12/07

Report Problem", + "NAME": "H07318" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04772895307246, + 38.9023632372102, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/29/07

Report Problem", + "NAME": "H07319" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05152540812392, + 38.90271795003059, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H07320" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04669577766252, + 38.902774507813405, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 09/21/07

Report Problem", + "NAME": "H07321" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0148720424155, + 38.87301176305626, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/11/07

Report Problem", + "NAME": "H07322" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01684278490809, + 38.874695931097925, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/05/07

Report Problem", + "NAME": "H07323" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01591764608332, + 38.87461418352595, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/05/07

Report Problem", + "NAME": "H07324" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01450467759673, + 38.873992616869565, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/05/07

Report Problem", + "NAME": "H07325" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01450659961178, + 38.874774005160646, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 07/05/07

Report Problem", + "NAME": "H07326" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99382187311828, + 38.86127895747909, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/04/07

Report Problem", + "NAME": "H07327" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02979387119423, + 38.92252251676341, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 04/05/07

Report Problem", + "NAME": "H07328" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02708016953936, + 38.88442227572075, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H07329" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0270826006272, + 38.883752060381994, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H07330" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96347613201775, + 38.85251151579887, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/06/07

Report Problem", + "NAME": "H07331" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02180399151449, + 38.895473034350346, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H07332" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02201541580818, + 38.89580636728702, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H07333" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02180749732133, + 38.89415795624079, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H07334" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02174944125531, + 38.894860484606916, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H07335" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02200250619778, + 38.89468900798926, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/02/07

Report Problem", + "NAME": "H07336" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01142075801127, + 38.815766086697586, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/15/07

Report Problem", + "NAME": "H07338" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01144093096623, + 38.81439651564001, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP SMITH - O'BRIEN

In Service


Last Inspection Date: 06/15/07

Report Problem", + "NAME": "H07339" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0227656159168, + 38.94630885992599, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/06/07

Report Problem", + "NAME": "H07340" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07876359814216, + 38.94389898622888, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H07775" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99651848135503, + 38.848006392343244, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 08/08/07

Report Problem", + "NAME": "H07776" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01372098245272, + 38.89595689559788, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H07777" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99087963650723, + 38.91957312034873, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 08/15/07

Report Problem", + "NAME": "H07778" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04360849355336, + 38.91255213573038, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/13/07

Report Problem", + "NAME": "H07779" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99029430469642, + 38.91372777423202, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, CLOW - EDDY

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H07780" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98881807747505, + 38.91424336049654, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H07781" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01552177152728, + 38.95446121876773, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H07782" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99293796545437, + 38.831023814076744, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 08/09/07

Report Problem", + "NAME": "H07783" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05909760345287, + 38.90614583593231, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/11/07

Report Problem", + "NAME": "H07784" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99232283930444, + 38.82834727015251, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, U.S. Pipe

In Service


Last Inspection Date: 06/15/07

Report Problem", + "NAME": "H07785" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07594643658683, + 38.92489561624111, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 11/09/06

Report Problem", + "NAME": "H07786" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97773433433112, + 38.917372665271934, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/30/00

Report Problem", + "NAME": "H07788" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97600817203194, + 38.917150493472356, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/30/07

Report Problem", + "NAME": "H07789" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98932201571286, + 38.9143341035538, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 08/20/07

Report Problem", + "NAME": "H07790" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98282006843007, + 38.91633001660792, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, CLOW - MEDALLION

In Service


Last Inspection Date: 07/30/07

Report Problem", + "NAME": "H07791" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98427216517216, + 38.91582564636996, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP SMITH - O'BRIEN

In Service


Last Inspection Date: 07/31/07

Report Problem", + "NAME": "H07792" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0368585383062, + 38.90752945317807, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 05/30/07

Report Problem", + "NAME": "H07793" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97512242465194, + 38.917437277631876, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 08/07/07

Report Problem", + "NAME": "H07794" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98761884680764, + 38.914650587478306, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP SMITH - O'BRIEN

In Service


Last Inspection Date: 07/31/07

Report Problem", + "NAME": "H07795" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97394390447603, + 38.91716589706266, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/30/07

Report Problem", + "NAME": "H07796" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98505442179395, + 38.91550058425484, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US PIPE-MET 250 M94

In Service


Last Inspection Date: 07/31/07

Report Problem", + "NAME": "H07798" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03167743781633, + 38.976578159461894, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H07800" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99003768502162, + 38.935594255091814, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H07801" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02689659986729, + 38.89561209793297, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H07802" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92280358021574, + 38.88282226502623, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 01/22/08

Report Problem", + "NAME": "H07803" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01348751390485, + 38.92015589692185, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 05/19/07

Report Problem", + "NAME": "H07804" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99066590132217, + 38.830688431535556, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/18/07

Report Problem", + "NAME": "H07805" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0217240860084, + 38.9453369203669, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/06/07

Report Problem", + "NAME": "H07806" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0219117482382, + 38.94613258689647, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/06/07

Report Problem", + "NAME": "H07807" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06614962748161, + 38.906008732419245, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/02/07

Report Problem", + "NAME": "H07808" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06771622604425, + 38.90597631470976, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/02/07

Report Problem", + "NAME": "H07809" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.10280732391429, + 38.93483740473735, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US Pipe, AP Smith

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H07810" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07902293422096, + 38.965877087039736, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/13/07

Report Problem", + "NAME": "H07811" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03632478450702, + 38.90368134326886, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 10/29/07

Report Problem", + "NAME": "H06376" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95621682912618, + 38.861642256984226, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H06377" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98573229222727, + 38.95115954146684, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H06378" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96890085144213, + 38.87151492186587, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H06379" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92413955013444, + 38.89377047541237, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H06380" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92518488992707, + 38.894323353731, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H06381" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98225091412405, + 38.90448472794493, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 06/01/07

Report Problem", + "NAME": "H06382" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92548692103111, + 38.89338060451896, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Kennedy

In Service


Last Inspection Date: 06/08/07

Report Problem", + "NAME": "H06383" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04018306995864, + 38.92724280083231, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H06384" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94820585250427, + 38.889628558221574, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/02/07

Report Problem", + "NAME": "H06385" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95250851558777, + 38.88471370305015, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H06386" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05867796190613, + 38.95498451607828, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H06387" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05993017911504, + 38.95455106065457, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H06388" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98736806711368, + 38.919086073617436, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 03/04/08

Report Problem", + "NAME": "H06389" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07262882789776, + 38.932564845168564, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H06390" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92729133065178, + 38.88964889623357, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H06391" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98565165251033, + 38.900092189763704, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 02/29/08

Report Problem", + "NAME": "H06392" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94730003285807, + 38.889951697895846, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/02/07

Report Problem", + "NAME": "H06393" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94277294832536, + 38.88989497692029, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 12/18/07

Report Problem", + "NAME": "H06394" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07666750097329, + 38.95081085820682, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/18/07

Report Problem", + "NAME": "H06395" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94488773117428, + 38.86805889165294, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 01/03/08

Report Problem", + "NAME": "H06396" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94408807622351, + 38.86866497566869, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, KENNEDY-K81-A/D GUAR

In Service


Last Inspection Date: 12/17/07

Report Problem", + "NAME": "H06397" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01915796192878, + 38.93743690998917, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/29/07

Report Problem", + "NAME": "H06398" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9920012876199, + 38.95744291813311, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H06399" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99282387370222, + 38.958034625072735, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H06400" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95485103689134, + 38.858286928442375, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H06401" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9885581649474, + 38.9323779485778, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H06402" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9403906052068, + 38.889658801942446, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H06403" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95621010546085, + 38.859474134721815, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, SUP CENT 250

In Service


Last Inspection Date: 09/06/07

Report Problem", + "NAME": "H06404" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98872848378188, + 38.934536940069194, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H06405" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95993184202754, + 38.89702941929888, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/01/07

Report Problem", + "NAME": "H06406" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07357713243127, + 38.93722579682287, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Kennedy

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H06407" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07230564822046, + 38.93806898330772, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H06408" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93446043709126, + 38.88957287413981, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H06409" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92921366782463, + 38.8896477258259, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H06410" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95845546909602, + 38.93003918047837, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 11/28/07

Report Problem", + "NAME": "H06880" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96354541629603, + 38.92663907895507, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H06881" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96297487993984, + 38.92719529815789, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/27/07

Report Problem", + "NAME": "H06882" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97170466665071, + 38.901337761238985, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 02/29/08

Report Problem", + "NAME": "H06883" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96158661395637, + 38.92134311795151, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/30/07

Report Problem", + "NAME": "H06884" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9808575383346, + 38.88546202645402, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 04/12/06

Report Problem", + "NAME": "H06885" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98067951818366, + 38.891050821518625, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 05/01/06

Report Problem", + "NAME": "H06886" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98084054752002, + 38.88422369533478, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 04/26/06

Report Problem", + "NAME": "H06887" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.1022441627605, + 38.941546208943365, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/05/07

Report Problem", + "NAME": "H06888" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04577710186203, + 38.90557013625271, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/11/07

Report Problem", + "NAME": "H06889" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94929066275576, + 38.87726620429468, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, SUP CENT 250

In Service


Last Inspection Date: 09/07/07

Report Problem", + "NAME": "H06890" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.91262698875987, + 38.89536936296406, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H06891" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.91187691952949, + 38.89471703491633, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 01/11/08

Report Problem", + "NAME": "H06892" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.91416352642354, + 38.89660709893166, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/08/07

Report Problem", + "NAME": "H06893" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00195263729442, + 38.965196363764406, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H06894" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97797636106448, + 38.92027692397566, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/30/07

Report Problem", + "NAME": "H06895" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92058618802173, + 38.898204320775314, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 10/10/07

Report Problem", + "NAME": "H06896" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92479314900567, + 38.898443682540936, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 09/05/07

Report Problem", + "NAME": "H06897" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05851610742279, + 38.95360645820845, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Clow Eddy, Eddy

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H06898" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92568413701112, + 38.898516679986486, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 09/05/07

Report Problem", + "NAME": "H06899" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92183103294697, + 38.898221807835306, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H06900" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93675589040556, + 38.899096923205846, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/01/07

Report Problem", + "NAME": "H06901" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97006697274162, + 38.9199159406427, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/30/07

Report Problem", + "NAME": "H06902" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9619108089718, + 38.928025045285246, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/31/07

Report Problem", + "NAME": "H06903" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9600933858736, + 38.92928934997076, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/31/07

Report Problem", + "NAME": "H06904" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97828247739685, + 38.86892409103628, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 11/17/07

Report Problem", + "NAME": "H06905" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95996523487764, + 38.88031413424983, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H06906" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97873576249505, + 38.869549475017244, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 08/13/07

Report Problem", + "NAME": "H06907" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03481222745445, + 38.97513333035078, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H06908" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02742612846652, + 38.974926070584175, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H06910" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02857030781799, + 38.97461768814917, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H06911" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93860683013166, + 38.87469578200884, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 08/16/07

Report Problem", + "NAME": "H06912" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97890893510812, + 38.921170595704275, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AM DARLING - B-62-B

In Service


Last Inspection Date: 08/02/07

Report Problem", + "NAME": "H06913" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9219028564582, + 38.88646612596618, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/08/07

Report Problem", + "NAME": "H06914" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01969474537717, + 38.92930442183414, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H06915" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05945717749043, + 38.97996399532121, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/13/07

Report Problem", + "NAME": "H07341" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05416500998363, + 38.98012532686826, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H07342" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97073411433927, + 38.923308094717704, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/31/07

Report Problem", + "NAME": "H07343" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97004308855342, + 38.9222555675058, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/30/07

Report Problem", + "NAME": "H07344" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01057828303236, + 38.87851643345949, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H07345" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93371434777302, + 38.90841946070984, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 10/06/06

Report Problem", + "NAME": "H07346" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01425467205539, + 38.87633756963333, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H07347" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96739819608914, + 38.91745290808618, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, SUP CENT 250

In Service


Last Inspection Date: 08/31/07

Report Problem", + "NAME": "H07348" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96415166667015, + 38.91686995596387, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/30/07

Report Problem", + "NAME": "H07349" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96305428232182, + 38.917178014373874, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/30/07

Report Problem", + "NAME": "H07350" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96523652644659, + 38.91730362050751, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/30/07

Report Problem", + "NAME": "H07351" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96621225655664, + 38.91737508153287, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, CLOW - EDDY

In Service


Last Inspection Date: 08/30/07

Report Problem", + "NAME": "H07352" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0159281040351, + 38.872935493791175, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 08/06/07

Report Problem", + "NAME": "H07353" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98713634192262, + 38.867198778360724, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, KENNEDY-K81-A/D GUAR

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H07354" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00916426489884, + 38.88745975384796, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H07355" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97818278157972, + 38.89352903517165, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/04/07

Report Problem", + "NAME": "H07356" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03823057312687, + 38.990129754296284, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H07357" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96319829252309, + 38.86558191155318, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H07358" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9730110862898, + 38.8879686711808, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/11/07

Report Problem", + "NAME": "H07359" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.938462196277, + 38.889603427344525, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H07360" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99121177677247, + 38.94622085267838, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H07361" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02648922113475, + 38.89198671894936, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H07362" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02785508964458, + 38.892193891046944, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H07363" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02762717275141, + 38.89196901514472, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H07364" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00931098896494, + 38.87921491696026, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 09/17/07

Report Problem", + "NAME": "H07365" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00792679835567, + 38.96168838868454, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 08/01/07

Report Problem", + "NAME": "H07366" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00882340847184, + 38.96105161203931, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H07367" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02380879400752, + 38.886539102342, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 08/16/07

Report Problem", + "NAME": "H07369" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95050953117146, + 38.873211155001464, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H07370" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97784390927255, + 38.89838238129811, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 05/28/07

Report Problem", + "NAME": "H07371" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97778232687293, + 38.8978277788175, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 05/29/07

Report Problem", + "NAME": "H07372" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97763497622866, + 38.898936508822565, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, CLOW - EDDY

In Service


Last Inspection Date: 08/28/07

Report Problem", + "NAME": "H07373" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02345871272976, + 38.887445911617895, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H07375" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00926191581291, + 38.870865559320144, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 08/22/07

Report Problem", + "NAME": "H07376" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9705466305446, + 38.915511376550384, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/30/07

Report Problem", + "NAME": "H07377" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00829882753979, + 38.88512332393778, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H07812" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.010037273082, + 38.88511783650101, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H07813" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98299423988234, + 38.8513928821244, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H07814" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98139905696112, + 38.85146427392455, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 11/02/07

Report Problem", + "NAME": "H07815" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98436377749722, + 38.851974964332385, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H07816" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06036244463759, + 38.92284485292878, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 01/10/07

Report Problem", + "NAME": "H07817" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00925396806588, + 38.88511078456666, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H07818" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01082520137022, + 38.8859689320723, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H07819" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06743021004122, + 38.96580750633269, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H07820" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02333500914509, + 38.945262327599174, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 01/28/08

Report Problem", + "NAME": "H07821" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05595884182088, + 38.90012345835988, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 05/14/07

Report Problem", + "NAME": "H07822" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01766589212484, + 38.87222067037575, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/05/07

Report Problem", + "NAME": "H07823" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98445260119188, + 38.93094021732408, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H07824" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00665768488938, + 38.900347943841645, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/17/07

Report Problem", + "NAME": "H07825" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06788693269378, + 38.906685082759836, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 11/15/07

Report Problem", + "NAME": "H07826" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98940049754484, + 38.949367330114825, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H07827" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00428361044698, + 38.95959448378412, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H07828" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99502639156024, + 38.93050889096717, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H07829" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03936084651036, + 38.99134976553878, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H07830" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05771518043335, + 38.95316078481239, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Kennedy, K81D

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H07831" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98611011722467, + 38.90222659512454, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/02/07

Report Problem", + "NAME": "H07832" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09328228032055, + 38.938591965554785, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 11/26/07

Report Problem", + "NAME": "H07833" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93273344655442, + 38.88163480354615, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/12/07

Report Problem", + "NAME": "H07834" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07270935805565, + 38.970468523916345, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/15/07

Report Problem", + "NAME": "H07835" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03776997920576, + 38.92315260424226, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US PIPE-MET 250 M94

In Service


Last Inspection Date: 10/16/06

Report Problem", + "NAME": "H07836" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03867857225319, + 38.941932344447345, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 09/13/07

Report Problem", + "NAME": "H07837" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01830071987415, + 38.88452667688121, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H07838" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04454491329965, + 38.9456414538869, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, UNKNOWN

In Service


Last Inspection Date: 07/20/07

Report Problem", + "NAME": "H07839" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02177149392207, + 38.881114029161814, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H07840" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02004418334263, + 38.88134952938589, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H07841" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93248096639293, + 38.88276431887421, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 01/18/08

Report Problem", + "NAME": "H07842" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00918852714993, + 38.88235576454363, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H07844" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97206170668471, + 38.91342222021708, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H07845" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99625799472017, + 38.87945192364907, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 11/05/06

Report Problem", + "NAME": "H07846" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99841081003788, + 38.832717571741746, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP SMITH - O'BRIEN

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H07847" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9963243043215, + 38.82517306037714, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/15/07

Report Problem", + "NAME": "H06447" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9995304864059, + 38.95591449763924, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H06448" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0160062209351, + 38.97295330748421, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H06451" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00255576232554, + 38.95669546905703, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP SMITH - O'BRIEN

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H06452" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08395272345864, + 38.94402240957244, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 10/29/07

Report Problem", + "NAME": "H06453" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0034081284013, + 38.95615570822822, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, CLOW - EDDY

In Service


Last Inspection Date: 09/12/07

Report Problem", + "NAME": "H06454" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99619304064757, + 38.95462273246034, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H06455" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.91846497136584, + 38.88986413421935, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H06456" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.91770324035967, + 38.89207103964668, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 10/30/07

Report Problem", + "NAME": "H06457" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92050698962676, + 38.8896401070975, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H06458" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.91850117890932, + 38.88695578580477, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H06461" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92034881451684, + 38.88853236505423, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/08/07

Report Problem", + "NAME": "H06462" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99308457652555, + 38.95458937644197, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H06466" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04574062857647, + 38.91397363799839, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/13/07

Report Problem", + "NAME": "H06467" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99470559737202, + 38.95458836207815, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H06468" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09691311326478, + 38.93097133599927, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H06469" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97530820249524, + 38.84672567041775, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H06470" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97490026413797, + 38.868958455730656, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 08/14/07

Report Problem", + "NAME": "H06471" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01562281186364, + 38.91508468000044, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/12/07

Report Problem", + "NAME": "H06472" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92223478019082, + 38.88749401469716, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/08/07

Report Problem", + "NAME": "H06473" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98212791287683, + 38.87834584494729, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 11/07/06

Report Problem", + "NAME": "H06474" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08433487266956, + 38.93983558472638, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H06475" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08538363866316, + 38.93998172162816, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H06476" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0850377212599, + 38.94069364712121, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 11/14/07

Report Problem", + "NAME": "H06477" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0583610949476, + 38.92471649247591, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 01/19/07

Report Problem", + "NAME": "H06478" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95872191496316, + 38.87003664107611, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H06479" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9737771242671, + 38.84687694858346, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H06480" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97695557469099, + 38.84654202785491, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 08/25/07

Report Problem", + "NAME": "H06481" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00204359595887, + 38.95911800755165, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 08/01/07

Report Problem", + "NAME": "H06482" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00122056940498, + 38.9588904434059, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H06483" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97008413065218, + 38.926762674020075, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/27/07

Report Problem", + "NAME": "H06484" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00343822568875, + 38.89222276344097, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/27/07

Report Problem", + "NAME": "H06485" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98372679465297, + 38.867062262925614, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H06486" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00648724533183, + 38.85325258725298, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/02/07

Report Problem", + "NAME": "H06487" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00717190165935, + 38.96833554239617, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H06488" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01964243886209, + 38.93029224580981, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/18/07

Report Problem", + "NAME": "H06916" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02158505873793, + 38.929979585111354, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/06/07

Report Problem", + "NAME": "H06917" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0215817437073, + 38.92904840573736, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H06918" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92986964040844, + 38.883153320736085, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/08/07

Report Problem", + "NAME": "H06919" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93100726507458, + 38.88331737440409, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, U.S. Pipe

In Service


Last Inspection Date: 06/08/07

Report Problem", + "NAME": "H06920" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02064868456085, + 38.927567058325636, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 09/10/07

Report Problem", + "NAME": "H06921" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03493547813184, + 38.930996926259304, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 08/29/07

Report Problem", + "NAME": "H06922" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06992232888156, + 38.91855824442158, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H06923" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92181478852825, + 38.89570943557277, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 07/02/07

Report Problem", + "NAME": "H06924" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03411727054059, + 38.9733074764901, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H06925" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93384257741761, + 38.890621452199134, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H06926" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05942323667135, + 38.93421465431748, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 01/19/07

Report Problem", + "NAME": "H06927" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04191154650579, + 38.994395190684806, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H06928" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95498377859809, + 38.86151564320145, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 08/24/07

Report Problem", + "NAME": "H06929" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08950568737377, + 38.91491630083296, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/27/07

Report Problem", + "NAME": "H06930" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08879060316153, + 38.91508145576154, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/27/07

Report Problem", + "NAME": "H06931" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05232545414204, + 38.934534247823116, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 08/10/06

Report Problem", + "NAME": "H06932" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0938246535971, + 38.928670880702796, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H06933" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00898722427414, + 38.886555002027116, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H06934" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92552813657788, + 38.882575150284744, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H06935" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09929866359468, + 38.94303676509001, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US Pipe, AP Smith

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H06937" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93998868767575, + 38.91246026526381, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Kennedy

In Service


Last Inspection Date: 07/06/07

Report Problem", + "NAME": "H06938" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93867579625896, + 38.911861609933425, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Kennedy

In Service


Last Inspection Date: 12/28/07

Report Problem", + "NAME": "H06939" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02822647912558, + 38.96011392235304, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H06940" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98421121856971, + 38.93194959273384, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H06941" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93744237833668, + 38.880254515601784, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H06942" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92759163468226, + 38.89842460526843, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 09/05/07

Report Problem", + "NAME": "H06943" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97739999711641, + 38.92445505382356, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 08/03/07

Report Problem", + "NAME": "H06944" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99838069273713, + 38.89820737574346, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/18/07

Report Problem", + "NAME": "H06945" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98377964562911, + 38.92214121834334, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 08/01/07

Report Problem", + "NAME": "H06946" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03502432212396, + 38.962185216538025, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H06947" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96062208914762, + 38.8692708169922, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H06948" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93769124525946, + 38.89596496525098, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/29/07

Report Problem", + "NAME": "H06949" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0010194459706, + 38.8267402093052, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/15/07

Report Problem", + "NAME": "H06950" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94896904881244, + 38.871205725811464, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H06951" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9720106215178, + 38.91549331435399, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/30/07

Report Problem", + "NAME": "H07378" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02256505126924, + 38.88637850461337, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP SMITH - O'BRIEN

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H07379" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02324738863086, + 38.88637426297682, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H07380" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99016298111175, + 38.89536313147431, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 05/30/07

Report Problem", + "NAME": "H07381" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99031247405496, + 38.89625968350196, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 05/30/07

Report Problem", + "NAME": "H07382" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9907489650503, + 38.83235346327543, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/18/07

Report Problem", + "NAME": "H07383" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95923561316053, + 38.86279675180596, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H07384" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00869900764677, + 38.89140123292308, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/27/07

Report Problem", + "NAME": "H07385" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01047483178928, + 38.889314225282924, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/27/07

Report Problem", + "NAME": "H07386" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0086958727219, + 38.89140423294449, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 07/02/07

Report Problem", + "NAME": "H07387" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00862872610426, + 38.88823448811311, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 06/27/07

Report Problem", + "NAME": "H07388" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00862540697659, + 38.8882381637762, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/27/07

Report Problem", + "NAME": "H07389" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99965400989588, + 38.86201525233027, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, CLOW - EDDY

In Service


Last Inspection Date: 12/19/07

Report Problem", + "NAME": "H07390" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96488309635455, + 38.87387423637057, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H07391" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01998219940283, + 38.88735268178771, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/28/07

Report Problem", + "NAME": "H07392" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98404873624094, + 38.86307440890552, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H07393" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9780067069492, + 38.90256948782962, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Clow

In Service


Last Inspection Date: 05/18/07

Report Problem", + "NAME": "H07394" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97800693630485, + 38.90362040241758, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/01/07

Report Problem", + "NAME": "H07395" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95149439379644, + 38.90127230260149, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 05/21/07

Report Problem", + "NAME": "H07396" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97635823330886, + 38.90569377584452, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US PIPE-MET 250 M94

In Service


Last Inspection Date: 05/10/07

Report Problem", + "NAME": "H07397" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97671468912473, + 38.90294310217873, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/27/07

Report Problem", + "NAME": "H07398" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00920357020638, + 38.90480246529546, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 09/29/07

Report Problem", + "NAME": "H07399" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00885304021857, + 38.906541491158926, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, American Darling

In Service


Last Inspection Date: 06/12/07

Report Problem", + "NAME": "H07400" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00887512558583, + 38.90844974550422, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 01/07/08

Report Problem", + "NAME": "H07401" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00923958829911, + 38.90552679686227, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 10/04/07

Report Problem", + "NAME": "H07402" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00887017082094, + 38.9077317447217, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H07403" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0092808096706, + 38.90786818926415, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/12/07

Report Problem", + "NAME": "H07404" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04447671283583, + 38.91550002985804, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/13/07

Report Problem", + "NAME": "H07405" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96768635817297, + 38.86960370214958, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 03/10/08

Report Problem", + "NAME": "H07406" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96767823483512, + 38.86843204837949, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 08/17/07

Report Problem", + "NAME": "H07407" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00070857753023, + 38.86199491869393, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/05/07

Report Problem", + "NAME": "H07408" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03747415366104, + 38.918067589882845, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/13/07

Report Problem", + "NAME": "H07409" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92602909937159, + 38.884742490282626, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/08/07

Report Problem", + "NAME": "H07411" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9238507841437, + 38.8843195069313, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/08/07

Report Problem", + "NAME": "H07412" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98594800848531, + 38.85034603550454, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H07848" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05290796512216, + 38.925624667718154, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 11/14/06

Report Problem", + "NAME": "H07849" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07540860735465, + 38.949573363198404, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/05/07

Report Problem", + "NAME": "H07850" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0077153522999, + 38.90639261879274, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/12/07

Report Problem", + "NAME": "H07852" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04414961176225, + 38.909039525950995, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/12/07

Report Problem", + "NAME": "H07853" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99436444025051, + 38.826706962554184, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 10/18/07

Report Problem", + "NAME": "H07854" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00065591240252, + 38.91990562041026, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 08/29/07

Report Problem", + "NAME": "H07855" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02205062500774, + 38.887764298801066, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/27/07

Report Problem", + "NAME": "H07856" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0526197535387, + 38.898156322778675, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP SMITH - O'BRIEN

In Service


Last Inspection Date: 05/14/07

Report Problem", + "NAME": "H07857" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0662884505694, + 38.971337491236, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US Pipe, AP Smith

In Service


Last Inspection Date: 06/15/07

Report Problem", + "NAME": "H07858" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05252470264118, + 38.897556768885565, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 08/31/07

Report Problem", + "NAME": "H07859" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.10290292137577, + 38.930229777114825, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H07860" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99337856787909, + 38.82748258498991, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 12/19/07

Report Problem", + "NAME": "H07861" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98569205940727, + 38.833474785503725, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H07862" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99522632422931, + 38.82602436617305, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 12/21/07

Report Problem", + "NAME": "H07863" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03017195431408, + 38.95975453853187, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H07864" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06225952363265, + 38.94320213313865, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 12/19/06

Report Problem", + "NAME": "H07865" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02566035874844, + 38.88295559883774, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP SMITH - O'BRIEN

In Service


Last Inspection Date: 10/02/07

Report Problem", + "NAME": "H07866" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02631492721297, + 38.88477947989644, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 10/18/07

Report Problem", + "NAME": "H07867" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02561315135392, + 38.88475583575133, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H07868" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02577593649214, + 38.883499733922086, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H07869" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02619484318929, + 38.883405223837116, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H07870" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02431815449141, + 38.88296239907488, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 09/06/07

Report Problem", + "NAME": "H07871" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05203321111429, + 38.92467207946045, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 01/02/07

Report Problem", + "NAME": "H07872" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02580182988397, + 38.886005283847766, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 07/28/07

Report Problem", + "NAME": "H07873" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.015200697957, + 38.872180632616704, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/05/07

Report Problem", + "NAME": "H07874" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97210640348297, + 38.92929989698902, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US PIPE-MET 250 M94

In Service


Last Inspection Date: 09/25/07

Report Problem", + "NAME": "H07875" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96626492175632, + 38.926387951043914, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 07/27/07

Report Problem", + "NAME": "H07876" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.968149734719, + 38.9277700670659, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/27/07

Report Problem", + "NAME": "H07877" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96860244533637, + 38.92859304485643, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP SMITH - O'BRIEN

In Service


Last Inspection Date: 07/27/07

Report Problem", + "NAME": "H07878" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97151990766324, + 38.93109057132295, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/27/07

Report Problem", + "NAME": "H07879" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04857480353088, + 38.911080303773396, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 11/01/07

Report Problem", + "NAME": "H07880" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06790376094129, + 38.90767343303258, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 10/15/07

Report Problem", + "NAME": "H07881" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07132303600713, + 38.957023479419924, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H07882" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08683836022527, + 38.94122595662857, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 11/26/07

Report Problem", + "NAME": "H06411" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99756873306923, + 38.95479164712626, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H06412" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92788669890638, + 38.88993374987981, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 03/26/07

Report Problem", + "NAME": "H06413" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96791051099046, + 38.923390707481786, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/27/07

Report Problem", + "NAME": "H06414" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00773456528148, + 38.81968157461506, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H06415" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00713999550366, + 38.821944776314936, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, SUP CENT 250

In Service


Last Inspection Date: 07/06/07

Report Problem", + "NAME": "H06416" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00705047874656, + 38.82048374190161, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H06417" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.91360021451412, + 38.889917353913354, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H06418" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97174732588093, + 38.92062548537049, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 01/11/08

Report Problem", + "NAME": "H06419" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.10639501715012, + 38.92932789067318, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H06420" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96153600806343, + 38.86557201607332, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H06422" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92483908063348, + 38.88964277679233, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 09/19/07

Report Problem", + "NAME": "H06423" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92300169281533, + 38.88993334339456, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H06424" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0416231474056, + 38.993135776693364, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H06425" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08694628283081, + 38.94021591145779, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 11/21/07

Report Problem", + "NAME": "H06426" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99462262055135, + 38.829372967625396, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/15/07

Report Problem", + "NAME": "H06427" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92458257666763, + 38.88986487516813, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H06428" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.91765868460706, + 38.88950798089341, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H06429" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99657988162654, + 38.83550807372832, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/18/07

Report Problem", + "NAME": "H06430" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.91082475018672, + 38.89285377339497, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H06431" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.91110909801176, + 38.892012932211614, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H06432" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99856289867849, + 38.955633891328, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H06433" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94160384950266, + 38.87008790806052, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 11/27/07

Report Problem", + "NAME": "H06434" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9986870199681, + 38.954153690590985, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 08/21/07

Report Problem", + "NAME": "H06435" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97644168961469, + 38.84520790112694, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H06436" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9925421124516, + 38.94184486450241, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H06437" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97415640532023, + 38.84545124908119, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H06438" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99175041462823, + 38.8411274132506, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H06439" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98531691857632, + 38.86128333249696, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/05/07

Report Problem", + "NAME": "H06440" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98575726491512, + 38.86243383410268, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/05/07

Report Problem", + "NAME": "H06441" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00897148354399, + 38.954324564868124, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H06442" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00560326134706, + 38.82178048255727, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H06443" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00541823829477, + 38.820382132395096, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H06444" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97400629735824, + 38.84396117409836, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H06445" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03286062760037, + 38.897178946827985, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H06446" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.1017552271079, + 38.92965448406576, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US Pipe, AP Smith

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H06952" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.10259679255353, + 38.9291434722956, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US Pipe, AP Smith

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H06953" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00338175553144, + 38.87934082513986, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H06954" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00345463349966, + 38.88042332524441, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 02/01/08

Report Problem", + "NAME": "H06955" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97720895839207, + 38.94064721928847, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H06956" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98556796112138, + 38.89944858625816, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/02/07

Report Problem", + "NAME": "H06957" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99627292134048, + 38.89817018603768, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/30/07

Report Problem", + "NAME": "H06958" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03115732724314, + 38.96182514299751, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H06959" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02999061288051, + 38.9616717852718, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H06960" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0661075125801, + 38.90526358540482, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/02/07

Report Problem", + "NAME": "H06961" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06010384333933, + 38.905100479983815, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/11/07

Report Problem", + "NAME": "H06962" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05908587798966, + 38.90510164783787, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/11/07

Report Problem", + "NAME": "H06963" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06523188111883, + 38.90525056505461, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 10/26/07

Report Problem", + "NAME": "H06964" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00368841244952, + 38.95298571782302, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H06965" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96909341708202, + 38.87272407181803, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H06966" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99363869562072, + 38.843716631117545, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/02/07

Report Problem", + "NAME": "H06967" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93225284760618, + 38.896173688569974, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H06968" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02592147669041, + 38.91572090948699, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 10/04/06

Report Problem", + "NAME": "H06969" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02792098507723, + 38.91227058041637, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 07/12/07

Report Problem", + "NAME": "H06970" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92972891587851, + 38.898447206222606, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H06971" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08734832988705, + 38.936294128063686, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 11/20/07

Report Problem", + "NAME": "H06972" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99368676911035, + 38.895772526019954, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 08/27/07

Report Problem", + "NAME": "H06973" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09625834931724, + 38.945468591612475, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Clow Eddy, Eddy

In Service


Last Inspection Date: 06/04/07

Report Problem", + "NAME": "H06974" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00915681333376, + 38.830027611670445, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H06975" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93711222287227, + 38.91120534991192, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Kennedy

In Service


Last Inspection Date: 01/03/08

Report Problem", + "NAME": "H06976" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93793312400777, + 38.9130081506638, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H06977" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9368172494712, + 38.91197466531144, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 07/17/07

Report Problem", + "NAME": "H06978" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03222205275104, + 38.92350095987291, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H06979" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05752098331406, + 38.96079725785688, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/15/07

Report Problem", + "NAME": "H06980" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06605316759736, + 38.960942664582, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 12/12/07

Report Problem", + "NAME": "H06981" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05632422330982, + 38.96083973787946, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/15/07

Report Problem", + "NAME": "H06982" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98417076668625, + 38.89991512838244, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/02/07

Report Problem", + "NAME": "H06983" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98806538713458, + 38.898135485163984, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/02/07

Report Problem", + "NAME": "H06984" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9911611748645, + 38.95669336123746, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H06985" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94449869531007, + 38.890930088276136, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 06/02/07

Report Problem", + "NAME": "H06986" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92632938766549, + 38.88338365683179, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/08/07

Report Problem", + "NAME": "H07413" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96862657910718, + 38.86385943888858, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H07414" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99026975297478, + 38.925416381971466, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/31/07

Report Problem", + "NAME": "H07415" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06014937442826, + 38.94654352816389, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H07416" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06225246121589, + 38.94679193854353, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H07417" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98772872958861, + 38.91078386915941, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/12/07

Report Problem", + "NAME": "H07418" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00051212805226, + 38.876662479468, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H07419" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97352733206057, + 38.85535999977145, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/06/07

Report Problem", + "NAME": "H07420" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01008000518348, + 38.82968332214097, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H07421" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9445063059086, + 38.889977870578285, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/02/07

Report Problem", + "NAME": "H07423" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09514643003492, + 38.94309483579863, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 01/08/08

Report Problem", + "NAME": "H07424" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92624113029149, + 38.88405893290013, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Kennedy

In Service


Last Inspection Date: 10/18/07

Report Problem", + "NAME": "H07425" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98282968371099, + 38.88597101830189, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 04/06/06

Report Problem", + "NAME": "H07426" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02203506364303, + 38.88656688995685, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H07427" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03968085439364, + 38.90029132604644, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 09/11/07

Report Problem", + "NAME": "H07428" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01511110315764, + 38.88519652800059, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H07429" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01534670805299, + 38.885760250818294, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/19/07

Report Problem", + "NAME": "H07430" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92326426360978, + 38.895863890300376, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H07431" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04995342455808, + 38.903792734900286, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/10/07

Report Problem", + "NAME": "H07432" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02202100457184, + 38.901363930420096, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/01/07

Report Problem", + "NAME": "H07433" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0220115950943, + 38.9081187090952, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/12/07

Report Problem", + "NAME": "H07434" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02200605938337, + 38.90489990122216, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/01/07

Report Problem", + "NAME": "H07435" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02180465098186, + 38.900195253729066, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H07436" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02181684851732, + 38.90626615202735, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/18/07

Report Problem", + "NAME": "H07437" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01224432053385, + 38.88624380878003, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 08/03/07

Report Problem", + "NAME": "H07438" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03359572823398, + 38.90816929985527, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H07439" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02201799698209, + 38.90316099873112, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/01/07

Report Problem", + "NAME": "H07440" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0218189139256, + 38.90397254454837, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 02/07/08

Report Problem", + "NAME": "H07441" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02181922453205, + 38.90189741610248, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H07442" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02201064222825, + 38.901967230984845, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/01/07

Report Problem", + "NAME": "H07443" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03776977029426, + 38.90719054739083, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 10/26/07

Report Problem", + "NAME": "H07444" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00927240504991, + 38.91549818139271, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, KENNEDY-K81-A/D GUAR

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H07445" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00928308223466, + 38.914876218161965, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H07446" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00877638181386, + 38.91806332394905, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US PIPE-MET 250 M94

In Service


Last Inspection Date: 09/10/07

Report Problem", + "NAME": "H07447" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00876146325494, + 38.916771260298475, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H07448" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04750411240195, + 38.90516940396755, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/11/07

Report Problem", + "NAME": "H07884" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02581383360821, + 38.8866568843909, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H07885" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02615175350172, + 38.88665560209699, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H07886" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02616242912586, + 38.88600236599295, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H07887" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02124955130948, + 38.87761921174285, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 02/28/08

Report Problem", + "NAME": "H07888" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99857922853874, + 38.841949167495265, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H07889" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02277696705843, + 38.894859703232484, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H07890" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.10521583674903, + 38.92865147874046, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H07891" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02095840918759, + 38.89485575568156, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H07892" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00024455167912, + 38.82217857526091, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 10/06/07

Report Problem", + "NAME": "H07893" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02415874532174, + 38.89044881030504, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/10/07

Report Problem", + "NAME": "H07894" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02412524303273, + 38.89196544886698, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H07895" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0240496166839, + 38.88985017228636, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US PIPE-A P SMITH

In Service


Last Inspection Date: 07/09/07

Report Problem", + "NAME": "H07896" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98065146999187, + 38.86845278231885, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H07898" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02245902647606, + 38.88744929708282, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H07901" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02080869508427, + 38.886765362295634, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 10/22/07

Report Problem", + "NAME": "H07902" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0217171559744, + 38.887447978017185, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 07/12/07

Report Problem", + "NAME": "H07903" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96881586516558, + 38.92333364164194, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/27/07

Report Problem", + "NAME": "H07905" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98661696338365, + 38.89605588268407, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/02/07

Report Problem", + "NAME": "H07906" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0138799955668, + 38.813435513840034, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/15/07

Report Problem", + "NAME": "H07907" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01258659060446, + 38.91117307700959, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US Pipe

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H07908" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00614832911347, + 38.892018729736456, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/27/07

Report Problem", + "NAME": "H07909" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02167890682476, + 38.87935053691836, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H07910" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96931869991654, + 38.92444437443467, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US PIPE-MET 250 M94

In Service


Last Inspection Date: 07/27/07

Report Problem", + "NAME": "H07911" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99341733846948, + 38.86014789223935, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/04/07

Report Problem", + "NAME": "H07912" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93770853696317, + 38.90284266030697, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H07913" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04260900694922, + 38.910659464776614, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/13/07

Report Problem", + "NAME": "H07915" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03331918426504, + 38.95277441444272, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 07/16/07

Report Problem", + "NAME": "H07916" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03352030941684, + 38.95415965754698, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 07/16/07

Report Problem", + "NAME": "H07917" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99489749411727, + 38.835303637441534, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/18/07

Report Problem", + "NAME": "H07918" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01980959849544, + 38.88342038130411, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 06/27/07

Report Problem", + "NAME": "H07920" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01981900895566, + 38.88406309191132, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H07921" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9436431243427, + 38.88494669135117, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/08/07

Report Problem", + "NAME": "H07922" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04163967723093, + 38.90736462479426, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/11/07

Report Problem", + "NAME": "H07923" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07725788174332, + 38.95474298596072, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/18/07

Report Problem", + "NAME": "H06489" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00028739141594, + 38.848327792919605, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/02/07

Report Problem", + "NAME": "H06490" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92616184945268, + 38.890715293032855, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H06491" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9753159690198, + 38.9224451732559, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 08/02/07

Report Problem", + "NAME": "H06492" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99031734024099, + 38.94448902978518, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H06493" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99030994721933, + 38.94363182781952, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H06494" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05825585510728, + 38.92635757229419, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 01/19/07

Report Problem", + "NAME": "H06495" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04652667599123, + 38.94164240797303, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 05/14/07

Report Problem", + "NAME": "H06496" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94218898396095, + 38.90217811973996, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, American Darily

In Service


Last Inspection Date: 06/01/07

Report Problem", + "NAME": "H06497" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05968278999548, + 38.952731264454215, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H06498" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95063597597994, + 38.897159842421225, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/01/07

Report Problem", + "NAME": "H06499" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93591157539885, + 38.89030796115112, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H06500" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93590711364858, + 38.89197701238156, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H06501" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.91785789979404, + 38.89088725875616, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H06502" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.91465669938479, + 38.89079910490493, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 11/19/07

Report Problem", + "NAME": "H06503" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03522198549426, + 38.988337678909495, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/05/07

Report Problem", + "NAME": "H06504" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96383970105636, + 38.924163333461784, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/31/07

Report Problem", + "NAME": "H06505" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9576964210263, + 38.92000902871361, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/30/07

Report Problem", + "NAME": "H06506" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95628174702554, + 38.91906579556323, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 07/30/07

Report Problem", + "NAME": "H06507" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9881385232493, + 38.954412336166556, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H06508" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99034002312658, + 38.95484302582045, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H06509" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98932040426332, + 38.955357525285436, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H06510" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06756779303588, + 38.91558434835727, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/05/07

Report Problem", + "NAME": "H06511" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03791854932126, + 38.991171807524985, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H06512" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02410448849469, + 38.969971183317014, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 11/06/07

Report Problem", + "NAME": "H06513" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02667759581159, + 38.978057548616206, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 11/07/07

Report Problem", + "NAME": "H06514" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.10797354109583, + 38.935709389750265, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US Pipe, AP Smith

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H06515" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04088594881263, + 38.99259359003843, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 09/27/07

Report Problem", + "NAME": "H06516" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96223775778958, + 38.865705803858894, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H06519" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95301544902972, + 38.86612948299471, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 08/24/07

Report Problem", + "NAME": "H06520" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92285090576733, + 38.890782814936465, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H06521" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97981826940892, + 38.870653169794814, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H06522" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02798289407815, + 38.901494095447674, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 05/29/07

Report Problem", + "NAME": "H06523" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00572903369728, + 38.83210742498885, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H06524" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00448355760875, + 38.94156474153692, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H06525" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05606924329489, + 38.96114651049311, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 06/15/07

Report Problem", + "NAME": "H06987" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0162519783485, + 38.88122228961411, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 11/02/07

Report Problem", + "NAME": "H06988" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97505727489293, + 38.91436977328595, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/31/07

Report Problem", + "NAME": "H06989" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01765801769707, + 38.880402177956135, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H06990" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97247311061375, + 38.91754342327378, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/30/07

Report Problem", + "NAME": "H06991" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02950943823365, + 38.94724034870919, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 08/15/07

Report Problem", + "NAME": "H06992" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9354711764542, + 38.88140094999921, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 09/17/07

Report Problem", + "NAME": "H06993" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99382187716199, + 38.8962398601898, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/30/07

Report Problem", + "NAME": "H06994" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01193346336534, + 38.967273522995576, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 08/17/07

Report Problem", + "NAME": "H06995" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02067193214236, + 38.92791736047882, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 08/23/06

Report Problem", + "NAME": "H06996" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97735515863302, + 38.944106349182775, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H06997" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02134675927545, + 38.937825752192786, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, KENNEDY-K81-A/D GUAR

In Service


Last Inspection Date: 05/16/07

Report Problem", + "NAME": "H06998" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02011530125887, + 38.93186589863517, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 08/05/06

Report Problem", + "NAME": "H06999" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0192850435997, + 38.93593462033714, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/29/07

Report Problem", + "NAME": "H07000" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99837624703336, + 38.83776010022164, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H07001" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01873346617424, + 38.931990235718, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/19/07

Report Problem", + "NAME": "H07002" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01952199171801, + 38.934141848137195, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 05/29/07

Report Problem", + "NAME": "H07003" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01912682623846, + 38.93892398642003, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP SMITH - O'BRIEN

In Service


Last Inspection Date: 09/18/07

Report Problem", + "NAME": "H07004" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01929445556377, + 38.935253483242214, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/29/07

Report Problem", + "NAME": "H07005" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02158265043997, + 38.93871203501573, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, KENNEDY-K81-A/D GUAR

In Service


Last Inspection Date: 05/23/07

Report Problem", + "NAME": "H07006" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02051081021706, + 38.93333529157292, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 07/23/07

Report Problem", + "NAME": "H07007" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01917352272751, + 38.942459138336176, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H07008" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01912559332496, + 38.93359704650033, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 05/29/07

Report Problem", + "NAME": "H07009" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04374823318042, + 38.920642971229206, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 08/08/07

Report Problem", + "NAME": "H07010" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02134621464103, + 38.93639191968371, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, DRY WELL

In Service


Last Inspection Date: 05/29/07

Report Problem", + "NAME": "H07011" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02094613188794, + 38.93482078248051, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 05/16/07

Report Problem", + "NAME": "H07012" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0985620903297, + 38.94388257335056, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller, Centurion

In Service


Last Inspection Date: 06/04/07

Report Problem", + "NAME": "H07013" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0976519107093, + 38.944001453929395, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 01/24/08

Report Problem", + "NAME": "H07014" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00699942023506, + 38.892041409959404, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/27/07

Report Problem", + "NAME": "H07015" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93430973525066, + 38.885859399955486, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/08/07

Report Problem", + "NAME": "H07016" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02328546307889, + 38.93748958881003, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 05/29/07

Report Problem", + "NAME": "H07017" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95969116783435, + 38.91702032883963, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/30/07

Report Problem", + "NAME": "H07018" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96125260077652, + 38.9170967702412, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/30/07

Report Problem", + "NAME": "H07019" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02036885504953, + 38.94181423999462, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, CLOW - EDDY

In Service


Last Inspection Date: 07/10/07

Report Problem", + "NAME": "H07020" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00921986286824, + 38.9181988291148, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 07/06/07

Report Problem", + "NAME": "H07449" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00877571293505, + 38.918062720441256, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H07450" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00875880106659, + 38.91678307042007, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, KENNEDY-K81-A/D GUAR

In Service


Last Inspection Date: 06/01/07

Report Problem", + "NAME": "H07451" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0088252011388, + 38.91477439640563, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H07452" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03078416236093, + 38.920240010252606, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Clow Eddy

In Service


Last Inspection Date: 06/13/07

Report Problem", + "NAME": "H07453" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9193042667873, + 38.88993501844188, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 02/21/08

Report Problem", + "NAME": "H07454" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95763540449762, + 38.91720066907016, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/30/07

Report Problem", + "NAME": "H07455" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09361239005848, + 38.94320820055547, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 01/08/08

Report Problem", + "NAME": "H07456" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05398219670032, + 38.89889699028136, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP SMITH - O'BRIEN

In Service


Last Inspection Date: 05/12/07

Report Problem", + "NAME": "H07457" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98315240981138, + 38.84267407718769, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/06/07

Report Problem", + "NAME": "H07458" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98268059050783, + 38.84164461285684, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H07459" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03177211577905, + 38.886710519867904, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H07460" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0136034782694, + 38.829498723497665, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H07461" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93904850503645, + 38.889953025563734, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/08/07

Report Problem", + "NAME": "H07462" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01439181712323, + 38.95755944940955, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H07463" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05036330371277, + 38.89224201785637, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 10/19/07

Report Problem", + "NAME": "H07464" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9611819660535, + 38.87465600281075, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/30/07

Report Problem", + "NAME": "H07465" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94450700114177, + 38.89172185623164, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/02/07

Report Problem", + "NAME": "H07466" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95707015355423, + 38.872226862563544, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H07467" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92936742682755, + 38.89209758363686, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H07468" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96127880578582, + 38.87747564523609, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H07470" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04297437622263, + 38.993552232490885, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H07471" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93909054247733, + 38.892693764316526, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H07472" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9716480037056, + 38.922078585022724, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 11/28/07

Report Problem", + "NAME": "H07473" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03822905659493, + 38.983151932924564, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H07474" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02343360014387, + 38.97950365803748, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H07475" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97716561778017, + 38.89279867636867, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 04/07/06

Report Problem", + "NAME": "H07476" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00398878817452, + 38.95451083472198, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 07/27/07

Report Problem", + "NAME": "H07477" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92651167787781, + 38.89276973835049, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/08/07

Report Problem", + "NAME": "H07478" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01528035227209, + 38.88419382791563, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H07479" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01876919457493, + 38.87633862491311, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H07480" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0210759447468, + 38.894201159527846, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H07481" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01864675272685, + 38.8747244027887, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/05/07

Report Problem", + "NAME": "H07482" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0590056325616, + 38.94084564872903, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Kennnedy

In Service


Last Inspection Date: 10/03/07

Report Problem", + "NAME": "H07483" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99965052015793, + 38.861720046462345, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 12/18/07

Report Problem", + "NAME": "H07484" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02205400529027, + 38.8829641097241, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, KENNEDY-K81-A/D GUAR

In Service


Last Inspection Date: 06/27/07

Report Problem", + "NAME": "H07924" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02385896355244, + 38.89600808095506, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 09/18/07

Report Problem", + "NAME": "H07925" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0238678108412, + 38.89671409170843, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H07926" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98045364055163, + 38.94326049884007, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H07927" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04139487580589, + 38.90637474836192, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP SMITH - O'BRIEN

In Service


Last Inspection Date: 08/30/07

Report Problem", + "NAME": "H07928" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01735675707307, + 38.881222337849344, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 09/16/07

Report Problem", + "NAME": "H07929" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02588685858001, + 38.96857369630835, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H07930" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01373275033698, + 38.89780426636046, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/27/07

Report Problem", + "NAME": "H07931" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97232428373464, + 38.86880160477246, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 08/14/07

Report Problem", + "NAME": "H07932" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01355965696004, + 38.89669742001146, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/27/07

Report Problem", + "NAME": "H07933" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97367537173753, + 38.868900108816895, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 08/14/07

Report Problem", + "NAME": "H07934" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0447964213905, + 38.893594279841516, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 05/21/07

Report Problem", + "NAME": "H07935" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99624728954058, + 38.88030133344313, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, KENNEDY-K81-A/D GUAR

In Service


Last Inspection Date: 11/04/06

Report Problem", + "NAME": "H07936" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01612975315861, + 38.876578849809384, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H07937" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92748441403334, + 38.89287839268856, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/08/07

Report Problem", + "NAME": "H07938" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03251785223235, + 38.9254314327115, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H07939" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0321158674721, + 38.924656134904616, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Eddy

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H07940" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01531411831252, + 38.88331561411112, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H07941" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92336388826358, + 38.90017414297687, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 09/27/07

Report Problem", + "NAME": "H07942" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09110452368616, + 38.95651193299512, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H07943" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03260578450856, + 38.92742051632777, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H07944" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03223979431193, + 38.9258594948786, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, KENNEDY-K81-A/D GUAR

In Service


Last Inspection Date: 09/14/07

Report Problem", + "NAME": "H07945" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9948281618923, + 38.95099733804596, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H07946" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02029059331193, + 38.875762202455405, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/05/07

Report Problem", + "NAME": "H07947" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00367588903994, + 38.96383095104751, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H07948" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9869965980431, + 38.85964119754781, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H07949" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01624787745084, + 38.902742037298076, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/12/07

Report Problem", + "NAME": "H07950" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08869792606939, + 38.91903604098807, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 07/06/07

Report Problem", + "NAME": "H07951" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02396605231161, + 38.893874202124465, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H07952" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01103244471595, + 38.90457599010864, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/01/07

Report Problem", + "NAME": "H07953" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02040001452612, + 38.93779555429568, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 12/05/07

Report Problem", + "NAME": "H07954" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02134002210782, + 38.939902903854346, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/06/07

Report Problem", + "NAME": "H07955" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01222965737209, + 38.90479049488283, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/12/07

Report Problem", + "NAME": "H07956" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01224855341788, + 38.91593600056736, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, CLOW - EDDY

In Service


Last Inspection Date: 05/11/07

Report Problem", + "NAME": "H07957" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07721748335199, + 38.93345800499922, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H06526" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09894925603915, + 38.92575299465459, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H06527" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95876618764156, + 38.86802238568965, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H06528" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03840838976555, + 38.99182145423093, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H06529" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03898405280461, + 38.99262210168253, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H06530" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.10160852995067, + 38.9250025716698, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H06531" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00193451766445, + 38.84517849851957, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 03/06/08

Report Problem", + "NAME": "H06532" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09962189800203, + 38.92214123818247, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/27/07

Report Problem", + "NAME": "H06533" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00073182254216, + 38.831021052649234, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 03/07/08

Report Problem", + "NAME": "H06534" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04174287581495, + 38.99148379252362, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H06535" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96859949384928, + 38.865238845073264, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H06536" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97080932290235, + 38.91723002505121, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, SUP CENT 250

In Service


Last Inspection Date: 09/11/07

Report Problem", + "NAME": "H06537" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.91657282320223, + 38.88986904992909, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Kennedy

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H06538" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96886999819282, + 38.91717397913174, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, KENNEDY-K81-A/D GUAR

In Service


Last Inspection Date: 07/30/07

Report Problem", + "NAME": "H06539" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06515470111678, + 38.93634517117816, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 01/22/07

Report Problem", + "NAME": "H06540" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99483977402123, + 38.905329801430874, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H06541" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9944489519022, + 38.905757644083046, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H06542" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93912598595999, + 38.89669493996138, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/29/07

Report Problem", + "NAME": "H06543" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02381686441643, + 38.919347696708975, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/21/06

Report Problem", + "NAME": "H06544" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08593476549828, + 38.91380001075514, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/05/07

Report Problem", + "NAME": "H06545" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01030701031365, + 38.8948463079967, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/27/07

Report Problem", + "NAME": "H06546" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99257229569044, + 38.947195138488254, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H06547" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.076819591807, + 38.947947756260206, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 08/29/07

Report Problem", + "NAME": "H06548" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96890161469761, + 38.86957832211967, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 07/30/07

Report Problem", + "NAME": "H06549" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00572608536115, + 38.8311030356256, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H06550" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9329825764222, + 38.89055516477139, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 05/21/07

Report Problem", + "NAME": "H06551" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97268893821048, + 38.84572533916201, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H06552" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97188645664649, + 38.844301120938916, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 08/28/07

Report Problem", + "NAME": "H06553" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97286296573763, + 38.84744343360558, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H06554" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0225048778306, + 38.89059271611999, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H06555" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0770147489041, + 38.92991599052319, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H06556" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01159263294112, + 38.96904227158588, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/18/07

Report Problem", + "NAME": "H06557" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00334481761338, + 38.830889717669116, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 12/20/07

Report Problem", + "NAME": "H06558" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07998341493588, + 38.9479649932339, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H06559" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99004990742897, + 38.91909028740231, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, CLOW - EDDY

In Service


Last Inspection Date: 02/05/08

Report Problem", + "NAME": "H06560" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02060330149321, + 38.94113048775644, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H07021" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98582953879914, + 38.911204172613175, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 09/04/07

Report Problem", + "NAME": "H07022" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98625584121956, + 38.91190356797587, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US PIPE-MET 250 M94

In Service


Last Inspection Date: 09/04/07

Report Problem", + "NAME": "H07023" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0654449147393, + 38.96199673839912, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H07024" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09070276352669, + 38.95215457524894, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US Pipe, AP Smith

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H07026" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02536723633878, + 38.920701853319024, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/21/06

Report Problem", + "NAME": "H07027" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97296629082248, + 38.88466468406594, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 04/10/06

Report Problem", + "NAME": "H07029" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.10354674620037, + 38.92847582089967, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US Pipe, AP Smith

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H07030" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02532714536176, + 38.92386317053315, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H07031" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01131150078882, + 38.95341996785075, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H07032" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02638132517758, + 38.930846839677955, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, CLOW - EDDY

In Service


Last Inspection Date: 08/25/06

Report Problem", + "NAME": "H07033" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94568083769293, + 38.86474459980602, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/27/07

Report Problem", + "NAME": "H07034" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02585749499349, + 38.92701759580693, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/11/07

Report Problem", + "NAME": "H07035" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02634256011007, + 38.92871849115306, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H07036" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02593440991157, + 38.92490482237563, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 09/06/06

Report Problem", + "NAME": "H07037" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02629431183908, + 38.92995209102587, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 08/25/06

Report Problem", + "NAME": "H07038" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02583105131406, + 38.92571365701877, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H07039" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9394556869378, + 38.88026171136533, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Kennedy

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H07040" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94038029439855, + 38.89301790233104, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H07041" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93796464544897, + 38.87070997176365, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 10/19/07

Report Problem", + "NAME": "H07042" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94699250718553, + 38.86365095033626, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H07043" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9438371694588, + 38.86622229662141, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 07/27/07

Report Problem", + "NAME": "H07044" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9446985421607, + 38.865520952328055, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 07/27/07

Report Problem", + "NAME": "H07045" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96932535513365, + 38.874281829597855, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H07046" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00646140437084, + 38.91166912505933, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Eddy

In Service


Last Inspection Date: 08/22/07

Report Problem", + "NAME": "H07047" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00921710000658, + 38.92028658117106, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP SMITH - O'BRIEN

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H07048" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00888345785944, + 38.92462091589967, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 05/30/07

Report Problem", + "NAME": "H07049" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01620281476676, + 38.88331531403804, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H07050" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01707740404841, + 38.88331518943418, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H07051" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01389189398566, + 38.88331042293399, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H07052" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0145890366043, + 38.88331000462411, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H07053" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9400952582351, + 38.90848298321637, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H07054" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93896547417108, + 38.908471669554196, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H07055" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94329154399351, + 38.90566748747477, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 03/11/08

Report Problem", + "NAME": "H07056" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01454543998229, + 38.905324271557234, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 10/02/07

Report Problem", + "NAME": "H07057" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99581738136735, + 38.85674578270633, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/04/07

Report Problem", + "NAME": "H07485" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94069594656754, + 38.88989004925468, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/08/07

Report Problem", + "NAME": "H07487" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02992657477775, + 38.92767723135113, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 09/24/07

Report Problem", + "NAME": "H07488" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98138909122179, + 38.84218735323076, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 12/13/07

Report Problem", + "NAME": "H07490" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98544159228483, + 38.840577948111616, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H07491" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00211112049904, + 38.86075438844818, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/05/07

Report Problem", + "NAME": "H07492" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94154922390052, + 38.889889371324585, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/08/07

Report Problem", + "NAME": "H07493" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94244360912218, + 38.89179807752878, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H07494" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03328538857521, + 38.90317920426543, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Clow Eddy

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H07495" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98426127593997, + 38.834594487921336, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 10/01/07

Report Problem", + "NAME": "H07496" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02201151698797, + 38.910406116741186, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/11/07

Report Problem", + "NAME": "H07497" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96906246954298, + 38.86808655447621, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 08/17/07

Report Problem", + "NAME": "H07498" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98677236819651, + 38.83598957895159, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H07499" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98655811013855, + 38.832823477688024, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H07500" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9974929190682, + 38.939489281422944, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H07501" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06024466971265, + 38.94097268222592, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, U.S. Pipe

In Service


Last Inspection Date: 12/20/06

Report Problem", + "NAME": "H07502" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00764142412145, + 38.90862664849224, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/12/07

Report Problem", + "NAME": "H07503" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05578154231246, + 38.93060180305019, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant,Mueller

In Service


Last Inspection Date: 04/26/07

Report Problem", + "NAME": "H07504" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0512340218352, + 38.92360021725625, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 01/02/07

Report Problem", + "NAME": "H07505" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96141025255085, + 38.9301589680097, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/27/07

Report Problem", + "NAME": "H07506" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06939661267404, + 38.96033231024709, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/15/07

Report Problem", + "NAME": "H07507" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98506395686054, + 38.83407229197827, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H07508" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01775120651455, + 38.883171558367586, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 06/27/07

Report Problem", + "NAME": "H07509" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02100290703396, + 38.88331271178691, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H07510" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0018864033965, + 38.914133618281895, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/27/07

Report Problem", + "NAME": "H07511" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03435582600682, + 38.9001568610635, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/01/07

Report Problem", + "NAME": "H07512" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0348872092274, + 38.91913530127127, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/13/07

Report Problem", + "NAME": "H07513" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98720333301587, + 38.92209673691571, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/31/07

Report Problem", + "NAME": "H07514" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99228694092861, + 38.92260873858445, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/31/07

Report Problem", + "NAME": "H07515" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98664190965306, + 38.92449436463466, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/31/07

Report Problem", + "NAME": "H07516" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98696476401386, + 38.923988511934226, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/31/07

Report Problem", + "NAME": "H07517" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99333623171619, + 38.92227675639505, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/21/07

Report Problem", + "NAME": "H07518" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98995621718983, + 38.92333794722294, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/31/07

Report Problem", + "NAME": "H07519" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98781983232017, + 38.92398945096424, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 09/05/07

Report Problem", + "NAME": "H07520" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00282861899113, + 38.85750789108447, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H07521" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98129632993214, + 38.863423707163925, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H07958" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03205331587833, + 38.92175468003542, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Muller

In Service


Last Inspection Date: 03/06/08

Report Problem", + "NAME": "H07959" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9286733672165, + 38.900756977111904, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H07960" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99330891008296, + 38.912966087654, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP SMITH - O'BRIEN

In Service


Last Inspection Date: 09/05/07

Report Problem", + "NAME": "H07961" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98244921588199, + 38.87888355057267, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 05/19/06

Report Problem", + "NAME": "H07962" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97718372278936, + 38.89122516062354, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 12/28/06

Report Problem", + "NAME": "H07963" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9771489637263, + 38.89019973066068, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 05/01/06

Report Problem", + "NAME": "H07964" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99618090254062, + 38.85580872063352, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/02/07

Report Problem", + "NAME": "H07965" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06281180289439, + 38.94974584155491, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H07966" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93554165325334, + 38.888098633072644, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/08/07

Report Problem", + "NAME": "H07967" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03889178521771, + 38.9341308732306, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 09/12/07

Report Problem", + "NAME": "H07968" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04141890811663, + 38.93422023217442, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 05/12/07

Report Problem", + "NAME": "H07969" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04275001885617, + 38.934225752419614, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 05/12/07

Report Problem", + "NAME": "H07970" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04122222301686, + 38.93246390762373, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 09/14/07

Report Problem", + "NAME": "H07971" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03984996827357, + 38.9342283896436, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/18/07

Report Problem", + "NAME": "H07972" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04408508851533, + 38.93423553495599, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 05/12/07

Report Problem", + "NAME": "H07973" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9757629410183, + 38.89747700604972, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 05/29/07

Report Problem", + "NAME": "H07974" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96016551203775, + 38.89669328903745, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/01/07

Report Problem", + "NAME": "H07975" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9834941857576, + 38.86565281928153, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 07/17/07

Report Problem", + "NAME": "H07976" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02157026279619, + 38.87698943913902, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H07977" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02353961419217, + 38.8947452809032, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H07978" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05802459227196, + 38.950872944786894, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/06/07

Report Problem", + "NAME": "H07979" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01373422884703, + 38.89728068214012, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/27/07

Report Problem", + "NAME": "H07980" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02642291209831, + 38.8972605746037, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H07981" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02756100451121, + 38.89727015778023, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H07982" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02738555592565, + 38.88457779731689, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H07983" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02055137040394, + 38.874741748613815, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/05/07

Report Problem", + "NAME": "H07984" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02083446333175, + 38.875383907150834, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/05/07

Report Problem", + "NAME": "H07985" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05717764283798, + 38.95292591505484, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 08/01/07

Report Problem", + "NAME": "H07986" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05948560223611, + 38.9517057641324, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/18/07

Report Problem", + "NAME": "H07987" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0479143837426, + 38.9096993903211, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/11/07

Report Problem", + "NAME": "H07988" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05804298470514, + 38.95089125848744, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 09/27/07

Report Problem", + "NAME": "H07989" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.91837844798148, + 38.89986321168602, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 12/29/06

Report Problem", + "NAME": "H07990" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92242589383024, + 38.90313217528559, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 09/13/06

Report Problem", + "NAME": "H07991" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9612665794444, + 38.883694195910586, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 04/03/07

Report Problem", + "NAME": "H06596" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97586111681542, + 38.88775236418858, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 04/06/06

Report Problem", + "NAME": "H06597" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9893342766315, + 38.95347553749706, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H06598" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98815288504281, + 38.95324291133274, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H06599" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97338060761466, + 38.88747089893495, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 10/02/07

Report Problem", + "NAME": "H06600" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99357837235254, + 38.89363530305947, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 06/02/07

Report Problem", + "NAME": "H06601" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94218058558862, + 38.903465076305174, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 11/30/07

Report Problem", + "NAME": "H06602" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94811367961901, + 38.89917922604904, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/01/07

Report Problem", + "NAME": "H06603" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9409561189485, + 38.90440921501846, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/29/07

Report Problem", + "NAME": "H06604" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9359593191026, + 38.90951795636217, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/29/07

Report Problem", + "NAME": "H06605" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06358202075745, + 38.95040631739217, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H06606" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0056835614632, + 38.89357375108473, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/27/07

Report Problem", + "NAME": "H06607" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98849233603455, + 38.8874758336278, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 05/09/06

Report Problem", + "NAME": "H06608" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99043359955685, + 38.88753912145234, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 11/03/06

Report Problem", + "NAME": "H06609" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00598179594421, + 38.909018184825754, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 02/27/08

Report Problem", + "NAME": "H06610" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.10249631814436, + 38.940432418633776, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H06611" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99632546556836, + 38.88765017738371, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 10/23/06

Report Problem", + "NAME": "H06612" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99609997925823, + 38.88721584911839, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 12/06/06

Report Problem", + "NAME": "H06613" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05636385401819, + 38.97971610729608, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H06614" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97522797171716, + 38.89305993864624, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 03/06/07

Report Problem", + "NAME": "H06615" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98689771275237, + 38.95288069903672, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H06616" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93650321414749, + 38.89753484403575, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 09/27/07

Report Problem", + "NAME": "H06617" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9828546656321, + 38.92456023465083, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 07/30/07

Report Problem", + "NAME": "H06619" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98813257996659, + 38.92455656580424, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/31/07

Report Problem", + "NAME": "H06620" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04242749508843, + 38.99052153337876, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H06621" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03810444606532, + 38.9929801250602, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H06622" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03943474533014, + 38.99385340717039, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H06623" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9603153245525, + 38.89342086144566, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/01/07

Report Problem", + "NAME": "H06624" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94151022866663, + 38.904695508944975, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 11/20/07

Report Problem", + "NAME": "H06625" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97597306191932, + 38.89674650721517, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 05/28/07

Report Problem", + "NAME": "H06626" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94047460283964, + 38.905666095238765, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, lorton

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H06627" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97606572154815, + 38.89616169420622, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 05/29/07

Report Problem", + "NAME": "H06628" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93741785376862, + 38.90798022923433, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/04/07

Report Problem", + "NAME": "H06629" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93883813344227, + 38.90641062797429, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 05/29/07

Report Problem", + "NAME": "H06630" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9806156663805, + 38.89344552424362, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/02/07

Report Problem", + "NAME": "H06631" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01373256841333, + 38.905901688022574, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/12/07

Report Problem", + "NAME": "H07058" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00948251712136, + 38.90708367221532, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/12/07

Report Problem", + "NAME": "H07059" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01962950723264, + 38.90355290046491, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 11/02/07

Report Problem", + "NAME": "H07060" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02086622622208, + 38.903136680373294, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H07061" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01087744909373, + 38.90683976678106, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Kennedy

In Service


Last Inspection Date: 11/28/07

Report Problem", + "NAME": "H07062" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01908953226771, + 38.903975878045486, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 02/05/08

Report Problem", + "NAME": "H07063" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94196476012863, + 38.90629370904827, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H07064" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94328491439262, + 38.906421933602644, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H07065" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99310321539645, + 38.858177092598496, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/04/07

Report Problem", + "NAME": "H07066" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99322601508506, + 38.8558261980563, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/05/07

Report Problem", + "NAME": "H07067" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9453762914611, + 38.884851665558834, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 08/02/07

Report Problem", + "NAME": "H07068" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04998793006257, + 38.895254271688295, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, KENNEDY-K81-A/D GUAR

In Service


Last Inspection Date: 05/21/07

Report Problem", + "NAME": "H07069" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.10234467986926, + 38.94303398477356, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US Pipe, AP Smith

In Service


Last Inspection Date: 01/14/08

Report Problem", + "NAME": "H07070" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.10089793139336, + 38.94311738009003, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 08/16/07

Report Problem", + "NAME": "H07071" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93153132072348, + 38.892466810048845, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/08/07

Report Problem", + "NAME": "H07072" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03092325085856, + 38.894594534238394, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Clow Eddy

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H07073" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00870329748531, + 38.91173151546771, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 08/22/07

Report Problem", + "NAME": "H07074" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97101290282923, + 38.85958114690573, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 08/20/07

Report Problem", + "NAME": "H07075" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93729477420432, + 38.87131411407198, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 08/16/07

Report Problem", + "NAME": "H07076" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95157349962516, + 38.886059793121355, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/02/07

Report Problem", + "NAME": "H07077" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04891940633051, + 38.89266493493581, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/17/07

Report Problem", + "NAME": "H07078" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99838288135655, + 38.83929133904618, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H07079" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98545468967123, + 38.87783297237987, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H07081" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.10933279625895, + 38.93692742724404, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H07082" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01408142276355, + 38.87561936020418, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/05/07

Report Problem", + "NAME": "H07083" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98399450997972, + 38.86128793317125, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/05/07

Report Problem", + "NAME": "H07084" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06906958177271, + 38.909803430877055, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/02/07

Report Problem", + "NAME": "H07085" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01531163990133, + 38.88019853217063, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 11/20/07

Report Problem", + "NAME": "H07086" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09499629650102, + 38.944312932788314, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 01/04/08

Report Problem", + "NAME": "H07087" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93706903318301, + 38.87947513411545, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H07088" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9909764186452, + 38.835915605869246, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H07089" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93808035237032, + 38.87947572872575, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H07090" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92799687155481, + 38.88221134508788, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H07091" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00351691919143, + 38.91886124302476, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H07092" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01558136032891, + 38.91466741949089, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/12/07

Report Problem", + "NAME": "H07093" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00064424622538, + 38.8807347765613, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 11/01/06

Report Problem", + "NAME": "H07522" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0122761433547, + 38.880346583236744, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H07523" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04359161413787, + 38.89340544277975, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP SMITH - O'BRIEN

In Service


Last Inspection Date: 05/24/07

Report Problem", + "NAME": "H07524" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01427581143115, + 38.81454512252718, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H07525" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00689339114835, + 38.96285577058463, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H07526" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01148735152242, + 38.88022469889475, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, CLOW - EDDY

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H07527" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00217398221044, + 38.87659192462013, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H07528" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99484397325296, + 38.8769029359662, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 11/07/06

Report Problem", + "NAME": "H07529" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0073842868926, + 38.876622258870654, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 03/04/08

Report Problem", + "NAME": "H07530" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9993562867439, + 38.8765900873512, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 11/01/06

Report Problem", + "NAME": "H07531" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00359297410337, + 38.876644931016926, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H07532" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00438971164047, + 38.876592556001036, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H07533" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00283423842367, + 38.876583064218515, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H07534" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99274567324093, + 38.87662921248858, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 11/06/06

Report Problem", + "NAME": "H07535" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99361662298084, + 38.8765908425349, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 11/06/06

Report Problem", + "NAME": "H07536" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00923626379951, + 38.886085105481726, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H07537" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95485780336782, + 38.87535109662965, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H07538" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02469773523207, + 38.91782975466534, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 03/02/07

Report Problem", + "NAME": "H07539" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95553235800632, + 38.872360917699716, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H07540" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04611918328935, + 38.91605742338394, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 08/22/07

Report Problem", + "NAME": "H07541" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0448835911217, + 38.915784420524105, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 08/17/07

Report Problem", + "NAME": "H07542" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99487654096747, + 38.88332906340564, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 11/13/06

Report Problem", + "NAME": "H07543" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06056332229282, + 38.943284729415765, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 12/19/06

Report Problem", + "NAME": "H07544" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04585122443714, + 38.897412688431686, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/29/07

Report Problem", + "NAME": "H07545" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01870812053822, + 38.87921542023988, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H07546" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01767210440804, + 38.87943758439848, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H07547" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01999063127565, + 38.879476640284096, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H07548" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01080807557877, + 38.8792085722202, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Kennedy

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H07549" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01961861923418, + 38.876582423659926, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H07550" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01534029043992, + 38.876335981725674, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H07551" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0153042530359, + 38.87912690397354, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H07552" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00995451579122, + 38.8762630835017, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP SMITH - O'BRIEN

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H07554" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01622942681595, + 38.87936154676377, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H07555" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01384686488369, + 38.876248255409244, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H07556" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01126102000066, + 38.87633136558022, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP SMITH - O'BRIEN

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H07557" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08878642722624, + 38.94401500064822, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 11/18/05

Report Problem", + "NAME": "H07992" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.91748805934091, + 38.89912437788262, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 09/14/06

Report Problem", + "NAME": "H07993" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92641360645341, + 38.90600093403838, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/28/07

Report Problem", + "NAME": "H07994" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.91917924042815, + 38.900474355191186, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/08/07

Report Problem", + "NAME": "H07995" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92868048849542, + 38.90788612992194, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP SMITH - O'BRIEN

In Service


Last Inspection Date: 08/23/07

Report Problem", + "NAME": "H07996" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01318569746388, + 38.87292325991333, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US PIPE-MET 250 M94

In Service


Last Inspection Date: 07/05/07

Report Problem", + "NAME": "H07997" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05805070129023, + 38.94882143198823, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 07/11/07

Report Problem", + "NAME": "H07998" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92091372831496, + 38.901814436785116, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H07999" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01209855826444, + 38.87547564628886, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 11/17/07

Report Problem", + "NAME": "H08000" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92529264376194, + 38.90520203757137, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP SMITH - O'BRIEN

In Service


Last Inspection Date: 05/28/07

Report Problem", + "NAME": "H08002" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92732558473102, + 38.90682878678369, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 12/14/07

Report Problem", + "NAME": "H08003" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00123309581588, + 38.904666101559286, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/30/07

Report Problem", + "NAME": "H08004" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00374803505183, + 38.95365565184983, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/05/07

Report Problem", + "NAME": "H08006" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9678374738352, + 38.91902988378352, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 09/05/07

Report Problem", + "NAME": "H08007" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01768407170381, + 38.95204638036826, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 08/06/07

Report Problem", + "NAME": "H08008" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0122856540688, + 38.9678472395543, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H08009" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99137576391018, + 38.87845629192337, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 03/10/08

Report Problem", + "NAME": "H08010" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09013119401561, + 38.919209066330524, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US Pipe, AP Smith

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H08011" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07302869177259, + 38.92117904722717, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H08012" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92363582624476, + 38.898915411420504, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H08013" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.91864752837658, + 38.88581113845447, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/08/07

Report Problem", + "NAME": "H08014" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01999929640256, + 38.88473430286074, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H08015" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02168144139392, + 38.88477146858051, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H08016" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05519164557496, + 38.93557896454594, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 12/28/06

Report Problem", + "NAME": "H08017" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05277851006446, + 38.93975067751088, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, U.S. Pipe

In Service


Last Inspection Date: 12/20/06

Report Problem", + "NAME": "H08018" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02689915226902, + 38.89498288997653, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H08019" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02717595467065, + 38.89627192306822, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H08020" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0268979164257, + 38.89671917164068, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H08021" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02717398004032, + 38.89792741751862, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 10/31/07

Report Problem", + "NAME": "H08022" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00064727977103, + 38.83907849676125, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H08023" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93706715383539, + 38.90589805818562, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H08024" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93492345314412, + 38.90600499302884, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H08025" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99671624772927, + 38.91148551447028, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP SMITH - O'BRIEN

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H08026" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03900244302665, + 38.93061589459772, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 09/20/07

Report Problem", + "NAME": "H08027" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01491852520418, + 38.97491360650356, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H06561" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00344260351017, + 38.92227122043882, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 12/28/07

Report Problem", + "NAME": "H06562" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95584083351743, + 38.873967638179536, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H06563" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02500979369948, + 38.907287662368866, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 09/11/07

Report Problem", + "NAME": "H06564" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99166774099328, + 38.953675197168735, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H06565" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99369467023858, + 38.95336507029002, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "null

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H06566" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01043193031353, + 38.9700369446018, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H06567" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04612016548695, + 38.91511561067109, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 08/29/07

Report Problem", + "NAME": "H06568" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95179666950737, + 38.8913246156313, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/30/07

Report Problem", + "NAME": "H06569" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98459677096885, + 38.85788192097813, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H06570" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9864348592707, + 38.85909315133343, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 09/17/07

Report Problem", + "NAME": "H06571" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00718033428346, + 38.967393856222486, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H06572" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98532798835325, + 38.89352560192876, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/02/07

Report Problem", + "NAME": "H06573" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08749680169771, + 38.91920223137802, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H06574" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08592632972002, + 38.91928763363257, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H06575" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09216532999889, + 38.919094983644875, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H06576" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08703413110254, + 38.919778470457295, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H06577" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93285831224202, + 38.901426355074165, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 05/28/07

Report Problem", + "NAME": "H06578" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03567482798069, + 38.90571386368658, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/04/07

Report Problem", + "NAME": "H06579" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93383976683819, + 38.901557617279686, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 06/02/07

Report Problem", + "NAME": "H06580" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00121670836077, + 38.95575070399314, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H06581" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0026173590169, + 38.95603202712855, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H06582" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06687123167069, + 38.95739354845349, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 10/02/07

Report Problem", + "NAME": "H06583" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06125153783827, + 38.92744542529373, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 01/19/07

Report Problem", + "NAME": "H06584" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05952402780379, + 38.92582610915013, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 12/11/07

Report Problem", + "NAME": "H06585" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98460092005485, + 38.84292248698842, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H06586" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05991700085701, + 38.92727618424961, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 01/19/07

Report Problem", + "NAME": "H06587" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92995856087197, + 38.89193418536432, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H06588" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99324700956572, + 38.834238555708986, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/18/07

Report Problem", + "NAME": "H06589" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9502192445542, + 38.88997921987883, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/30/07

Report Problem", + "NAME": "H06590" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09119421828863, + 38.94041813575338, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 01/24/08

Report Problem", + "NAME": "H06591" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9243012568637, + 38.883110162498085, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/08/07

Report Problem", + "NAME": "H06592" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09791486051004, + 38.91590115870607, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H06593" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00065244676593, + 38.88771589542851, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, KENNEDY-K81-A/D GUAR

In Service


Last Inspection Date: 01/31/08

Report Problem", + "NAME": "H06594" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0046406079933, + 38.89358002195662, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/27/07

Report Problem", + "NAME": "H06595" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02301795273003, + 38.912134857543776, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/11/07

Report Problem", + "NAME": "H07094" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01032131941619, + 38.916224624481316, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 06/01/07

Report Problem", + "NAME": "H07095" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00504139007937, + 38.91796925459802, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/01/07

Report Problem", + "NAME": "H07096" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00337813100796, + 38.918656704030155, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 06/01/07

Report Problem", + "NAME": "H07097" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00224194976178, + 38.91903234257876, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H07098" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0018242978553, + 38.91944954348136, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 07/02/07

Report Problem", + "NAME": "H07099" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00616187620341, + 38.91767737605771, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 06/01/07

Report Problem", + "NAME": "H07100" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01333431209173, + 38.91518744237037, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/12/07

Report Problem", + "NAME": "H07101" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00698698429436, + 38.91771597536882, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H07102" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02738555977575, + 38.91029261969574, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 05/18/07

Report Problem", + "NAME": "H07103" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0231449567532, + 38.91174207787035, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/17/07

Report Problem", + "NAME": "H07104" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05902787350435, + 38.90085007566496, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/30/07

Report Problem", + "NAME": "H07105" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02620148126415, + 38.91070936487943, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 05/18/07

Report Problem", + "NAME": "H07106" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04671266854976, + 38.90385056699683, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 12/17/07

Report Problem", + "NAME": "H07107" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04498156447787, + 38.90391395347246, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 03/06/08

Report Problem", + "NAME": "H07108" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04181806676706, + 38.897425822597334, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/24/07

Report Problem", + "NAME": "H07109" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04361461555273, + 38.89729744508892, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, KENNEDY-K81-A/D GUAR

In Service


Last Inspection Date: 07/02/07

Report Problem", + "NAME": "H07110" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04508950778649, + 38.897291687300175, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AM DARLING - B-84-B

In Service


Last Inspection Date: 05/22/07

Report Problem", + "NAME": "H07111" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95946352246295, + 38.86498689414682, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H07112" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96730648682933, + 38.92734499314091, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 07/27/07

Report Problem", + "NAME": "H07113" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02527102941058, + 38.979343253396436, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H07114" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00086278833724, + 38.83527636908451, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H07115" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00049058237661, + 38.840510273641996, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H07116" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94470346601513, + 38.88113165978272, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H07117" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93894171745632, + 38.88907043708943, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H07118" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02254306169178, + 38.93895171758112, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, CLOW - EDDY

In Service


Last Inspection Date: 05/29/07

Report Problem", + "NAME": "H07119" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00919378704138, + 38.912443722210924, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/12/07

Report Problem", + "NAME": "H07120" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00916967518945, + 38.913233791343764, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/12/07

Report Problem", + "NAME": "H07121" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0028783514896, + 38.94652178093002, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AM DARLING - B-62-B

In Service


Last Inspection Date: 07/27/07

Report Problem", + "NAME": "H07122" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01759336468929, + 38.87639200254709, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H07123" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00470654071628, + 38.945783691167875, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H07124" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05528808199452, + 38.97288418536045, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H07125" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05434479963125, + 38.97287902438951, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H07126" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99330682114955, + 38.8569601473773, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/04/07

Report Problem", + "NAME": "H07127" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9613489145072, + 38.88446667414974, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 04/05/07

Report Problem", + "NAME": "H07558" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96642625185427, + 38.85571694332729, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/06/07

Report Problem", + "NAME": "H07559" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02506112475884, + 38.917204057777056, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/21/06

Report Problem", + "NAME": "H07560" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02546920080194, + 38.92012791073526, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/21/06

Report Problem", + "NAME": "H07561" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02408996017506, + 38.91808311468866, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 03/02/07

Report Problem", + "NAME": "H07562" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98343414891414, + 38.835238748441846, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 10/12/07

Report Problem", + "NAME": "H07563" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97180833578197, + 38.86010562279842, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/29/07

Report Problem", + "NAME": "H07564" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97512507622825, + 38.85654261710817, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/06/07

Report Problem", + "NAME": "H07565" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95857104014284, + 38.87293396071503, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H07566" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0073771987624, + 38.88598009187593, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 10/30/06

Report Problem", + "NAME": "H07567" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01418540078254, + 38.87292582725981, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/05/07

Report Problem", + "NAME": "H07568" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05780509312685, + 38.94109063453305, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 12/20/06

Report Problem", + "NAME": "H07569" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.91769226838073, + 38.89702529358061, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Kennedy

In Service


Last Inspection Date: 03/12/08

Report Problem", + "NAME": "H07570" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.91769668604739, + 38.89590399812653, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 08/27/07

Report Problem", + "NAME": "H07571" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.91769615567357, + 38.89801235200351, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 03/12/08

Report Problem", + "NAME": "H07572" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94266104686866, + 38.86937337156766, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 07/27/07

Report Problem", + "NAME": "H07573" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01015689619669, + 38.870198727819705, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 10/31/07

Report Problem", + "NAME": "H07574" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96871102885841, + 38.880701264817496, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, SUP CENT 250

In Service


Last Inspection Date: 09/07/07

Report Problem", + "NAME": "H07575" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01161961828427, + 38.878349949483336, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H07576" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01343896715305, + 38.877692015466565, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H07577" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00867559132615, + 38.87922381212902, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H07578" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03508706809166, + 38.90010108918067, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H07579" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03504792919787, + 38.898973560557216, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H07580" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0614335473731, + 38.94306875201849, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 12/22/06

Report Problem", + "NAME": "H07581" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.046572469912, + 38.90613345635938, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/11/07

Report Problem", + "NAME": "H07582" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01774156611317, + 38.88398536830302, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H07583" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99826988931275, + 38.8790798071112, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 11/06/06

Report Problem", + "NAME": "H07584" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00077573692529, + 38.87977207617051, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, CLOW - EDDY

In Service


Last Inspection Date: 11/01/06

Report Problem", + "NAME": "H07585" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0019719352658, + 38.88114426502534, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 11/01/06

Report Problem", + "NAME": "H07586" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99944621624009, + 38.87897787965274, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 04/11/07

Report Problem", + "NAME": "H07587" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.10280517669854, + 38.9279407959665, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H07588" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98880241043584, + 38.86788367020796, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/05/07

Report Problem", + "NAME": "H07589" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02071616384112, + 38.89410896918894, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H07590" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99010701528914, + 38.8747485519491, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 10/18/06

Report Problem", + "NAME": "H07591" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96362948185926, + 38.92029800417654, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 09/15/07

Report Problem", + "NAME": "H07592" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02497076695869, + 38.91107545410497, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP SMITH - O'BRIEN

In Service


Last Inspection Date: 05/23/07

Report Problem", + "NAME": "H08028" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02486678288673, + 38.90970039793379, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP SMITH - O'BRIEN

In Service


Last Inspection Date: 05/19/07

Report Problem", + "NAME": "H08029" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04827491715417, + 38.92109239790387, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 10/30/06

Report Problem", + "NAME": "H08030" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01358275659491, + 38.89953358286828, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/27/07

Report Problem", + "NAME": "H08031" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95222153156632, + 38.888628295060684, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/02/07

Report Problem", + "NAME": "H08032" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98084305571352, + 38.8829522433112, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 09/21/07

Report Problem", + "NAME": "H08033" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07724526905416, + 38.96104291448911, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Kennedy

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H08034" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00927733798935, + 38.95492659946666, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H08035" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06858634131976, + 38.941464775594355, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 10/12/06

Report Problem", + "NAME": "H08036" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04866314323063, + 38.90394445765287, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 09/18/07

Report Problem", + "NAME": "H08037" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03288520547382, + 38.8983308662706, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, CLOW - EDDY

In Service


Last Inspection Date: 06/01/07

Report Problem", + "NAME": "H08038" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03352449764643, + 38.89830554222256, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H08039" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03386925079425, + 38.898230970651376, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H08040" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98164580705942, + 38.942614707856166, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H08041" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96119611565318, + 38.92795932874704, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/27/07

Report Problem", + "NAME": "H08042" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02619983353765, + 38.884283549218985, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H08043" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00798478678746, + 38.83540010956732, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/18/07

Report Problem", + "NAME": "H08044" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07000926265907, + 38.96406369591698, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H08045" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0392754850297, + 38.898968900674156, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 05/24/07

Report Problem", + "NAME": "H08046" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98083713495747, + 38.905770275462906, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 06/01/07

Report Problem", + "NAME": "H08047" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95536103646518, + 38.902681570863045, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/28/07

Report Problem", + "NAME": "H08049" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9551937740285, + 38.90175366418639, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H08050" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95474629179459, + 38.90633995051261, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 05/28/07

Report Problem", + "NAME": "H08052" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.954824609946, + 38.90426446576569, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/28/07

Report Problem", + "NAME": "H08053" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97250305723863, + 38.85494587078137, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/06/07

Report Problem", + "NAME": "H08055" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9734551472341, + 38.85419851762248, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/06/07

Report Problem", + "NAME": "H08056" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92649802766421, + 38.896430452092666, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H08057" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02525545528835, + 38.92986772309871, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H08058" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03824380764105, + 38.911075782210325, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/13/07

Report Problem", + "NAME": "H08059" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03744850554799, + 38.911078859425935, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/10/07

Report Problem", + "NAME": "H08061" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94123545574868, + 38.90059929859189, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, CLOW - EDDY

In Service


Last Inspection Date: 05/08/07

Report Problem", + "NAME": "H08062" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9424387281317, + 38.900576457907114, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, KENNEDY-K81-A/D GUAR

In Service


Last Inspection Date: 05/08/07

Report Problem", + "NAME": "H08063" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07359707689794, + 38.961049888945915, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Eddy

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H08064" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97058466083409, + 38.89800548161571, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, SUP CENT 250

In Service


Last Inspection Date: 09/07/07

Report Problem", + "NAME": "H08065" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99344666688556, + 38.9499362382747, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H08066" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09820919198437, + 38.931641220192134, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H06632" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92585924081189, + 38.88541171461339, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/08/07

Report Problem", + "NAME": "H06633" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97427168948785, + 38.85082620459908, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/06/07

Report Problem", + "NAME": "H06634" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9725631524919, + 38.85610922429121, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/06/07

Report Problem", + "NAME": "H06635" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94411832876546, + 38.90047573117055, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 10/01/06

Report Problem", + "NAME": "H06636" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0332593761117, + 38.90378941050947, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 08/01/07

Report Problem", + "NAME": "H06637" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96690054191585, + 38.85980920974811, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/06/07

Report Problem", + "NAME": "H06638" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99044017445156, + 38.89206120904355, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 04/13/06

Report Problem", + "NAME": "H06639" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98811365200389, + 38.892061662091, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US Pipe

In Service


Last Inspection Date: 04/13/06

Report Problem", + "NAME": "H06640" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0998159947323, + 38.94224751335224, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 01/08/08

Report Problem", + "NAME": "H06641" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.1009400873196, + 38.9420709494172, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 01/09/08

Report Problem", + "NAME": "H06642" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.10073907055914, + 38.94075931692487, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H06643" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94682562434733, + 38.900341590154255, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 06/01/07

Report Problem", + "NAME": "H06644" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98207306702139, + 38.887657399416554, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 04/12/06

Report Problem", + "NAME": "H06645" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9788557932541, + 38.88765900531611, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 04/12/06

Report Problem", + "NAME": "H06646" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98708911737081, + 38.88753820509799, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H06647" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98059526918205, + 38.88766049635629, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 04/12/06

Report Problem", + "NAME": "H06648" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98347934558751, + 38.88770010831467, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 04/12/06

Report Problem", + "NAME": "H06649" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98534867500489, + 38.8879911391867, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H06650" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03214896432846, + 38.9036541816669, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 05/30/07

Report Problem", + "NAME": "H06651" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02893315387732, + 38.90380989392949, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, American Darling

In Service


Last Inspection Date: 05/29/07

Report Problem", + "NAME": "H06652" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02976146839815, + 38.90340540898938, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 05/09/07

Report Problem", + "NAME": "H06653" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93764917306679, + 38.88948522066144, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H06654" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0305117647332, + 38.90379603384022, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Kennedy

In Service


Last Inspection Date: 05/29/07

Report Problem", + "NAME": "H06655" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97290886150944, + 38.8631946268882, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/05/07

Report Problem", + "NAME": "H06656" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97170238850582, + 38.86395378622063, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/05/07

Report Problem", + "NAME": "H06657" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93492963482089, + 38.88714683758573, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/08/07

Report Problem", + "NAME": "H06658" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95720583480187, + 38.918537114523915, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, U.S. Pipe

In Service


Last Inspection Date: 07/30/07

Report Problem", + "NAME": "H06659" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95934829814477, + 38.918491864945544, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 08/01/07

Report Problem", + "NAME": "H06660" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98537348571622, + 38.89206517066875, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER

In Service


Last Inspection Date: 12/27/07

Report Problem", + "NAME": "H06661" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00753802672362, + 38.95575475525598, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H06662" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9956397540779, + 38.89209414717504, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 10/19/06

Report Problem", + "NAME": "H06663" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98691214500934, + 38.88872879563235, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 04/12/06

Report Problem", + "NAME": "H06664" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00266920873362, + 38.965617241930524, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H06665" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04271065725995, + 38.99143433946698, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H06666" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94706931146355, + 38.89755654960666, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 09/07/07

Report Problem", + "NAME": "H07128" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02338641580138, + 38.92913561933068, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 08/05/06

Report Problem", + "NAME": "H07129" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03634185868984, + 38.92952303531884, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 09/12/07

Report Problem", + "NAME": "H07130" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95744290126926, + 38.89548949588824, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 10/16/07

Report Problem", + "NAME": "H07131" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98378858812869, + 38.86058538316426, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/05/07

Report Problem", + "NAME": "H07133" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02799274007583, + 38.89926321820379, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H07134" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06230158840661, + 38.922606177634776, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, U.S. Pipe

In Service


Last Inspection Date: 01/10/07

Report Problem", + "NAME": "H07135" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.1086710335078, + 38.93741853746335, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 07/16/07

Report Problem", + "NAME": "H07136" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9821590809367, + 38.89763813749226, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H07137" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0105660754126, + 38.877640449398264, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H07138" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05395292919954, + 38.968327450628394, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H07139" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9908981704769, + 38.91774198095922, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, KENNEDY-K81-A/D GUAR

In Service


Last Inspection Date: 07/31/07

Report Problem", + "NAME": "H07140" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96327169912612, + 38.87828526981169, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US PIPE-A P SMITH

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H07141" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99597249402497, + 38.90978730178437, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H07142" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02882732476392, + 38.89746160417395, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US Pipe

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H07143" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9823782253395, + 38.92624222371151, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 08/07/07

Report Problem", + "NAME": "H07144" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05638708627936, + 38.96971155368072, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 08/24/07

Report Problem", + "NAME": "H07145" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05831805738657, + 38.96971400275113, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H07146" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95073291147202, + 38.89527545031412, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 09/19/07

Report Problem", + "NAME": "H07147" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9498398849183, + 38.89515566435593, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/02/07

Report Problem", + "NAME": "H07148" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0333905257536, + 38.93784614656226, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 05/11/07

Report Problem", + "NAME": "H07149" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02344620965623, + 38.98061124328168, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H07150" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03240518879792, + 38.92874628945823, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, KENNEDY-K81-A/D GUAR

In Service


Last Inspection Date: 09/18/07

Report Problem", + "NAME": "H07151" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05467317078839, + 38.90138902988212, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/25/07

Report Problem", + "NAME": "H07152" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97267792893813, + 38.91942871632992, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 07/30/07

Report Problem", + "NAME": "H07153" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9614169665006, + 38.86892063725262, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H07154" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9402415941209, + 38.90352574477204, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H07155" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9757437988873, + 38.9187857659611, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 07/31/07

Report Problem", + "NAME": "H07156" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07826058967379, + 38.92695993121221, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 07/20/07

Report Problem", + "NAME": "H07157" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97389587223684, + 38.88999451381324, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 04/14/06

Report Problem", + "NAME": "H07158" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97518032980332, + 38.88931737298493, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 04/26/06

Report Problem", + "NAME": "H07159" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03510638698909, + 38.90782642144883, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 01/04/08

Report Problem", + "NAME": "H07160" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9974140417839, + 38.88267151699444, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/12/07

Report Problem", + "NAME": "H07161" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99187516363632, + 38.83514128692742, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/23/07

Report Problem", + "NAME": "H07162" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01530654822344, + 38.87671737460202, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H07593" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04478054194414, + 38.94333234222084, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP SMITH - O'BRIEN

In Service


Last Inspection Date: 07/20/07

Report Problem", + "NAME": "H07594" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08091640501084, + 38.93419123810554, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H07595" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93891851512589, + 38.87580859089552, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/08/07

Report Problem", + "NAME": "H07597" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02800513525747, + 38.885174563874195, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H07598" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02285517021659, + 38.89518831317675, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H07599" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93839238188482, + 38.870393111297375, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US PIPE-MET 250 M94

In Service


Last Inspection Date: 07/27/07

Report Problem", + "NAME": "H07600" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02304737963892, + 38.894335966770136, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H07601" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92621410380156, + 38.88095949844807, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 01/22/08

Report Problem", + "NAME": "H07602" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92927041832074, + 38.88058494667498, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 01/18/08

Report Problem", + "NAME": "H07603" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92771985214326, + 38.88847710905287, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/08/07

Report Problem", + "NAME": "H07604" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9388785602111, + 38.87872847954836, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H07605" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93892747115012, + 38.87751675888302, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/08/07

Report Problem", + "NAME": "H07606" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06499242149373, + 38.923937727632065, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H07607" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97964319006199, + 38.84582105940526, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 11/29/07

Report Problem", + "NAME": "H07608" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96081324553018, + 38.87200348200796, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, SUP CENT 250

In Service


Last Inspection Date: 09/05/07

Report Problem", + "NAME": "H07609" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.987837512811, + 38.86468084022014, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 08/02/07

Report Problem", + "NAME": "H07610" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02042258229375, + 38.894370686948115, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H07611" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03165828973412, + 38.91339968756192, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/13/07

Report Problem", + "NAME": "H07612" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04897052266529, + 38.89962534458021, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/13/07

Report Problem", + "NAME": "H07613" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01072739818773, + 38.87665515053187, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H07614" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0139860492789, + 38.87668408302811, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H07615" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01954994639182, + 38.87633410973487, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H07616" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01782363110506, + 38.87633704344056, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H07617" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03183929255972, + 38.892347817003085, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H07618" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93785580982951, + 38.892712653120334, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H07619" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05491383122406, + 38.94055577394254, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 12/20/06

Report Problem", + "NAME": "H07620" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93681738612061, + 38.89318208084086, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H07621" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06421128315144, + 38.94957473474059, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 10/24/07

Report Problem", + "NAME": "H07623" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98518276662838, + 38.86934057516383, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H07624" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07443286907956, + 38.94785579430204, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H07625" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00717926943237, + 38.90367416704998, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H07626" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94059498805436, + 38.89745915516139, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/02/07

Report Problem", + "NAME": "H07627" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00688885907205, + 38.91560935591307, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 10/10/07

Report Problem", + "NAME": "H07628" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98077160350076, + 38.91911350555358, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/30/07

Report Problem", + "NAME": "H07629" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05430585808163, + 38.91472255461596, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/11/07

Report Problem", + "NAME": "H08067" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0973401834681, + 38.932657733251496, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H08068" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02567644903262, + 38.94073572209535, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/17/07

Report Problem", + "NAME": "H08069" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0226263006244, + 38.87871035600972, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H08070" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05422237529272, + 38.985183225136325, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/13/07

Report Problem", + "NAME": "H08071" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.976030747485, + 38.944535347896895, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H08072" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99807352173826, + 38.95065653649802, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 01/03/08

Report Problem", + "NAME": "H08073" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99830472107227, + 38.88765253803316, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 10/19/06

Report Problem", + "NAME": "H08074" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0454619136274, + 38.93206122256313, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP SMITH - O'BRIEN

In Service


Last Inspection Date: 01/01/06

Report Problem", + "NAME": "H08075" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06204489273402, + 38.90347086306426, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/11/07

Report Problem", + "NAME": "H08076" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92525895122802, + 38.89922099786704, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 11/28/07

Report Problem", + "NAME": "H08077" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09358690214279, + 38.91536564625184, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H08078" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05826488919057, + 38.91062544736217, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 07/02/07

Report Problem", + "NAME": "H08079" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00030260667727, + 38.91025256159615, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/02/07

Report Problem", + "NAME": "H08080" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00607083603087, + 38.82783680987573, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/18/07

Report Problem", + "NAME": "H08081" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05710567996493, + 38.90537943213029, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H08083" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01770545989216, + 38.91265707784783, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/11/07

Report Problem", + "NAME": "H08084" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00151273583373, + 38.82120253332884, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 08/17/07

Report Problem", + "NAME": "H08085" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05584047114564, + 38.9061775529845, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/11/07

Report Problem", + "NAME": "H08086" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93719410570526, + 38.9047931800685, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H08087" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95640859409542, + 38.862540675271426, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 03/06/08

Report Problem", + "NAME": "H08088" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05309169771132, + 38.95128963360767, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H08089" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98492219736976, + 38.92456337532836, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/30/07

Report Problem", + "NAME": "H08090" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01932205595843, + 38.94104091193039, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Clow

In Service


Last Inspection Date: 07/06/07

Report Problem", + "NAME": "H08091" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02407486879943, + 38.89892872806242, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/19/07

Report Problem", + "NAME": "H08092" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0241303785301, + 38.92187126057276, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 05/21/06

Report Problem", + "NAME": "H08093" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08275308013201, + 38.950387968192736, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/05/07

Report Problem", + "NAME": "H08094" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02451009759346, + 38.887453749216625, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP SMITH - O'BRIEN

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H08095" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97587556476205, + 38.87208924423228, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/27/07

Report Problem", + "NAME": "H08096" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02392745914513, + 38.88768752934951, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H08097" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00075636549767, + 38.94736743915042, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H08098" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00369973493692, + 38.91551630019421, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H08100" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0058747438556, + 38.91560602416622, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 10/22/07

Report Problem", + "NAME": "H08101" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00785282832473, + 38.91551729300077, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H08102" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07097240657087, + 38.96680710923335, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H08104" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04256273614506, + 38.99248150648874, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H06667" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03069775897414, + 38.98654627542858, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 07/13/07

Report Problem", + "NAME": "H06668" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04126605188107, + 38.995319877069214, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, CLOW - EDDY

In Service


Last Inspection Date: 09/26/07

Report Problem", + "NAME": "H06669" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99950174070769, + 38.95683618697209, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H06670" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0002093400514, + 38.9568235762791, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H06671" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93671217061106, + 38.909771077680766, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/29/07

Report Problem", + "NAME": "H06672" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93454780422805, + 38.91204196054723, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/29/07

Report Problem", + "NAME": "H06673" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93470767518134, + 38.91083939127652, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 05/28/07

Report Problem", + "NAME": "H06674" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.933813118248, + 38.91190189037436, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 12/11/07

Report Problem", + "NAME": "H06675" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9336261110621, + 38.89977247158318, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 05/28/07

Report Problem", + "NAME": "H06676" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9732578324894, + 38.85413185525328, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/06/07

Report Problem", + "NAME": "H06677" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97431179441004, + 38.853123039577405, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 07/30/07

Report Problem", + "NAME": "H06678" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.10161957426138, + 38.928536480910076, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US Pipe, Metropolitan

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H06679" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9820851584149, + 38.856303304506994, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/05/07

Report Problem", + "NAME": "H06680" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9895455724907, + 38.94837209078545, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H06682" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95306309704921, + 38.860205134593336, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H06683" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95251682530085, + 38.86095246853403, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H06684" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98822712544568, + 38.892814656261, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/30/07

Report Problem", + "NAME": "H06685" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94680672070382, + 38.8976325149737, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Kennedy

In Service


Last Inspection Date: 06/01/07

Report Problem", + "NAME": "H06686" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02647244234389, + 38.984322252894245, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H06687" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04492804856763, + 38.99188325222858, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H06688" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05361088106761, + 38.897319400531686, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AM DARLING - B-84-B

In Service


Last Inspection Date: 05/12/07

Report Problem", + "NAME": "H06689" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95879074026675, + 38.8755308719135, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H06690" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97247587999698, + 38.84385955934146, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/30/07

Report Problem", + "NAME": "H06691" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94984160555939, + 38.897807349541374, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 06/01/07

Report Problem", + "NAME": "H06692" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99488331466053, + 38.89189332890175, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 11/13/06

Report Problem", + "NAME": "H06693" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99964764645884, + 38.893016739201016, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 09/18/07

Report Problem", + "NAME": "H06694" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9982079259249, + 38.894002863118665, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, KENNEDY-K81-A/D GUAR

In Service


Last Inspection Date: 05/21/07

Report Problem", + "NAME": "H06695" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99834932366409, + 38.89329666314996, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 09/18/07

Report Problem", + "NAME": "H06696" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0006388926788, + 38.894233633470144, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 08/03/07

Report Problem", + "NAME": "H06697" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99937165549699, + 38.894150531334496, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/27/07

Report Problem", + "NAME": "H06698" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99176743824871, + 38.88988321166382, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 10/22/06

Report Problem", + "NAME": "H06699" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9980643425351, + 38.8243380799068, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/15/07

Report Problem", + "NAME": "H06700" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99947874869262, + 38.9534082356228, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 10/09/07

Report Problem", + "NAME": "H06701" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98824195576937, + 38.84185812111377, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, KENNEDY-K81-A/D GUAR

In Service


Last Inspection Date: 03/11/08

Report Problem", + "NAME": "H07163" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03117368358609, + 38.89196042936237, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H07164" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05220405256068, + 38.90235545879882, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 02/29/08

Report Problem", + "NAME": "H07165" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0294925574771, + 38.89196592861865, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H07166" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02887995670005, + 38.89195621751582, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H07167" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01326188841345, + 38.879223795774905, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H07168" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03055504938841, + 38.89196672752274, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H07169" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03009180552627, + 38.89196437948461, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H07170" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97941198861014, + 38.90643729943215, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/04/07

Report Problem", + "NAME": "H07171" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98251418665494, + 38.90176447908287, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 09/06/07

Report Problem", + "NAME": "H07172" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9817361142532, + 38.90240999786607, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 02/28/08

Report Problem", + "NAME": "H07173" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98240197969302, + 38.90139178654355, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 02/28/08

Report Problem", + "NAME": "H07174" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97983925922148, + 38.90534581426163, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/01/07

Report Problem", + "NAME": "H07175" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98259188025827, + 38.90109005306457, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 06/04/07

Report Problem", + "NAME": "H07176" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98164912901785, + 38.90300065301632, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 08/28/07

Report Problem", + "NAME": "H07177" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98106407892175, + 38.904015602851935, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 06/01/07

Report Problem", + "NAME": "H07178" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98050995546866, + 38.90473724283739, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 08/28/07

Report Problem", + "NAME": "H07179" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93080110020489, + 38.906012443251086, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 05/16/07

Report Problem", + "NAME": "H07180" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98856826208481, + 38.83630882114836, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H07181" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.91769787001495, + 38.89467790579543, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Kennedy

In Service


Last Inspection Date: 04/18/07

Report Problem", + "NAME": "H07182" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98859846682389, + 38.84089506326246, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H07183" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00879516794764, + 38.87656455244934, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US PIPE-MET 250 M94

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H07184" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96960369738015, + 38.93236298038443, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP SMITH - JUMBO

In Service


Last Inspection Date: 08/10/07

Report Problem", + "NAME": "H07185" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97615042813459, + 38.92884378257927, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 07/30/07

Report Problem", + "NAME": "H07186" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96643436049604, + 38.933876760413824, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 08/09/07

Report Problem", + "NAME": "H07187" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98060953858959, + 38.926593403050674, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 08/07/07

Report Problem", + "NAME": "H07188" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97894303555384, + 38.92757048971088, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 07/30/07

Report Problem", + "NAME": "H07189" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96423259071118, + 38.9349643913268, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/27/07

Report Problem", + "NAME": "H07190" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9818455978275, + 38.926204685610536, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 08/07/07

Report Problem", + "NAME": "H07191" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97368697090285, + 38.93013727963233, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/27/07

Report Problem", + "NAME": "H07192" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96826674125221, + 38.9327289027193, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 08/09/07

Report Problem", + "NAME": "H07193" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9776634250936, + 38.928470768105825, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 07/30/07

Report Problem", + "NAME": "H07194" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06207591869202, + 38.96091468411529, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/15/07

Report Problem", + "NAME": "H07195" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02147380143175, + 38.931977377941415, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, KENNEDY-K81-A/D GUAR

In Service


Last Inspection Date: 09/04/07

Report Problem", + "NAME": "H07196" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99545236633146, + 38.938484542889505, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US PIPE-MET 250 M94

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H07630" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95210402276778, + 38.871180226678014, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US PIPE-A P SMITH

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H07631" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95199232173123, + 38.87207599455846, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H07632" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01999003423212, + 38.88038972183923, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H07633" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04354145595775, + 38.901841883806725, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AM DARLING - B-62-B

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H07634" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04337663811954, + 38.90145199136814, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/29/07

Report Problem", + "NAME": "H07635" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98884456597, + 38.91356105365554, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 05/26/07

Report Problem", + "NAME": "H07636" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98132186798092, + 38.91284935351559, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/29/07

Report Problem", + "NAME": "H07637" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03292540093577, + 38.931968830501816, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, KENNEDY-K81-A/D GUAR

In Service


Last Inspection Date: 07/23/07

Report Problem", + "NAME": "H07638" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03255540866178, + 38.93524824479915, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/24/07

Report Problem", + "NAME": "H07639" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95483598818235, + 38.88520158341418, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H07640" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99725802551747, + 38.89099160767032, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/01/07

Report Problem", + "NAME": "H07641" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9213090572142, + 38.88810889235209, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 12/07/06

Report Problem", + "NAME": "H07642" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08977166508976, + 38.9164012202743, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H07643" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02758904737483, + 38.97353620626832, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H07644" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05131506689666, + 38.89614560562933, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 05/23/07

Report Problem", + "NAME": "H07645" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9561597373276, + 38.87588020542816, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H07646" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0656941045554, + 38.954835210649364, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 10/02/07

Report Problem", + "NAME": "H07647" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05589223170068, + 38.934258104621634, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 12/27/06

Report Problem", + "NAME": "H07648" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98358187957423, + 38.89793182054272, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/02/07

Report Problem", + "NAME": "H07649" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99505211363423, + 38.8860862576991, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H07650" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0676130006429, + 38.91744067858635, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H07651" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03384151094251, + 38.902670117519804, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 05/29/07

Report Problem", + "NAME": "H07652" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03329161592923, + 38.90355369776755, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 08/02/07

Report Problem", + "NAME": "H07653" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0366204468569, + 38.992171131374356, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H07654" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09547664180998, + 38.934339797263775, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H07655" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94248106853148, + 38.90388283391777, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 10/16/07

Report Problem", + "NAME": "H07656" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99161384287906, + 38.948361564624236, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H07658" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05538455131251, + 38.899825267045095, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 05/14/07

Report Problem", + "NAME": "H07659" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9602227189676, + 38.89066513289886, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/01/07

Report Problem", + "NAME": "H07660" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96156016250936, + 38.92044061922615, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 08/02/07

Report Problem", + "NAME": "H07661" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98383091381878, + 38.887006124984175, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 04/12/06

Report Problem", + "NAME": "H07662" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97378534478037, + 38.904140079088634, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 05/14/07

Report Problem", + "NAME": "H07665" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99959286638867, + 38.91988141617034, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, KENNEDY-K81-A/D GUAR

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H07666" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08501170602099, + 38.94560412106222, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 11/27/07

Report Problem", + "NAME": "H04505" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95654305223472, + 38.89365977221223, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/01/07

Report Problem", + "NAME": "H04506" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97518279915471, + 38.94067135426789, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H04507" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9367036997258, + 38.87498690843462, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/08/07

Report Problem", + "NAME": "H04508" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97506636774665, + 38.868307444657106, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H04509" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01529486536687, + 38.89915188524489, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/02/07

Report Problem", + "NAME": "H04510" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01529637967154, + 38.89847224027998, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/02/07

Report Problem", + "NAME": "H04511" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01533375102812, + 38.89620930760246, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/02/07

Report Problem", + "NAME": "H04512" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93521919567424, + 38.899001646517085, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/01/07

Report Problem", + "NAME": "H04513" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96913510535339, + 38.93414917719809, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H04514" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00958756264887, + 38.90795428427942, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/12/07

Report Problem", + "NAME": "H04515" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03780815859407, + 38.93221727942994, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP SMITH - O'BRIEN

In Service


Last Inspection Date: 05/23/07

Report Problem", + "NAME": "H04516" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.91927519665964, + 38.89085197009494, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H04517" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01610729068243, + 38.89490146805752, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H04518" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05741847698862, + 38.977393409005366, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 10/24/07

Report Problem", + "NAME": "H04519" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08284602282293, + 38.9599718717732, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, U.S. Pipe

In Service


Last Inspection Date: 06/15/07

Report Problem", + "NAME": "H04520" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03661770740952, + 38.988907523757774, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H04521" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02007001701885, + 38.894850614774384, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H04522" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01971429770033, + 38.894571334891296, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H04523" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03228839827646, + 38.94395695096938, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 07/19/07

Report Problem", + "NAME": "H04524" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00268269482102, + 38.96278459765307, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 09/24/07

Report Problem", + "NAME": "H04525" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01688847768335, + 38.89470774990744, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H04526" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01602508217665, + 38.8934854720268, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H04527" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01714532668765, + 38.89493451614574, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 09/19/07

Report Problem", + "NAME": "H04528" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0153305961584, + 38.89316888502167, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H04529" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06203172561044, + 38.97597182469591, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/13/07

Report Problem", + "NAME": "H04530" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97509509310142, + 38.90027565512053, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 12/19/07

Report Problem", + "NAME": "H04531" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99860603254884, + 38.92455568268532, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/30/07

Report Problem", + "NAME": "H04532" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.10201453566845, + 38.93539452440193, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Clow Eddy, Eddy

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H04533" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.10368454157613, + 38.93367181967864, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Clow Eddy, Eddy

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H04534" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02951211090763, + 38.91928297852966, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/28/06

Report Problem", + "NAME": "H04535" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01528268522242, + 38.89686144779281, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H04536" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01868698817158, + 38.89467790157425, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H04537" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94924765535072, + 38.86582359293103, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H04538" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.037769935006, + 38.91690745588892, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/13/07

Report Problem", + "NAME": "H04954" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97142885019181, + 38.86907023603545, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 09/11/07

Report Problem", + "NAME": "H04955" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95763838837377, + 38.860577733899596, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H04956" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95882258005365, + 38.89204997336262, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 08/14/07

Report Problem", + "NAME": "H04957" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95746593202843, + 38.862081852095365, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 12/19/07

Report Problem", + "NAME": "H04958" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02851565609653, + 38.969030451248095, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H04959" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97742027557022, + 38.901312638286754, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, KENNEDY-K81-A/D GUAR

In Service


Last Inspection Date: 09/06/07

Report Problem", + "NAME": "H04960" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9775592473854, + 38.899270362145124, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Eddy

In Service


Last Inspection Date: 05/18/07

Report Problem", + "NAME": "H04961" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95159432322585, + 38.893370603485906, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 05/30/07

Report Problem", + "NAME": "H04962" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08072525467323, + 38.921537190691474, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, American Darling

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H04963" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0798723336545, + 38.92196653705908, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H04964" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99158874868232, + 38.899603587189674, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/02/07

Report Problem", + "NAME": "H04965" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97687584368056, + 38.89772988919319, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/29/07

Report Problem", + "NAME": "H04966" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04321089564364, + 38.9869617983455, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H04967" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9765791968336, + 38.89875208095324, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/04/07

Report Problem", + "NAME": "H04968" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95249863594898, + 38.886915518824274, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/02/07

Report Problem", + "NAME": "H04969" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95294440748845, + 38.885778967641656, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 08/29/07

Report Problem", + "NAME": "H04970" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94687304428274, + 38.86573991150237, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H04971" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94895799947581, + 38.86653095138741, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H04972" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98523261120602, + 38.90962671104989, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 09/06/07

Report Problem", + "NAME": "H04973" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0065189663599, + 38.94476188473148, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 08/06/07

Report Problem", + "NAME": "H04974" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9605324786096, + 38.86280134124152, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 07/27/07

Report Problem", + "NAME": "H04975" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99870068629718, + 38.83100646300914, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/18/07

Report Problem", + "NAME": "H04976" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99670644890912, + 38.83104835816591, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/18/07

Report Problem", + "NAME": "H04977" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99455718617257, + 38.83294639666921, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/18/07

Report Problem", + "NAME": "H04978" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99478811531402, + 38.83207610879017, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H04979" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99482915720249, + 38.831038867237936, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 10/17/07

Report Problem", + "NAME": "H04980" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99065977055142, + 38.8441879237521, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 07/02/07

Report Problem", + "NAME": "H04981" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00041010664916, + 38.829286411332376, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 12/03/07

Report Problem", + "NAME": "H04982" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00047078157007, + 38.82997545058975, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H04983" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95945206901574, + 38.89346184133429, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 10/03/07

Report Problem", + "NAME": "H04984" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9600857698224, + 38.89206721243867, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/01/07

Report Problem", + "NAME": "H04985" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95962051959977, + 38.892863239427655, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/01/07

Report Problem", + "NAME": "H04986" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99811232082406, + 38.91092906415695, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 07/31/07

Report Problem", + "NAME": "H04987" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94442245963786, + 38.88039215372748, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H05415" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94419433211398, + 38.879583118379465, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H05416" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97239877531072, + 38.87283836966293, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, U.S. PIPE

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H05417" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97141137090834, + 38.8740431408423, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/30/07

Report Problem", + "NAME": "H05418" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97030914383717, + 38.87357841971728, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H05419" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98384123932715, + 38.90986512187603, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/02/07

Report Problem", + "NAME": "H05420" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98513876257802, + 38.91010779869182, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H05421" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96988474780036, + 38.85963495694311, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 08/20/07

Report Problem", + "NAME": "H05423" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95747243560545, + 38.87568663192944, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H05424" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0888109638939, + 38.94014533488393, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 12/03/07

Report Problem", + "NAME": "H05425" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07896421783846, + 38.925390875417, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 11/06/07

Report Problem", + "NAME": "H05426" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08549318436802, + 38.93247978876778, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/18/07

Report Problem", + "NAME": "H05427" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95128025010533, + 38.890441085234784, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/11/07

Report Problem", + "NAME": "H05428" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96591582953405, + 38.8694331020444, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 08/16/07

Report Problem", + "NAME": "H05429" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98787525218218, + 38.94951067469486, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H05430" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98715846608076, + 38.91112853005006, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/18/07

Report Problem", + "NAME": "H05431" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97514720745615, + 38.850887039050214, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/06/07

Report Problem", + "NAME": "H05432" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03295369554044, + 38.89736340288634, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H05433" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96964959960575, + 38.85706639625015, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/06/07

Report Problem", + "NAME": "H05434" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97884871222637, + 38.9056736962068, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, CLOW - EDDY

In Service


Last Inspection Date: 06/05/07

Report Problem", + "NAME": "H05435" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94709887099509, + 38.89194168300198, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 10/09/07

Report Problem", + "NAME": "H05436" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96590448522879, + 38.8564440694794, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/06/07

Report Problem", + "NAME": "H05437" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0562741295463, + 38.963957924133425, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Eddy

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H05438" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.033395806089, + 38.98770536102443, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/05/07

Report Problem", + "NAME": "H05439" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0362772955056, + 38.98811779035975, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/05/07

Report Problem", + "NAME": "H05440" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0343469233192, + 38.98794814504181, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 07/16/07

Report Problem", + "NAME": "H05441" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99161243571504, + 38.95228137975813, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H05442" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99161369383835, + 38.95139350662461, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H05443" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97901411267132, + 38.90722812553003, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/12/07

Report Problem", + "NAME": "H05444" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93057299692924, + 38.90933952346587, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US PIPE-MET 250 M94

In Service


Last Inspection Date: 05/28/07

Report Problem", + "NAME": "H05445" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97016135366849, + 38.90190040853298, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, KENNEDY-K81-A/D GUAR

In Service


Last Inspection Date: 02/29/08

Report Problem", + "NAME": "H05446" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94569905425418, + 38.866017416139044, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/27/07

Report Problem", + "NAME": "H05447" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9664628907411, + 38.86022461631165, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AM DARLING - B-62-B

In Service


Last Inspection Date: 08/20/07

Report Problem", + "NAME": "H05448" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98149892483617, + 38.91436822324133, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 09/24/07

Report Problem", + "NAME": "H05449" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05738066633528, + 38.96204035802617, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/15/07

Report Problem", + "NAME": "H05877" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02672198812148, + 38.87525681603104, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H05878" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00893086017508, + 38.88027864840328, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H05879" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05886760957021, + 38.980647648259456, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US Pipe, AP Smith

In Service


Last Inspection Date: 06/13/07

Report Problem", + "NAME": "H05880" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04400764865369, + 38.91025665179926, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 08/22/07

Report Problem", + "NAME": "H05881" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06622108215157, + 38.95582770549212, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, U.S. Pipe

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H05882" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05771878541042, + 38.937210291055656, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 11/18/05

Report Problem", + "NAME": "H05883" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05663030077615, + 38.936047221472194, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US PIPE-MET 250 M94

In Service


Last Inspection Date: 12/28/06

Report Problem", + "NAME": "H05884" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05454077473271, + 38.93686234924214, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 11/18/05

Report Problem", + "NAME": "H05885" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99864019741487, + 38.82926123447792, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H05886" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99745641046236, + 38.82928810495151, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/15/07

Report Problem", + "NAME": "H05887" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98368090457289, + 38.8470321579273, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 08/04/07

Report Problem", + "NAME": "H05888" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94269384953485, + 38.88113131260068, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H05889" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94045486329308, + 38.88107126866343, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H05890" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98840546659665, + 38.84447382078344, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/02/07

Report Problem", + "NAME": "H05891" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98336470998109, + 38.90033808492792, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 09/15/07

Report Problem", + "NAME": "H05893" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05574712210667, + 38.981325253199344, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Eddy

In Service


Last Inspection Date: 06/13/07

Report Problem", + "NAME": "H05894" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98582011756288, + 38.9143420367465, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 09/07/07

Report Problem", + "NAME": "H05895" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92949724953007, + 38.89490204921306, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H05896" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05236333188468, + 38.98061296067537, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H05897" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98191136399151, + 38.9480850649206, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 09/06/07

Report Problem", + "NAME": "H05898" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98309125741666, + 38.948789166333206, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H05899" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98499112236297, + 38.845402463460985, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H05900" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95878047871143, + 38.876417330625166, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/27/07

Report Problem", + "NAME": "H05901" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98716607804504, + 38.841079993145634, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 03/11/08

Report Problem", + "NAME": "H05902" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96120563588212, + 38.89072530611001, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/02/07

Report Problem", + "NAME": "H05903" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00890315790349, + 38.9691662714932, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 08/07/07

Report Problem", + "NAME": "H05904" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00448081866452, + 38.94221659941282, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H05905" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00898844723822, + 38.969820695570306, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H05906" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00592802149238, + 38.942171142216594, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/23/07

Report Problem", + "NAME": "H05907" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92343376407493, + 38.887454359169745, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, KENNEDY-K81-A/D GUAR

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H05908" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.10866537092956, + 38.937139015092185, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H05909" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0318620165613, + 38.96689655251302, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H05910" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04499151384205, + 38.91190145248213, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/11/07

Report Problem", + "NAME": "H05911" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95231636309134, + 38.86204558560375, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 07/27/07

Report Problem", + "NAME": "H04468" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95625781226883, + 38.86059043119061, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 07/27/07

Report Problem", + "NAME": "H04469" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95443400600354, + 38.86075983068309, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H04470" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06302317020764, + 38.93634546611562, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 11/30/05

Report Problem", + "NAME": "H04471" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03364771156913, + 38.96997144820077, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H04472" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.91519527312151, + 38.8898684452779, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 09/17/07

Report Problem", + "NAME": "H04473" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03369950263738, + 38.9064308841637, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 05/30/07

Report Problem", + "NAME": "H04474" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03346881822355, + 38.906046293973915, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 07/27/07

Report Problem", + "NAME": "H04475" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98455836066543, + 38.91144827267494, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 09/24/07

Report Problem", + "NAME": "H04476" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05762266448413, + 38.97592050825982, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US Pipe, AP Smith

In Service


Last Inspection Date: 08/10/05

Report Problem", + "NAME": "H04477" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06484990255025, + 38.97386868439315, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/15/07

Report Problem", + "NAME": "H04478" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09459919171896, + 38.94439128461937, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 02/19/08

Report Problem", + "NAME": "H04479" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03442754185579, + 38.906317130673486, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/27/07

Report Problem", + "NAME": "H04480" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08176831929555, + 38.94975852306526, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/05/07

Report Problem", + "NAME": "H04481" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03461015845141, + 38.96679860848505, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H04482" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0162968995522, + 38.96138773597636, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/05/07

Report Problem", + "NAME": "H04483" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02799037079716, + 38.90271471681653, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/02/07

Report Problem", + "NAME": "H04484" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02851545987697, + 38.96903032518056, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H04485" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06992437653813, + 38.94616720989705, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 01/23/07

Report Problem", + "NAME": "H04486" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03469240711132, + 38.966179582504225, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H04487" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97632962235454, + 38.90502070216662, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 12/17/07

Report Problem", + "NAME": "H04491" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0061758185045, + 38.837663683795775, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H04492" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03972495423868, + 38.938451513701864, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 05/24/07

Report Problem", + "NAME": "H04493" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05844219050198, + 38.97607782669315, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US Pipe, AP Smith

In Service


Last Inspection Date: 06/13/07

Report Problem", + "NAME": "H04494" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02015825537079, + 38.978263448788546, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 08/08/07

Report Problem", + "NAME": "H04495" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01261704659235, + 38.93355893336584, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H04496" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00595518369728, + 38.92639592030899, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 05/26/07

Report Problem", + "NAME": "H04497" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03139045830304, + 38.96832632434839, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H04498" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06795762031446, + 38.962133518683494, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H04499" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97682805764099, + 38.92009805781247, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 09/19/07

Report Problem", + "NAME": "H04500" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97774151389005, + 38.91927053232404, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/30/07

Report Problem", + "NAME": "H04501" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97089137062612, + 38.925524117337886, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 07/27/07

Report Problem", + "NAME": "H04502" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09248884383969, + 38.944055928231755, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/04/07

Report Problem", + "NAME": "H04503" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96808343928033, + 38.87488510456729, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/30/07

Report Problem", + "NAME": "H04504" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9501976712504, + 38.89185527670701, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/28/07

Report Problem", + "NAME": "H04988" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05740504133091, + 38.96879537961942, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H04989" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05690530712651, + 38.967334919084706, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H04990" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06706735726398, + 38.914759905473645, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Kennedy

In Service


Last Inspection Date: 07/28/07

Report Problem", + "NAME": "H04991" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03573820275865, + 38.898602017775055, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H04992" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05717434172206, + 38.98284093566841, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/13/07

Report Problem", + "NAME": "H04993" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00746630807164, + 38.827846881484916, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/15/07

Report Problem", + "NAME": "H04994" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00675272397862, + 38.82691515204219, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/15/07

Report Problem", + "NAME": "H04995" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96789522660588, + 38.86451209794541, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 09/24/07

Report Problem", + "NAME": "H04996" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04408173399972, + 38.93802545390631, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/14/07

Report Problem", + "NAME": "H04997" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00101105172736, + 38.8479719285518, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H04998" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0080961753302, + 38.91391932397774, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H04999" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03234902990685, + 38.943631068478105, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 07/19/07

Report Problem", + "NAME": "H05000" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02606052471145, + 38.94301346401148, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 08/15/07

Report Problem", + "NAME": "H05001" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05611670776105, + 38.96759030558905, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H05002" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01774736621778, + 38.88612783101672, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H05003" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94628259926158, + 38.867838367166144, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 07/27/07

Report Problem", + "NAME": "H05004" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95872952250073, + 38.894223326987415, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, USP

In Service


Last Inspection Date: 06/01/07

Report Problem", + "NAME": "H05005" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08199239046205, + 38.92010320964475, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H05006" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98665072304348, + 38.875997474552044, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 01/08/08

Report Problem", + "NAME": "H05007" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0007649709477, + 38.8989641137893, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/02/07

Report Problem", + "NAME": "H05008" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08035598957918, + 38.94329651808345, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/05/07

Report Problem", + "NAME": "H05009" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00778057749709, + 38.95663694563501, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, KENNEDY-K81-A/D GUAR

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H05010" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95737387281919, + 38.89634168917012, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Kennedy

In Service


Last Inspection Date: 07/09/07

Report Problem", + "NAME": "H05011" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94935583323286, + 38.86279905532669, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H05012" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9493118132755, + 38.861995188010155, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 11/30/07

Report Problem", + "NAME": "H05013" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94810462469599, + 38.862929749567634, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H05014" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92573217709304, + 38.888725268143325, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 02/05/08

Report Problem", + "NAME": "H05015" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00378935518785, + 38.94444814746786, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H05016" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95873679521195, + 38.85544184778508, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/06/07

Report Problem", + "NAME": "H05017" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95632262760772, + 38.88539765774176, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H05018" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.013751640455, + 38.86740455536052, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 07/05/07

Report Problem", + "NAME": "H05019" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01374002562615, + 38.86962053501322, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/05/07

Report Problem", + "NAME": "H05020" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01373952713539, + 38.8708619383729, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/05/07

Report Problem", + "NAME": "H05021" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94572859198435, + 38.867374547179196, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 07/27/07

Report Problem", + "NAME": "H05450" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0080843981899, + 38.96575684595789, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H05451" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92908147085333, + 38.87853815209767, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/08/07

Report Problem", + "NAME": "H05452" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08676262875414, + 38.90773519732001, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H05453" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00304861681786, + 38.942972044474814, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H05454" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9710168513011, + 38.86208656965696, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/05/07

Report Problem", + "NAME": "H05455" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0525950951507, + 38.9783977166296, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/13/07

Report Problem", + "NAME": "H05456" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92039992813483, + 38.88443601769575, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/30/07

Report Problem", + "NAME": "H05457" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00774987251386, + 38.88624695002779, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H05458" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96296106266753, + 38.880172655067256, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, KENNEDY-K81-A/D GUAR

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H05459" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96010702524387, + 38.85652863230421, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 12/03/07

Report Problem", + "NAME": "H05460" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9662578523234, + 38.87374476757092, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H05461" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94943102200209, + 38.886418860120045, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/02/07

Report Problem", + "NAME": "H05462" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0581065194399, + 38.9649632765295, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H05463" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97100178978974, + 38.873151964906526, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H05464" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04250687819595, + 38.898263820177455, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/15/07

Report Problem", + "NAME": "H05465" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97872822433058, + 38.90025184338745, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 08/30/07

Report Problem", + "NAME": "H05466" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96231879528543, + 38.87465626705615, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/30/07

Report Problem", + "NAME": "H05467" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96337657050077, + 38.874653991134956, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 07/30/07

Report Problem", + "NAME": "H05468" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01972369086437, + 38.90970046948859, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/11/07

Report Problem", + "NAME": "H05469" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98213572489016, + 38.91204948628484, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 09/14/07

Report Problem", + "NAME": "H05470" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99489040500387, + 38.8402116498363, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H05471" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97087082647637, + 38.86955353433788, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 12/02/07

Report Problem", + "NAME": "H05472" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96469986458378, + 38.86956562380608, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H05473" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9775595192457, + 38.869528823835125, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, CLOW - EDDY

In Service


Last Inspection Date: 08/14/07

Report Problem", + "NAME": "H05474" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96092748084953, + 38.87334836665557, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, CLOW - EDDY

In Service


Last Inspection Date: 07/27/07

Report Problem", + "NAME": "H05475" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.922639640045, + 38.8915201999504, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H05476" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02007291248464, + 38.912556504387986, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/11/07

Report Problem", + "NAME": "H05477" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.020000900572, + 38.90871248631782, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Kennedy

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H05478" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02009328912031, + 38.911174684688625, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/11/07

Report Problem", + "NAME": "H05479" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01972444321378, + 38.90729285407107, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 09/21/07

Report Problem", + "NAME": "H05480" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02000025945296, + 38.90650833325808, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 02/15/08

Report Problem", + "NAME": "H05481" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95877757076808, + 38.87466835813162, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, KENNEDY-K81-A/D GUAR

In Service


Last Inspection Date: 07/27/07

Report Problem", + "NAME": "H05482" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01039973341926, + 38.96915598667947, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H05483" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0322345569651, + 38.97218473781162, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H05912" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03217924586829, + 38.97128920824938, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H05913" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99951068047747, + 38.824315312506684, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/15/07

Report Problem", + "NAME": "H05914" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00172940827434, + 38.84724488502374, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H05915" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99843658986222, + 38.82674694162075, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/10/07

Report Problem", + "NAME": "H05916" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99978832639101, + 38.82574446233457, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/15/07

Report Problem", + "NAME": "H05917" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99884286278379, + 38.8254161250497, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/15/07

Report Problem", + "NAME": "H05918" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.035035526915, + 38.97221003807122, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H05919" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03360726182474, + 38.972214673101284, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H05920" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03608325922893, + 38.97221785392148, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H05921" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03786074088279, + 38.8977929927947, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 08/15/07

Report Problem", + "NAME": "H05922" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05418359015695, + 38.94222665722753, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 10/01/07

Report Problem", + "NAME": "H05923" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00508365485885, + 38.83955913286491, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H05924" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04228618323036, + 38.9510751853388, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 07/17/07

Report Problem", + "NAME": "H05925" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04183480223777, + 38.949728808862076, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AM DARLING - B-84-B

In Service


Last Inspection Date: 07/17/07

Report Problem", + "NAME": "H05926" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05402398637719, + 38.98167506726326, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 11/20/06

Report Problem", + "NAME": "H05927" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0582721154005, + 38.98195930008615, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/13/07

Report Problem", + "NAME": "H05928" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04672468460491, + 38.8997015652967, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/13/07

Report Problem", + "NAME": "H05929" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06758056741153, + 38.95661478150731, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H05930" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04660115537602, + 38.89724079135494, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 05/29/07

Report Problem", + "NAME": "H05931" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99602759486328, + 38.85989501773551, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 03/12/08

Report Problem", + "NAME": "H05933" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98407197411996, + 38.90376975429171, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 07/23/07

Report Problem", + "NAME": "H05934" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99734390812782, + 38.83410601724103, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H05935" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9248936665511, + 38.89502238752707, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H05936" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05571137420573, + 38.95077943808594, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H05937" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02420977546612, + 38.90560348594483, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 05/25/07

Report Problem", + "NAME": "H05938" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01910040045848, + 38.905598874818324, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H05939" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02727092529912, + 38.90560644188606, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Clow

In Service


Last Inspection Date: 05/30/07

Report Problem", + "NAME": "H05940" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9336161211522, + 38.87855889753185, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H05941" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00344143825373, + 38.920826177353554, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US PIPE-MET 250 M94

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H05942" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05581898379164, + 38.92016268468825, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 01/10/07

Report Problem", + "NAME": "H05943" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01811280752959, + 38.92948476283356, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/17/07

Report Problem", + "NAME": "H05944" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98916273353832, + 38.86258019025154, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H05945" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00210325452981, + 38.90192618952126, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 02/29/08

Report Problem", + "NAME": "H05946" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06133971936323, + 38.918426300346006, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/11/07

Report Problem", + "NAME": "H05947" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09667756841523, + 38.92180859230028, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US Pipe, AP Smith

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H04539" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9781831422131, + 38.89472447271752, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 05/29/07

Report Problem", + "NAME": "H04540" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0272135623196, + 38.914143364447746, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/13/07

Report Problem", + "NAME": "H04541" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95899006206633, + 38.85654342450508, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/09/07

Report Problem", + "NAME": "H04542" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02663345176936, + 38.97944592406447, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H04543" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97109502279811, + 38.937750493672844, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H04544" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9710962653787, + 38.936250270157906, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/06/07

Report Problem", + "NAME": "H04545" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98363959153033, + 38.92420523925874, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 08/02/07

Report Problem", + "NAME": "H04546" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98236143859955, + 38.92319361722307, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 08/01/07

Report Problem", + "NAME": "H04547" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95344548516675, + 38.86904937116085, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H04548" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01294550710134, + 38.966053410712604, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H04549" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00421993728946, + 38.84020610015136, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H04550" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00558960508017, + 38.83842083779641, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H04551" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06152500263343, + 38.95189563901555, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H04552" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00356182364052, + 38.84108978791524, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H04553" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07191214253295, + 38.916307376897855, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AM DARLING - B-62-B

In Service


Last Inspection Date: 07/13/07

Report Problem", + "NAME": "H04554" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0289008638822, + 38.904668956389905, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 05/29/07

Report Problem", + "NAME": "H04555" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95759948747545, + 38.89210020789515, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/01/07

Report Problem", + "NAME": "H04556" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06172900303278, + 38.974461736861244, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H04557" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.10182195815486, + 38.938127424066955, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US Pipe, AP Smith

In Service


Last Inspection Date: 06/05/07

Report Problem", + "NAME": "H04558" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.10050397805239, + 38.93916239323292, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/05/07

Report Problem", + "NAME": "H04559" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09413634421344, + 38.94486148554946, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 12/27/07

Report Problem", + "NAME": "H04560" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09415609997177, + 38.945600482518, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 12/04/07

Report Problem", + "NAME": "H04561" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09926084706531, + 38.94025000932464, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 01/25/08

Report Problem", + "NAME": "H04562" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09842231626308, + 38.94692327645336, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/04/07

Report Problem", + "NAME": "H04563" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08143300808412, + 38.92465467877779, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H04564" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08040314915684, + 38.92458274875631, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, American Darling

In Service


Last Inspection Date: 07/05/07

Report Problem", + "NAME": "H04565" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08172610155317, + 38.923711464988465, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H04566" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00852332895758, + 38.94824079874554, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H04567" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97017022565078, + 38.86124873563855, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/06/07

Report Problem", + "NAME": "H04568" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97117841507207, + 38.860742274255394, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/06/07

Report Problem", + "NAME": "H04569" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97242170260776, + 38.86062560921024, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H04570" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9717152970167, + 38.86132835820676, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H04571" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9789100728303, + 38.86659355041834, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H04572" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95326669240247, + 38.871229676459286, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 08/24/07

Report Problem", + "NAME": "H06054" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03608648730275, + 38.96546641908029, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H06055" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99791451439145, + 38.910481742611296, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/11/07

Report Problem", + "NAME": "H06056" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9255236979852, + 38.89258039620722, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 11/06/07

Report Problem", + "NAME": "H06057" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00453927684698, + 38.94292090109212, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H06058" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09427323290882, + 38.9215427300685, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 07/02/07

Report Problem", + "NAME": "H06059" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.91723851288903, + 38.88728880266766, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/08/07

Report Problem", + "NAME": "H06060" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96257705068113, + 38.87105177316388, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H06061" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05446446347828, + 38.980964393689995, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/13/07

Report Problem", + "NAME": "H06063" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04814285097343, + 38.98891368947569, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H06064" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99161978324591, + 38.94885800217803, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H06065" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01627270761252, + 38.89848595421249, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 09/18/07

Report Problem", + "NAME": "H06066" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0645614985153, + 38.95750909848299, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H06067" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02332911250363, + 38.96319848238286, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H06068" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.921110169987, + 38.88732829004167, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Kennedy

In Service


Last Inspection Date: 06/08/07

Report Problem", + "NAME": "H06069" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97416249509429, + 38.8539286035758, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/06/07

Report Problem", + "NAME": "H06070" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05419077303019, + 38.97900655669684, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H06071" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97126260637947, + 38.85412903898753, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/06/07

Report Problem", + "NAME": "H06072" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0752315624423, + 38.90566486565189, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/02/07

Report Problem", + "NAME": "H06073" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95950074013167, + 38.921375690427816, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 10/04/07

Report Problem", + "NAME": "H06074" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03079930585041, + 38.9331692262455, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 05/17/07

Report Problem", + "NAME": "H06075" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98853013540462, + 38.83259545879112, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/18/07

Report Problem", + "NAME": "H06076" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95490457174867, + 38.89471281504109, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 11/20/07

Report Problem", + "NAME": "H06077" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99849754775217, + 38.95693152182779, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H06078" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99733925205196, + 38.95719635311464, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 07/27/07

Report Problem", + "NAME": "H06079" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99586160890748, + 38.95733626250208, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H06080" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99793840925834, + 38.95777908260535, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H06081" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96809799755391, + 38.85987505231541, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 07/06/07

Report Problem", + "NAME": "H06082" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05976869507656, + 38.981008871324924, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/13/07

Report Problem", + "NAME": "H06083" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02608698963667, + 38.90273529100587, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/02/07

Report Problem", + "NAME": "H06084" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08769689462318, + 38.942346703998936, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US Pipe, AP Smith

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H06085" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03472261644147, + 38.96547009301509, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H06086" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94485381033545, + 38.886486783862864, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/08/07

Report Problem", + "NAME": "H06087" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94220207343118, + 38.88646454828485, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/08/07

Report Problem", + "NAME": "H06088" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94356073568663, + 38.88646521270205, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/08/07

Report Problem", + "NAME": "H06089" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98747781304758, + 38.842167959259015, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 07/10/07

Report Problem", + "NAME": "H05948" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94099601528771, + 38.883244645922076, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/08/07

Report Problem", + "NAME": "H05949" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.10215977787801, + 38.92727730470362, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US Pipe, AP Smith

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H05950" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03837335547803, + 38.98224010102738, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H05951" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01802050851096, + 38.8637222724142, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/05/07

Report Problem", + "NAME": "H05952" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01609600496734, + 38.8631720312659, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/05/07

Report Problem", + "NAME": "H05953" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01802035566848, + 38.86311692491142, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H05954" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01599134806169, + 38.86389038571573, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/05/07

Report Problem", + "NAME": "H05955" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01820848591795, + 38.871453359366775, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/05/07

Report Problem", + "NAME": "H05956" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02456242290125, + 38.888849802552556, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Clow Eddy

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H05957" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06539118410345, + 38.95645391376966, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H05958" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94038040174146, + 38.907151875444924, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Eddy

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H05959" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95681652686993, + 38.85847977659861, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 12/19/07

Report Problem", + "NAME": "H05960" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95611290911444, + 38.89284632671675, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/01/07

Report Problem", + "NAME": "H05961" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02202192001616, + 38.90074432644311, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H05962" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9717285935308, + 38.91807873666925, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/30/07

Report Problem", + "NAME": "H05963" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98282966520019, + 38.94984280819875, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H05964" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04659681880526, + 38.89900236038672, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/29/07

Report Problem", + "NAME": "H05965" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04659545148175, + 38.8978973862243, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, KENNEDY-K81-A/D GUAR

In Service


Last Inspection Date: 09/17/07

Report Problem", + "NAME": "H05966" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04156943785787, + 38.9163617204276, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/17/07

Report Problem", + "NAME": "H05967" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06351862614333, + 38.93552794684563, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 03/02/07

Report Problem", + "NAME": "H05968" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07204188430285, + 38.96586789486272, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H05969" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99865951636669, + 38.9584219405531, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H05970" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97242537636323, + 38.93107214126279, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/27/07

Report Problem", + "NAME": "H05971" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97524397992515, + 38.88313590768739, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 04/10/06

Report Problem", + "NAME": "H05972" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97487754891152, + 38.886512612792615, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H05973" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97451783087179, + 38.881905178881524, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 04/10/06

Report Problem", + "NAME": "H05974" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97360028344937, + 38.88361208229724, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 04/10/06

Report Problem", + "NAME": "H05975" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97413080218112, + 38.88266427561052, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H05976" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96241389265245, + 38.8827944708599, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/13/07

Report Problem", + "NAME": "H05977" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09588426819892, + 38.923062051888984, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H05979" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9411022380476, + 38.88397998205178, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/08/07

Report Problem", + "NAME": "H05980" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01552695181967, + 38.97072159974498, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H05981" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06683192526043, + 38.9561772750103, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H05982" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98823338104727, + 38.95168280418546, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H05983" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05509903031954, + 38.968148291757686, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/15/07

Report Problem", + "NAME": "H05984" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01790540310722, + 38.920408302321555, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 10/02/06

Report Problem", + "NAME": "H05985" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98764593793524, + 38.950961649418005, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H05986" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01613912936068, + 38.97072151686046, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 11/09/07

Report Problem", + "NAME": "H05987" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08483002694584, + 38.91203847116491, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/10/07

Report Problem", + "NAME": "H05988" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04474705822429, + 38.90862127541762, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/12/07

Report Problem", + "NAME": "H05989" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04481270414615, + 38.90951482401254, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/11/07

Report Problem", + "NAME": "H05990" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08686283829391, + 38.914500695811604, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 10/03/07

Report Problem", + "NAME": "H05991" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00049191615116, + 38.91539354712342, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 07/19/07

Report Problem", + "NAME": "H05992" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02999478653459, + 38.91020337294831, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 05/12/07

Report Problem", + "NAME": "H05994" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.944219965088, + 38.88578784680498, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/08/07

Report Problem", + "NAME": "H05995" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03025368005234, + 38.90923054927279, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, KENNEDY-K81-A/D GUAR

In Service


Last Inspection Date: 05/15/07

Report Problem", + "NAME": "H05996" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93141264742363, + 38.87852562644527, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H05997" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93119704708621, + 38.877684547874196, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/08/07

Report Problem", + "NAME": "H05998" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93174383663276, + 38.875606685377754, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/08/07

Report Problem", + "NAME": "H05999" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08859089824388, + 38.91637633057543, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H06000" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00113383280268, + 38.960589987119796, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H06001" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98149197052334, + 38.94880871526207, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H06002" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98273343178656, + 38.92135356986621, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, KENNEDY-K81-A/D GUAR

In Service


Last Inspection Date: 07/30/07

Report Problem", + "NAME": "H06003" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08905254249221, + 38.908255436197464, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H06004" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08642463903071, + 38.911785465336784, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H06005" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98066441841266, + 38.94719041532141, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H06006" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92411977843128, + 38.902247901349874, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H06007" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98153274088584, + 38.920302186893004, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/30/07

Report Problem", + "NAME": "H06008" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99781064518963, + 38.95919601642933, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H06009" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09300732693742, + 38.92526199349452, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller, Centurion

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H06010" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99850861227173, + 38.960232643607384, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H06011" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06405404571017, + 38.93764910925721, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 08/10/06

Report Problem", + "NAME": "H06012" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98842342578274, + 38.94519929584205, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H06013" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97411088595291, + 38.935172178844155, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 01/14/08

Report Problem", + "NAME": "H06015" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92867480510196, + 38.9071245336008, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP SMITH - O'BRIEN

In Service


Last Inspection Date: 05/28/07

Report Problem", + "NAME": "H06016" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96472925627012, + 38.91872350554345, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 09/06/07

Report Problem", + "NAME": "H06017" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96592860396558, + 38.918778055495416, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, KENNEDY-K81-A/D GUAR

In Service


Last Inspection Date: 07/30/07

Report Problem", + "NAME": "H06018" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00914256544131, + 38.95702328350516, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H06019" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92728840762776, + 38.89352356757334, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/08/07

Report Problem", + "NAME": "H06020" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92721286145478, + 38.8944360054471, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H06021" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92787943208923, + 38.89086238290757, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Eddy

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H06022" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93911714344618, + 38.901571990398054, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 10/11/07

Report Problem", + "NAME": "H06023" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09339662574216, + 38.924525072520275, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H06024" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04023501742162, + 38.92222307759083, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Kennedy

In Service


Last Inspection Date: 10/30/06

Report Problem", + "NAME": "H06025" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94808340216768, + 38.884660454119654, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/08/07

Report Problem", + "NAME": "H06026" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94078687736402, + 38.885615204732666, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 10/04/07

Report Problem", + "NAME": "H06027" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93287718357305, + 38.87726696848328, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/08/07

Report Problem", + "NAME": "H06028" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98823019091473, + 38.95227836768254, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, American Darily

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H06029" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9178475664839, + 38.88642737359512, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 10/25/07

Report Problem", + "NAME": "H06030" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9572727160884, + 38.86470335691979, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 12/17/07

Report Problem", + "NAME": "H06031" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02547835911794, + 38.98158889462725, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H06032" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97488577636561, + 38.894901311216735, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 08/06/07

Report Problem", + "NAME": "H06033" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09692314508263, + 38.94121920977975, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 01/08/08

Report Problem", + "NAME": "H06034" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99784274890723, + 38.82406187624248, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 10/02/07

Report Problem", + "NAME": "H06035" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99940687597602, + 38.82286928083087, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 10/11/07

Report Problem", + "NAME": "H06036" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99898173788768, + 38.823672941894145, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/15/07

Report Problem", + "NAME": "H06037" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97939728263239, + 38.947171984129106, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H06038" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9901443534295, + 38.91246358569445, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H06039" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98895811107158, + 38.911962165571076, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H06040" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0062725280622, + 38.94743688028898, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H06041" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98839846497783, + 38.922078935114584, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, CLOW - EDDY

In Service


Last Inspection Date: 07/30/07

Report Problem", + "NAME": "H06042" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05625078616974, + 38.96293341782501, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H06043" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98102245181586, + 38.94066209768925, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H06044" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05473525151494, + 38.97802773066404, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/13/07

Report Problem", + "NAME": "H06045" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93272102105684, + 38.87855594404109, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/08/07

Report Problem", + "NAME": "H06046" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99892992714582, + 38.9620604321043, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H06047" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97468490040116, + 38.929627710810465, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/27/07

Report Problem", + "NAME": "H06048" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97387654143601, + 38.91952447869471, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 07/30/07

Report Problem", + "NAME": "H06049" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9816834075737, + 38.916724318803766, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 07/30/07

Report Problem", + "NAME": "H06050" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93191486500743, + 38.90291925058489, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 05/24/07

Report Problem", + "NAME": "H06051" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.940176118171, + 38.90634862262025, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H06052" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02553748370023, + 38.94158888264981, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, CLOW - EDDY

In Service


Last Inspection Date: 08/15/07

Report Problem", + "NAME": "H06053" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00097602102483, + 38.96431731509948, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H06090" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0577599003193, + 38.93637889482694, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 12/28/06

Report Problem", + "NAME": "H06091" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00260174349097, + 38.96441213808114, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H06092" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94900843706566, + 38.89549251459384, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 09/22/07

Report Problem", + "NAME": "H06093" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96222774679589, + 38.86504851074198, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H06094" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05471040593682, + 38.982734754230385, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Kennedy

In Service


Last Inspection Date: 06/15/07

Report Problem", + "NAME": "H06095" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92486980613421, + 38.88597992579633, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/08/07

Report Problem", + "NAME": "H06096" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93861073776398, + 38.874721458004274, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H06097" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09245548379204, + 38.95474728762475, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 11/12/07

Report Problem", + "NAME": "H06098" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9501536570703, + 38.86125808516608, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H06099" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96343393682282, + 38.9186451132847, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 07/30/07

Report Problem", + "NAME": "H06100" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9619882486635, + 38.918575666177475, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 07/30/07

Report Problem", + "NAME": "H06101" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05489042359085, + 38.96963052499907, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 07/05/07

Report Problem", + "NAME": "H06102" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05673447072746, + 38.970610453077406, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H06103" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00406035059625, + 38.83296137096221, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H06104" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04650463091485, + 38.905760159341455, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 08/27/07

Report Problem", + "NAME": "H06105" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98518230763166, + 38.91356362838349, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 09/04/07

Report Problem", + "NAME": "H06106" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00242326872942, + 38.938074260395545, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 02/28/08

Report Problem", + "NAME": "H06107" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00288284917531, + 38.94050063367342, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H06108" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00165039664131, + 38.93402393565909, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H06109" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0022579435767, + 38.93724085221533, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H06110" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00496828811649, + 38.940720185764945, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H06111" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00136856635177, + 38.93258892560665, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Kennedy

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H06112" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00554621031077, + 38.94095562747284, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H06113" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00258860043944, + 38.93898181547361, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 02/28/08

Report Problem", + "NAME": "H06114" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00200521433875, + 38.93590150313327, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H06115" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00291715284176, + 38.939920805139906, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 02/28/08

Report Problem", + "NAME": "H06116" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00702127244165, + 38.94214178670973, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H06117" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0017748967706, + 38.93470564605151, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H06118" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00348971845982, + 38.94080676388743, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H06119" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95670952665942, + 38.85625743941417, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP SMITH - O'BRIEN

In Service


Last Inspection Date: 01/30/08

Report Problem", + "NAME": "H06120" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.91358531172793, + 38.892999802024995, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 02/29/08

Report Problem", + "NAME": "H06121" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98608126307448, + 38.91326577017279, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 12/17/07

Report Problem", + "NAME": "H06122" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96469978438265, + 38.86558102386654, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H06123" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9852286268318, + 38.91166283889424, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US PIPE-MET 250 M94

In Service


Last Inspection Date: 09/10/07

Report Problem", + "NAME": "H06124" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99867448733681, + 38.94999921111817, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 07/27/07

Report Problem", + "NAME": "H06125" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98027490100323, + 38.90666245882123, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 06/01/07

Report Problem", + "NAME": "H06126" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09420823086555, + 38.92029601175147, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H06127" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98034693181015, + 38.90784886123743, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 08/13/07

Report Problem", + "NAME": "H06128" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04176581824595, + 38.905786064837585, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/11/07

Report Problem", + "NAME": "H06129" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98640305577776, + 38.891955140684495, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 04/13/06

Report Problem", + "NAME": "H06130" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99274741699661, + 38.95131693106683, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H06131" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99295755905642, + 38.952318708713214, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H06132" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99802855821795, + 38.96214426019148, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H06133" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98808983547468, + 38.93826546532368, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H06134" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96605687639418, + 38.8652612942667, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 08/17/07

Report Problem", + "NAME": "H06135" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03870982584631, + 38.906570744624176, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/11/07

Report Problem", + "NAME": "H06136" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03867829737317, + 38.90719478135571, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/11/07

Report Problem", + "NAME": "H06137" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99363677130809, + 38.838683349531685, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H06139" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99684001492463, + 38.85701257235884, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 10/04/07

Report Problem", + "NAME": "H06140" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99661807443468, + 38.858125620041555, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/04/07

Report Problem", + "NAME": "H06141" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05235896186663, + 38.98151379365338, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/13/07

Report Problem", + "NAME": "H06142" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06644973067202, + 38.97271197567534, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/15/07

Report Problem", + "NAME": "H06143" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06646379467917, + 38.97410667667713, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US Pipe, Metropolitan

In Service


Last Inspection Date: 06/15/07

Report Problem", + "NAME": "H06144" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93723731837102, + 38.888360033807224, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/08/07

Report Problem", + "NAME": "H06145" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99919591303542, + 38.94715852783032, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H06146" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00581997092837, + 38.83292053319816, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 09/07/07

Report Problem", + "NAME": "H06147" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9407515068607, + 38.88645899298755, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/08/07

Report Problem", + "NAME": "H06148" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97916501147942, + 38.8671966822501, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H06149" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09505145979456, + 38.924103499999696, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H06150" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96973994628644, + 38.91966094780212, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 03/05/08

Report Problem", + "NAME": "H06151" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94241885041961, + 38.8857699108868, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/08/07

Report Problem", + "NAME": "H06152" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.10045663680148, + 38.948500283782636, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/04/07

Report Problem", + "NAME": "H06153" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95529213580222, + 38.8713837024314, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H06154" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09212590931568, + 38.92023234351756, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H06155" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99666803228124, + 38.83934810097682, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H06156" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0089091285063, + 38.955727796172376, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H06157" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9529222497127, + 38.86814368115873, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H06158" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03709180498784, + 38.92866528056472, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 09/19/07

Report Problem", + "NAME": "H06159" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99621184832708, + 38.9582694220759, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H06160" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98836708642243, + 38.94081620030147, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Kennedy

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H06161" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99518611881898, + 38.95896328154054, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H06162" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09416615912777, + 38.94119042068433, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 01/08/08

Report Problem", + "NAME": "H06163" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09225954766166, + 38.921239684561534, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H06164" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92345936281907, + 38.893063604169335, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 10/18/07

Report Problem", + "NAME": "H06165" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92307132049972, + 38.89379641455867, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H06166" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92288369832943, + 38.89470798302518, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H06167" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99381391780702, + 38.84060029433971, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H06168" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99390928457731, + 38.84244053613268, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, SUP CENT 250

In Service


Last Inspection Date: 10/10/07

Report Problem", + "NAME": "H06170" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99522614225198, + 38.8428721920872, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H06171" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00864943260682, + 38.96462427964531, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H06172" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98970179647013, + 38.833358665734416, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/18/07

Report Problem", + "NAME": "H06173" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06744837922692, + 38.94625850431112, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AM DARLING - B-84-B

In Service


Last Inspection Date: 01/23/07

Report Problem", + "NAME": "H06174" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.91631320690418, + 38.89705537463737, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 06/08/07

Report Problem", + "NAME": "H06175" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0359271720447, + 38.96679543672169, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H06176" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94113667628936, + 38.86822133839423, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 07/27/07

Report Problem", + "NAME": "H06177" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07329495737362, + 38.95274079191687, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/18/07

Report Problem", + "NAME": "H06178" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00931592319759, + 38.8730479486731, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H06179" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08186968487222, + 38.921479804219885, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H06180" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99728308502863, + 38.85889714578509, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/04/07

Report Problem", + "NAME": "H06181" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94276031089639, + 38.87804759224004, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H06182" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94343806433534, + 38.87852689879248, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H06183" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00161160664943, + 38.82523898608754, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/15/07

Report Problem", + "NAME": "H06184" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02138445218266, + 38.920593523172116, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 09/29/06

Report Problem", + "NAME": "H06185" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94141218446286, + 38.8788288703742, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H06186" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9408989893484, + 38.878240705966995, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H06187" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98724337294172, + 38.91286907656138, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, CLOW - EDDY

In Service


Last Inspection Date: 09/04/07

Report Problem", + "NAME": "H06188" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.11141066065733, + 38.931218377369206, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H06189" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96551518143657, + 38.85742972918487, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/06/07

Report Problem", + "NAME": "H06190" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97782969378237, + 38.844973421971964, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Eddy

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H06191" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97892558862489, + 38.8447595573216, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 08/04/07

Report Problem", + "NAME": "H06192" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03022941080225, + 38.987334138199124, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/05/07

Report Problem", + "NAME": "H06193" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99661944495496, + 38.959820017084816, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H06194" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02038668311893, + 38.95543100422687, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 08/01/07

Report Problem", + "NAME": "H06195" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07629460210578, + 38.93100359485396, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 03/05/08

Report Problem", + "NAME": "H06196" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98264504478333, + 38.84936345547199, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/30/07

Report Problem", + "NAME": "H06197" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97339395910024, + 38.9204393004522, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 08/02/07

Report Problem", + "NAME": "H06199" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9774492876573, + 38.84374630891142, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 08/04/07

Report Problem", + "NAME": "H06200" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97619209644365, + 38.84390586007711, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H06201" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98239542370581, + 38.850693234384096, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 08/06/07

Report Problem", + "NAME": "H06202" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98436858810177, + 38.850261389634944, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H06203" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03776977908477, + 38.93577314821084, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 05/19/07

Report Problem", + "NAME": "H06205" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05953436352812, + 38.95364893159056, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H06206" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02977432924227, + 38.90052041671877, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 05/29/07

Report Problem", + "NAME": "H06207" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02940476343012, + 38.90126625818928, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H06208" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.094258520684, + 38.91929347910597, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H06209" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09428319469734, + 38.91812243001221, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H06210" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02602616166911, + 38.9626041252422, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H06211" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01565576904014, + 38.81413806822103, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 06/15/07

Report Problem", + "NAME": "H06212" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00581539077301, + 38.83013838688788, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H06213" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97233486109403, + 38.92153696207284, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/30/07

Report Problem", + "NAME": "H06214" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98696677769223, + 38.9257163885513, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/31/07

Report Problem", + "NAME": "H06215" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98064085409298, + 38.856315199295395, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 01/30/08

Report Problem", + "NAME": "H06216" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9839633760717, + 38.92590815338525, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/30/07

Report Problem", + "NAME": "H06217" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97476262795232, + 38.883891878424166, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 04/10/06

Report Problem", + "NAME": "H06218" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97325298149521, + 38.88669385200874, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 04/10/06

Report Problem", + "NAME": "H06219" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03259305120088, + 38.9422787396782, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/06/07

Report Problem", + "NAME": "H06220" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99507144966911, + 38.947387471208174, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H06221" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99572572291981, + 38.94883266792357, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/07/07

Report Problem", + "NAME": "H06222" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99649820472746, + 38.949493432630554, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H06223" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99687157170628, + 38.9555856730984, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H06224" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99700678466596, + 38.9487844684223, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H06225" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99976600062061, + 38.95802367481772, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H06226" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06368184951641, + 38.95697165243259, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/15/07

Report Problem", + "NAME": "H06227" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0306197951636, + 38.94226810293982, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 08/09/07

Report Problem", + "NAME": "H06228" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99505617968411, + 38.949166902620284, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H06229" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9423743879173, + 38.880398647126576, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H06230" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93935168822561, + 38.89562116997079, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Eddy

In Service


Last Inspection Date: 05/29/07

Report Problem", + "NAME": "H06231" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96427747305485, + 38.93221666532227, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/27/07

Report Problem", + "NAME": "H06232" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94240438029138, + 38.894600184110566, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 05/29/07

Report Problem", + "NAME": "H06233" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94239217796873, + 38.89529333600655, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/29/07

Report Problem", + "NAME": "H06234" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9743369601892, + 38.88605178866275, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 04/10/06

Report Problem", + "NAME": "H06235" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04901240427685, + 38.892242610504674, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/17/07

Report Problem", + "NAME": "H06236" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96796990930274, + 38.92563082237489, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 07/27/07

Report Problem", + "NAME": "H06237" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98433653142877, + 38.91245824011285, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US PIPE-MET 250 M94

In Service


Last Inspection Date: 12/17/07

Report Problem", + "NAME": "H06238" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92428916671932, + 38.882295453971835, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Eddy

In Service


Last Inspection Date: 06/08/07

Report Problem", + "NAME": "H06239" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97628602285232, + 38.921413876135965, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, KENNEDY-K81-A/D GUAR

In Service


Last Inspection Date: 08/02/07

Report Problem", + "NAME": "H06240" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97438081236051, + 38.8493411338829, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H06241" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97048134432265, + 38.87494720860754, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/30/07

Report Problem", + "NAME": "H06242" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97840582822322, + 38.84620436247066, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H06243" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02973124928668, + 38.918889394187204, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 08/22/07

Report Problem", + "NAME": "H06244" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99402330572703, + 38.958210245509385, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H06245" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02891101827966, + 38.89621451062037, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/01/07

Report Problem", + "NAME": "H06246" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9944033682652, + 38.959210784624524, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 07/27/07

Report Problem", + "NAME": "H06247" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99512996259504, + 38.95814962621087, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H06248" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04770241675219, + 38.89224740476481, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/17/07

Report Problem", + "NAME": "H06249" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93783640181822, + 38.897391706500734, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 06/05/07

Report Problem", + "NAME": "H06250" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03622686328043, + 38.93930640229491, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 05/11/07

Report Problem", + "NAME": "H06251" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01819944491953, + 38.920364269245525, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 09/22/06

Report Problem", + "NAME": "H06252" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02564083274441, + 38.95203371777778, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 08/06/07

Report Problem", + "NAME": "H06253" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99303127674953, + 38.836687176739176, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/23/07

Report Problem", + "NAME": "H06254" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00344501590587, + 38.88889845719042, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 06/27/07

Report Problem", + "NAME": "H06255" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01059001621702, + 38.83092087782062, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H06256" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95319244257158, + 38.871902817757814, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H06257" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95508242451481, + 38.869305031318554, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H06258" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98113301212183, + 38.85069970343017, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H06259" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9294998001535, + 38.90469723853815, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 10/16/07

Report Problem", + "NAME": "H06260" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94765038391822, + 38.864187581226396, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 01/07/08

Report Problem", + "NAME": "H06261" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97428118517571, + 38.884679610619116, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 04/10/06

Report Problem", + "NAME": "H06262" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92864490045704, + 38.90454047864754, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, CLOW - EDDY

In Service


Last Inspection Date: 08/28/07

Report Problem", + "NAME": "H06263" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92957791443911, + 38.905929376041406, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 05/28/07

Report Problem", + "NAME": "H06264" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93277449939283, + 38.90458369062743, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 10/31/07

Report Problem", + "NAME": "H06265" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00638355957874, + 38.9483255138871, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Eddy

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H06266" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09315298852276, + 38.91863010022487, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H06267" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94243997268384, + 38.88480422256583, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/08/07

Report Problem", + "NAME": "H06268" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97007377156672, + 38.85570729630734, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 08/02/07

Report Problem", + "NAME": "H06269" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9722663752238, + 38.86739029765275, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 08/17/07

Report Problem", + "NAME": "H06270" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00356677372471, + 38.88460711372881, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 10/24/06

Report Problem", + "NAME": "H06271" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97198984969701, + 38.903615619519506, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 02/29/08

Report Problem", + "NAME": "H06272" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03827222194552, + 38.935256926276104, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, KENNEDY-K81-A/D GUAR

In Service


Last Inspection Date: 05/28/07

Report Problem", + "NAME": "H06273" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07035115169673, + 38.927454508024304, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Eddy

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H06274" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03752924335878, + 38.91880127357638, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/18/07

Report Problem", + "NAME": "H06275" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99488631992267, + 38.884702013610074, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 08/09/07

Report Problem", + "NAME": "H06276" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06994602229719, + 38.93161702385608, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Kennedy

In Service


Last Inspection Date: 03/19/07

Report Problem", + "NAME": "H06277" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93912840534068, + 38.89472418970253, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 08/23/07

Report Problem", + "NAME": "H06278" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98254085343383, + 38.84801518308433, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H06279" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98692561990302, + 38.86815780822454, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H06280" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93937412872188, + 38.89841960325725, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/07/07

Report Problem", + "NAME": "H06282" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93499296813131, + 38.87638436050374, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, U.S. Pipe

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H06283" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08612362235728, + 38.92073224430046, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H06285" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.995857574278, + 38.960452624411296, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H06286" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93477383823897, + 38.874801588678174, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/08/07

Report Problem", + "NAME": "H06287" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99712425449216, + 38.94883649416743, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H06288" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00092780262983, + 38.96265213137823, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "null

In Service


Last Inspection Date: 01/10/08

Report Problem", + "NAME": "H06289" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96619350160297, + 38.87301705032258, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H06290" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09550369065241, + 38.942237450514476, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 01/08/08

Report Problem", + "NAME": "H06291" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98251585590089, + 38.9132035929625, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 07/16/07

Report Problem", + "NAME": "H06292" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00456077768119, + 38.960220385006615, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 02/12/08

Report Problem", + "NAME": "H06293" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96573375267165, + 38.87062868046402, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H06294" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09423838564805, + 38.942076895686746, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller, Super Centurion

In Service


Last Inspection Date: 06/05/07

Report Problem", + "NAME": "H06295" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99539474346301, + 38.95540096383598, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H06296" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9940175433231, + 38.830156908855116, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 08/10/07

Report Problem", + "NAME": "H06297" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99062657159399, + 38.94920961886874, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H06298" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99904156565336, + 38.947876927884714, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H06299" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99862706836099, + 38.944262314878884, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H06300" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08258487213782, + 38.94429687555969, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H06301" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93925477538414, + 38.899156019925314, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, CLOW - EDDY

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H06302" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0885594590181, + 38.94328195208756, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 11/28/07

Report Problem", + "NAME": "H06303" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01053249848282, + 38.91562512813556, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 06/01/07

Report Problem", + "NAME": "H03781" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03149860060336, + 38.952862722731545, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 07/16/07

Report Problem", + "NAME": "H03782" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02978952208173, + 38.98523809475416, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 10/03/07

Report Problem", + "NAME": "H03783" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00214318600925, + 38.892608703969614, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/27/07

Report Problem", + "NAME": "H03784" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9761558275395, + 38.93821864366102, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H03785" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02220534254324, + 38.8932120025607, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US PIPE-A P SMITH

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H03786" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02111058852749, + 38.89195656479307, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H03787" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00675234093197, + 38.90957841675109, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/12/07

Report Problem", + "NAME": "H03788" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08362394544916, + 38.95807643903714, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/15/07

Report Problem", + "NAME": "H03789" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94246674009094, + 38.893803478602955, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H03790" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01611616484657, + 38.90387376595241, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/12/07

Report Problem", + "NAME": "H03791" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06974704261751, + 38.94702002188165, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/05/07

Report Problem", + "NAME": "H03792" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04287549192607, + 38.94308301345826, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 05/14/07

Report Problem", + "NAME": "H03793" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02988559150447, + 38.949782298964884, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 09/10/07

Report Problem", + "NAME": "H03794" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02730913986697, + 38.949800585428775, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 08/13/07

Report Problem", + "NAME": "H03795" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03304522449442, + 38.949794447490724, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US PIPE-A P SMITH

In Service


Last Inspection Date: 02/29/08

Report Problem", + "NAME": "H03796" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96539942674859, + 38.929515807648194, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/27/07

Report Problem", + "NAME": "H03797" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96223814712577, + 38.863772192872155, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Kennedy

In Service


Last Inspection Date: 07/27/07

Report Problem", + "NAME": "H03798" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02965254445662, + 38.888705919570135, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H03800" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97243633867602, + 38.926373192424016, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 08/06/07

Report Problem", + "NAME": "H03801" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97207397152667, + 38.923561069928915, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/27/07

Report Problem", + "NAME": "H03802" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01428659595271, + 38.91623474670085, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/11/07

Report Problem", + "NAME": "H03803" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00579832133425, + 38.88415803742989, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/23/07

Report Problem", + "NAME": "H03804" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0150172330628, + 38.910422521203124, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/11/07

Report Problem", + "NAME": "H03805" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00571479737653, + 38.89109405137284, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/27/07

Report Problem", + "NAME": "H03806" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08614522626061, + 38.95215297766018, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, American Darling, B84B

In Service


Last Inspection Date: 11/28/07

Report Problem", + "NAME": "H03807" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01103439773551, + 38.90863036801653, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 09/13/07

Report Problem", + "NAME": "H03808" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0779268603956, + 38.947865048048385, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 12/11/07

Report Problem", + "NAME": "H03809" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03740162191232, + 38.933698483600004, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 08/03/07

Report Problem", + "NAME": "H03810" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.10274984945097, + 38.931402965317936, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 07/09/07

Report Problem", + "NAME": "H03811" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0299062475637, + 38.95191435380435, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 08/06/07

Report Problem", + "NAME": "H03812" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01661686463513, + 38.9096776570696, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/11/07

Report Problem", + "NAME": "H03813" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01782972779178, + 38.909592907958555, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/12/07

Report Problem", + "NAME": "H03814" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99926917484655, + 38.90911252690702, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP SMITH - O'BRIEN

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H03815" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04401075380775, + 38.941242810660405, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 05/14/07

Report Problem", + "NAME": "H04573" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98247566907497, + 38.86455527497024, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/05/07

Report Problem", + "NAME": "H04574" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97915190076975, + 38.92825000615917, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, CLOW - EDDY

In Service


Last Inspection Date: 07/31/07

Report Problem", + "NAME": "H04575" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00848617036823, + 38.947455883147875, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Clow Eddy

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H04576" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08865688967799, + 38.926663430018685, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US Pipe, AP Smith

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H04577" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03840922395163, + 38.90295310786932, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Clow Eddy

In Service


Last Inspection Date: 07/02/07

Report Problem", + "NAME": "H04578" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97231945655625, + 38.925513357060346, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 08/06/07

Report Problem", + "NAME": "H04579" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97319377949559, + 38.92563539836224, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 08/06/07

Report Problem", + "NAME": "H04580" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97514742034268, + 38.942727686927896, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 01/31/08

Report Problem", + "NAME": "H04581" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95870943408765, + 38.88206807182069, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 07/27/07

Report Problem", + "NAME": "H04582" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08618690709217, + 38.912793332138605, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H04583" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96519669330054, + 38.8764126446771, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Kennedy

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H04584" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02675807121229, + 38.98448400242735, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Kennedy

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H04585" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99626579690941, + 38.92570171447717, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/19/07

Report Problem", + "NAME": "H04586" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9751156022107, + 38.90090247904665, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 05/28/07

Report Problem", + "NAME": "H04587" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99626030430434, + 38.927302167533, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 01/04/08

Report Problem", + "NAME": "H04588" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9962482645452, + 38.92642002798468, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 01/04/08

Report Problem", + "NAME": "H04589" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9962433206097, + 38.92854280077351, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H04590" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0220432668738, + 38.89021227240611, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H04591" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93185908319334, + 38.87966959348911, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H04592" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.074497746621, + 38.948771462686175, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, American Darling

In Service


Last Inspection Date: 06/15/07

Report Problem", + "NAME": "H04593" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95448218729926, + 38.872255231877396, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H04594" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00334698427989, + 38.8473831294017, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H04595" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00214347673958, + 38.846654690195734, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H04596" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95750475810465, + 38.85932006460698, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 08/21/07

Report Problem", + "NAME": "H04597" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98458713840753, + 38.9236190345875, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 08/01/07

Report Problem", + "NAME": "H04598" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98323534717085, + 38.922626663047446, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 08/02/07

Report Problem", + "NAME": "H04599" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01623885023443, + 38.97141012872568, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H04600" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01978796767985, + 38.892988155693764, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, SUP CENT 250

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H04601" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02647210699517, + 38.93182104052187, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US PIPE-MET 250 M94

In Service


Last Inspection Date: 05/29/07

Report Problem", + "NAME": "H04602" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.1036934056998, + 38.93561914648893, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US Pipe, AP Smith

In Service


Last Inspection Date: 07/19/05

Report Problem", + "NAME": "H04603" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07574784782663, + 38.95474720801586, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, American Darling

In Service


Last Inspection Date: 06/18/07

Report Problem", + "NAME": "H04604" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00462868518309, + 38.961212875890844, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H04605" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93778117916608, + 38.87734643562837, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 07/12/07

Report Problem", + "NAME": "H04606" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01375841765004, + 38.86520188988051, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 07/05/07

Report Problem", + "NAME": "H05022" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0137522976389, + 38.866090948835264, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/05/07

Report Problem", + "NAME": "H05023" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98356280950657, + 38.92075862660752, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/30/07

Report Problem", + "NAME": "H05024" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0034120908475, + 38.904445930173985, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/12/07

Report Problem", + "NAME": "H05025" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0928556023799, + 38.93770057371047, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 01/09/08

Report Problem", + "NAME": "H05026" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01533724253665, + 38.88896453238649, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/27/07

Report Problem", + "NAME": "H05027" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05861441732024, + 38.9682167026899, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H05028" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06556747156624, + 38.97497536009743, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Kennedy, K81D

In Service


Last Inspection Date: 06/15/07

Report Problem", + "NAME": "H05029" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98606535106647, + 38.9279612915883, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 01/10/08

Report Problem", + "NAME": "H05030" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03162297791978, + 38.885040892859934, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H05031" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0323420800206, + 38.88373832686895, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H05032" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0321542074068, + 38.887229117817036, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H05033" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03354985746132, + 38.886070833104874, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H05034" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03140953148022, + 38.8858773877474, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H05035" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03551169828295, + 38.92332814579259, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 10/28/06

Report Problem", + "NAME": "H05036" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99046609877054, + 38.94795288820776, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H05037" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00594353330762, + 38.943659814858094, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H05038" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00161618402952, + 38.943020627720564, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H05039" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01238923987928, + 38.82705428501907, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H05040" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01182993991338, + 38.83022063892504, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 08/06/07

Report Problem", + "NAME": "H05041" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00884112192549, + 38.82694375854108, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 12/13/07

Report Problem", + "NAME": "H05042" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01298400896576, + 38.83068515480144, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 08/06/07

Report Problem", + "NAME": "H05043" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09808788545327, + 38.92801164701411, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H05044" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98863224263212, + 38.92218740927983, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 11/13/07

Report Problem", + "NAME": "H05045" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96052632262699, + 38.86557783185515, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 08/28/07

Report Problem", + "NAME": "H05046" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98921066185777, + 38.92091357011748, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, KENNEDY-K81-A/D GUAR

In Service


Last Inspection Date: 09/18/07

Report Problem", + "NAME": "H05048" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98215085199892, + 38.86957207251508, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 08/23/07

Report Problem", + "NAME": "H05049" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98522718555996, + 38.86891050142056, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 04/25/06

Report Problem", + "NAME": "H05050" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0499546101124, + 38.89358347676023, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 07/08/07

Report Problem", + "NAME": "H05051" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0497332798997, + 38.89744016121968, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 05/29/07

Report Problem", + "NAME": "H05052" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9864209424278, + 38.86889759315796, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 12/13/07

Report Problem", + "NAME": "H05053" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08101779113183, + 38.91924394523919, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, American Darling

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H05054" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97601310001137, + 38.87061481305235, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/27/07

Report Problem", + "NAME": "H05055" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98626301435364, + 38.93482434738986, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H05057" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99391835311438, + 38.92353555683909, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H05484" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97895384996356, + 38.8562319667927, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 02/04/08

Report Problem", + "NAME": "H05486" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06662986094076, + 38.93897199708627, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 01/26/07

Report Problem", + "NAME": "H05487" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08500477656486, + 38.94636157876048, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 12/11/07

Report Problem", + "NAME": "H05488" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09570676145275, + 38.916981727412946, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H05489" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93569810511126, + 38.90205788907862, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 05/12/07

Report Problem", + "NAME": "H05490" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03172492017777, + 38.92002771165384, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US Pipe

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H05491" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03175860433724, + 38.91912332954183, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 09/11/07

Report Problem", + "NAME": "H05492" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03174318824335, + 38.918167559090534, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 09/11/07

Report Problem", + "NAME": "H05493" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93593440790247, + 38.87345590750142, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/08/07

Report Problem", + "NAME": "H05494" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99273157234356, + 38.950348189420104, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H05495" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99161632767127, + 38.95018658740326, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H05496" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05781221320706, + 38.96775119564866, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H05497" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97100982029177, + 38.8450158706856, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H05498" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95646963919498, + 38.87472456184263, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H05499" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99414263553922, + 38.950813852234106, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H05500" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9384791468379, + 38.873314528676836, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 11/21/07

Report Problem", + "NAME": "H05501" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99404448807678, + 38.95228106051506, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H05502" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0457231216707, + 38.9408742818191, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 05/14/07

Report Problem", + "NAME": "H05503" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04657929348775, + 38.94069928202046, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 05/14/07

Report Problem", + "NAME": "H05504" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00709849638515, + 38.94292329601782, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H05505" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94576109396932, + 38.89259422153347, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/30/07

Report Problem", + "NAME": "H05506" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94558188396927, + 38.891913870936, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 08/23/07

Report Problem", + "NAME": "H05507" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92254397289948, + 38.88875466375766, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Kennedy

In Service


Last Inspection Date: 06/08/07

Report Problem", + "NAME": "H05508" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02826356909192, + 38.94075401556329, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/29/07

Report Problem", + "NAME": "H05509" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97538502013988, + 38.90551103866676, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, KENNEDY-K81-A/D GUAR

In Service


Last Inspection Date: 08/31/07

Report Problem", + "NAME": "H05510" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08693398269055, + 38.9388125000543, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H05511" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05325094029833, + 38.94873202157929, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H05512" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00633307475219, + 38.955560482437505, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H05513" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00719671740485, + 38.95525781782415, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H05514" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06103596832862, + 38.97783349362207, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US Pipe, AP Smith

In Service


Last Inspection Date: 06/13/07

Report Problem", + "NAME": "H05516" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92157449404803, + 38.88469210093975, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/08/07

Report Problem", + "NAME": "H05517" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.91953182301285, + 38.88511250215564, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/08/07

Report Problem", + "NAME": "H05518" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98966503465766, + 38.84440642080874, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Kennedy

In Service


Last Inspection Date: 07/02/07

Report Problem", + "NAME": "H05519" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97972079459664, + 38.932163036297226, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 09/25/07

Report Problem", + "NAME": "H03816" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07583127121498, + 38.95837914262287, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US Pipe, AP Smith

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H03817" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99837109929354, + 38.88214955232073, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 11/13/06

Report Problem", + "NAME": "H03818" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02003675885621, + 38.97483586626943, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 12/14/07

Report Problem", + "NAME": "H03819" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0091949277422, + 38.91029113423856, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 07/19/07

Report Problem", + "NAME": "H03820" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.019984888335, + 38.976081470009355, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H03821" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03283127617412, + 38.93309383213818, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 01/10/08

Report Problem", + "NAME": "H03822" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01836975361316, + 38.93061661674601, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 01/02/08

Report Problem", + "NAME": "H03823" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02592774909643, + 38.880608926839926, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/28/07

Report Problem", + "NAME": "H03824" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02482457111897, + 38.87955117612572, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H03825" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02458352960875, + 38.88045888551386, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H03826" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06137111328788, + 38.97298340375881, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 11/05/07

Report Problem", + "NAME": "H03827" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05998389447528, + 38.97390770177412, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H03828" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99104257244016, + 38.841369859504724, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H03829" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02968995198691, + 38.96228283779921, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H04106" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02662046021695, + 38.98075318200874, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H04107" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08394924988205, + 38.946342793546954, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 12/10/07

Report Problem", + "NAME": "H04108" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01583246259305, + 38.95321295549329, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H04109" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0361461916634, + 38.981397163890676, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H04110" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01152132910175, + 38.955324880489755, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H04111" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97843316131892, + 38.93970995865392, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 02/05/08

Report Problem", + "NAME": "H04112" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05994899536816, + 38.96250647173729, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H04113" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0280115590136, + 38.915452420212716, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H04114" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01041469430427, + 38.959483864368494, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H04115" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98606520204657, + 38.90653434741664, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 07/29/07

Report Problem", + "NAME": "H04116" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04370504333374, + 38.987865345200035, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H04117" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07970651270003, + 38.91924776570916, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, American Darling

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H04118" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92068931982136, + 38.89586850335346, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H04119" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07970415217241, + 38.92059208929606, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H04120" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07927422833039, + 38.94633428348339, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H04121" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97721557555866, + 38.938385229237035, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H04122" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97861261895501, + 38.87306796392008, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/27/07

Report Problem", + "NAME": "H04123" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93571146523806, + 38.87753775199594, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/08/07

Report Problem", + "NAME": "H04124" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06768601573768, + 38.94033119237723, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 03/07/07

Report Problem", + "NAME": "H04125" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03841979231008, + 38.98871415213123, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H04607" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00897091413475, + 38.95080860113652, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H04608" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95566920917643, + 38.8936459042767, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/01/07

Report Problem", + "NAME": "H04609" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03065180386986, + 38.90534913608487, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 05/30/07

Report Problem", + "NAME": "H04610" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00429123856172, + 38.836207020085304, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H04611" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98069374773931, + 38.935798078047505, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/17/07

Report Problem", + "NAME": "H04612" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00369633955648, + 38.966582870900986, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H04613" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08691668956509, + 38.922583751131285, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H04614" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00268272882413, + 38.96368794505766, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H04615" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96319606119214, + 38.87902539358634, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H04616" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04282914906338, + 38.93500849084072, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 09/20/07

Report Problem", + "NAME": "H04617" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09660518402474, + 38.939429722714515, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Clow Eddy, Eddy

In Service


Last Inspection Date: 06/05/07

Report Problem", + "NAME": "H04618" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92651601450959, + 38.88274017910485, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 10/26/07

Report Problem", + "NAME": "H04619" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98902701740278, + 38.946346369571366, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H04620" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96752281405584, + 38.8767567778405, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/27/07

Report Problem", + "NAME": "H04621" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95022879417982, + 38.89097905448548, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 07/10/07

Report Problem", + "NAME": "H04622" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94830174370891, + 38.891979894580444, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 05/30/07

Report Problem", + "NAME": "H04623" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98812795640582, + 38.939028588822886, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H04624" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.10462350669324, + 38.93353791221197, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H04625" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.10449779057846, + 38.93469499767204, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US Pipe, AP Smith

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H04626" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03139073260229, + 38.968320324785346, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H04627" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03330130136223, + 38.96889766601351, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H04628" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09758800028382, + 38.91667825707182, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 02/20/08

Report Problem", + "NAME": "H04629" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97609021828806, + 38.942729442004406, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H04630" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94707593891499, + 38.86494256079356, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H04631" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97719521721187, + 38.94191957448436, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H04632" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97736728403088, + 38.94275638779594, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H04633" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02127003650206, + 38.9250013426471, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 09/22/06

Report Problem", + "NAME": "H04634" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0213887826405, + 38.92584291396384, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/11/07

Report Problem", + "NAME": "H04635" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0291020981162, + 38.91028352972541, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 05/12/07

Report Problem", + "NAME": "H04636" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00210563764855, + 38.9076732829993, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 06/12/07

Report Problem", + "NAME": "H04637" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08760381600996, + 38.91255918756391, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H04638" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99567095227769, + 38.94061964263085, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H04639" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.10586745140442, + 38.93273603444349, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H04640" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01143281127955, + 38.87430176593557, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP SMITH - O'BRIEN

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H05058" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01133249622085, + 38.87329667250693, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, KENNEDY-K81-A/D GUAR

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H05059" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0107995114957, + 38.81858688196527, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 12/05/05

Report Problem", + "NAME": "H05060" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01077875586667, + 38.81794002988944, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H05061" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09842693223656, + 38.92688925880241, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H05062" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.963026527041, + 38.86144021089745, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H05063" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98480458702745, + 38.92004243464827, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/30/07

Report Problem", + "NAME": "H05064" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97979974702947, + 38.89468716253029, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 05/29/07

Report Problem", + "NAME": "H05065" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00469927325149, + 38.90378396981618, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/12/07

Report Problem", + "NAME": "H05066" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01893886607361, + 38.9626540244274, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H05067" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02104207062123, + 38.95432370915695, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 08/02/07

Report Problem", + "NAME": "H05068" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09251123400333, + 38.941344793063415, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 01/10/08

Report Problem", + "NAME": "H05069" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9856761222235, + 38.94225555225456, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 03/04/08

Report Problem", + "NAME": "H05070" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92562213261203, + 38.887688045282744, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 02/05/08

Report Problem", + "NAME": "H05071" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00750636305683, + 38.8302613460032, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H05072" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00037855145172, + 38.844638493800275, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 09/26/07

Report Problem", + "NAME": "H05074" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99917196697692, + 38.84466602128081, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H05075" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00154609699699, + 38.84464487116169, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H05076" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00787209540599, + 38.95353583511847, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H05077" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97995455193995, + 38.86956450942505, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H05078" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9576014048161, + 38.88683738905643, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H05079" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95913925166877, + 38.88682973953758, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 05/30/07

Report Problem", + "NAME": "H05080" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00537921060618, + 38.84680100912937, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H05081" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00799973529547, + 38.825209139206294, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 07/14/07

Report Problem", + "NAME": "H05082" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96196872270433, + 38.93118879172168, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 07/30/07

Report Problem", + "NAME": "H05083" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95767189735734, + 38.884352064981464, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H05084" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00826167700262, + 38.820695830109045, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 07/12/07

Report Problem", + "NAME": "H05085" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94894867187764, + 38.86454140307832, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 12/20/07

Report Problem", + "NAME": "H05086" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01064260327846, + 38.819177330202, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H05087" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00323280558295, + 38.84621122460502, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H05088" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98667557492709, + 38.94175972814463, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H05089" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98023005942686, + 38.94290812913477, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Eddy

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H05090" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0001940108123, + 38.860781675858895, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 10/04/07

Report Problem", + "NAME": "H05092" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99958320474774, + 38.860402600966225, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/10/07

Report Problem", + "NAME": "H05093" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96306732961972, + 38.86279209913632, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H05520" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93401829364757, + 38.873929042896556, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/08/07

Report Problem", + "NAME": "H05521" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00800020844989, + 38.95771740875306, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H05522" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0424771027105, + 38.90827484198636, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/11/07

Report Problem", + "NAME": "H05523" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04322636584824, + 38.91028066242064, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/13/07

Report Problem", + "NAME": "H05524" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04240195724333, + 38.907292491047265, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/11/07

Report Problem", + "NAME": "H05525" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04469769490164, + 38.91266065297972, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 07/18/07

Report Problem", + "NAME": "H05526" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04451561389328, + 38.911836639587335, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 08/25/07

Report Problem", + "NAME": "H05527" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96160296571458, + 38.855463680111455, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 12/17/07

Report Problem", + "NAME": "H05528" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01024481073367, + 38.96814746468498, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H05529" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00896588098301, + 38.968301061173875, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H05530" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96627164321573, + 38.874653836202945, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H05531" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0091197293331, + 38.96655373830583, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H05532" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01145911397474, + 38.96827144053048, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 11/23/07

Report Problem", + "NAME": "H05533" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01024054727272, + 38.96738652977421, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 09/10/07

Report Problem", + "NAME": "H05534" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9614409126438, + 38.85718874049464, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 01/17/08

Report Problem", + "NAME": "H05535" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97955204381321, + 38.85713757304962, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 01/15/08

Report Problem", + "NAME": "H05536" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97911540950061, + 38.85718106951473, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US PIPE-MET 250 M94

In Service


Last Inspection Date: 02/05/08

Report Problem", + "NAME": "H05537" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97808529519855, + 38.85593256506634, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 07/09/07

Report Problem", + "NAME": "H05538" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97808407054877, + 38.85718197049466, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 01/30/08

Report Problem", + "NAME": "H05539" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00621642346994, + 38.96827299882037, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H05541" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95840951134817, + 38.87186517340588, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H05542" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95790517974162, + 38.87092592959299, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H05543" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03464866168709, + 38.91714202713414, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/13/07

Report Problem", + "NAME": "H05544" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0346678328603, + 38.914926052631984, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/13/07

Report Problem", + "NAME": "H05545" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03469011507521, + 38.91865831492271, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H05546" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03466536158568, + 38.91423042971323, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 09/12/07

Report Problem", + "NAME": "H05547" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92607490962675, + 38.90363582020827, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 05/28/07

Report Problem", + "NAME": "H05548" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93264106063309, + 38.90304841896356, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 05/24/07

Report Problem", + "NAME": "H05549" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93362120518705, + 38.902963301490914, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US PIPE-MET 250 M94

In Service


Last Inspection Date: 05/28/07

Report Problem", + "NAME": "H05550" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93064480504816, + 38.9032437772404, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 05/24/07

Report Problem", + "NAME": "H05551" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92955130241519, + 38.903609186507865, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 05/24/07

Report Problem", + "NAME": "H05552" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93925617891294, + 38.90265226387361, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 05/12/07

Report Problem", + "NAME": "H05553" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93459673696846, + 38.90278903552854, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 11/06/07

Report Problem", + "NAME": "H05554" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03444388068098, + 38.90472147679435, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US Pipe

In Service


Last Inspection Date: 07/27/07

Report Problem", + "NAME": "H04126" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03444419634658, + 38.90554230861681, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/18/07

Report Problem", + "NAME": "H04127" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05965348159785, + 38.964043007414226, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H04128" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97826183480795, + 38.94191356198563, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H04129" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06124494758235, + 38.975321061401495, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US Pipe, AP Smith

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H04130" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06039680541126, + 38.975982373304525, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US Pipe, AP Smith

In Service


Last Inspection Date: 11/05/07

Report Problem", + "NAME": "H04131" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01462480695498, + 38.953237083802165, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H04132" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07784865034364, + 38.921501847940014, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H04133" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9738844456461, + 38.89520050273513, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/15/06

Report Problem", + "NAME": "H04134" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09912209734335, + 38.91800002002581, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H04135" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07410363446063, + 38.91816021090756, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H04136" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0133816496918, + 38.95214409718589, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H04137" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97911517308313, + 38.86409238340526, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/05/07

Report Problem", + "NAME": "H04138" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0965817045513, + 38.9463557131952, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Clow Eddy, Eddy

In Service


Last Inspection Date: 06/04/07

Report Problem", + "NAME": "H04139" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01162206136723, + 38.95441416186452, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Am. Darling

In Service


Last Inspection Date: 09/12/07

Report Problem", + "NAME": "H04140" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07278076615214, + 38.951453353418316, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/18/07

Report Problem", + "NAME": "H04141" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01216566909041, + 38.952363608455315, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H04142" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01715222858077, + 38.96122928455193, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/05/07

Report Problem", + "NAME": "H04143" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96827071763546, + 38.93403079284673, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 08/08/07

Report Problem", + "NAME": "H04144" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9761338999655, + 38.94080510023721, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H04145" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0114410067199, + 38.95222911607406, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H04146" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01342776104484, + 38.9531823490413, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H04147" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09077952107053, + 38.9479546939858, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 11/13/07

Report Problem", + "NAME": "H04148" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0924601142271, + 38.947857483699394, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 06/04/07

Report Problem", + "NAME": "H04149" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93584317933272, + 38.87483335010564, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H04150" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9312273930607, + 38.89011876072355, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H04151" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08395563715916, + 38.94485097178136, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 12/05/07

Report Problem", + "NAME": "H04152" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.023881629564, + 38.897531732988455, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 09/04/07

Report Problem", + "NAME": "H04153" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0863855825512, + 38.945605248842256, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H04154" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05069929959917, + 38.89363286410995, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/29/07

Report Problem", + "NAME": "H04155" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07870592821183, + 38.92161838194337, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H04156" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93664978072373, + 38.87759329704105, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H04157" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99793004310953, + 38.84460272154863, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 07/02/07

Report Problem", + "NAME": "H04158" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96825037280703, + 38.93498776623604, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 01/09/08

Report Problem", + "NAME": "H04159" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07420000848023, + 38.95152788755235, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/18/07

Report Problem", + "NAME": "H04641" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99468330923014, + 38.9047647096094, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H04642" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99487608617089, + 38.90458818157047, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 07/09/07

Report Problem", + "NAME": "H04643" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99630852290727, + 38.905455577598765, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 07/10/07

Report Problem", + "NAME": "H04644" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96905745347226, + 38.93772639733008, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H04645" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03586691548374, + 38.93666840682188, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 10/26/07

Report Problem", + "NAME": "H04646" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06282027044647, + 38.97360980561795, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 03/12/08

Report Problem", + "NAME": "H04647" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97980878550244, + 38.89818613894851, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 05/29/07

Report Problem", + "NAME": "H04648" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97949250667071, + 38.89930675095255, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 08/30/07

Report Problem", + "NAME": "H04649" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05904905542043, + 38.90273546012486, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 02/29/08

Report Problem", + "NAME": "H04650" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03325891291323, + 38.90729610909179, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 05/18/07

Report Problem", + "NAME": "H04651" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09242135373977, + 38.945588732806186, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 12/17/07

Report Problem", + "NAME": "H04652" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98666491183164, + 38.904845937446964, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 12/21/07

Report Problem", + "NAME": "H04653" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09813772020284, + 38.91702730210631, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H04654" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9800504526319, + 38.89725149981552, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 05/29/07

Report Problem", + "NAME": "H04655" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01939644026498, + 38.94433388803896, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 08/22/07

Report Problem", + "NAME": "H04656" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06917715330414, + 38.94225542747022, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, American Darling, B84B

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H04657" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0309787170839, + 38.90977135535689, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 08/13/07

Report Problem", + "NAME": "H04658" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0057168927409, + 38.909475245400714, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H04659" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01088024513119, + 38.96008872644179, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 09/06/07

Report Problem", + "NAME": "H04660" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01139043684941, + 38.9594910700732, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H04661" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02949613735709, + 38.96982295120882, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H04662" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9938803508378, + 38.90423548372707, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H04663" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07070448196514, + 38.927447853852385, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Eddy

In Service


Last Inspection Date: 07/23/07

Report Problem", + "NAME": "H04664" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98596086268006, + 38.9235782648783, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 08/06/07

Report Problem", + "NAME": "H04665" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08626376844042, + 38.950439750351464, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 12/05/07

Report Problem", + "NAME": "H04666" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02601997387785, + 38.96148905798413, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H04667" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99354740559181, + 38.94058844807709, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H04668" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01573418003876, + 38.948036139246746, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H04669" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97223546063009, + 38.93956825659346, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 08/13/07

Report Problem", + "NAME": "H04670" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08636939461488, + 38.94714479467891, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US Pipe, AP Smith

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H04671" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98198782552936, + 38.90562092893928, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 08/13/07

Report Problem", + "NAME": "H04672" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.962745100922, + 38.877293368879705, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H04673" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96596344337678, + 38.92816919467666, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/27/07

Report Problem", + "NAME": "H04674" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00793752908118, + 38.96407328653882, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H05094" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05706186163043, + 38.931310580293584, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 01/19/07

Report Problem", + "NAME": "H05095" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01115767264281, + 38.82048398900144, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 08/02/07

Report Problem", + "NAME": "H05096" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00080082980088, + 38.931393726925926, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H05097" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00140140107794, + 38.86035805567028, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H05099" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00579112172366, + 38.8766800024697, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 10/31/07

Report Problem", + "NAME": "H05100" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00568714004498, + 38.878455507983176, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 08/06/07

Report Problem", + "NAME": "H05101" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99118158164589, + 38.86075710134952, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H05103" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97124438330663, + 38.895875654275656, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 04/07/06

Report Problem", + "NAME": "H05104" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96734037632208, + 38.85526601549889, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/06/07

Report Problem", + "NAME": "H05105" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03660727158277, + 38.941910031317505, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, KENNEDY-K81-A/D GUAR

In Service


Last Inspection Date: 06/04/07

Report Problem", + "NAME": "H05106" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95796514889975, + 38.89134906879623, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 12/11/07

Report Problem", + "NAME": "H05107" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96014188545806, + 38.891340382047275, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 12/11/07

Report Problem", + "NAME": "H05108" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00550992983898, + 38.847927517413034, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H05109" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0027490084969, + 38.847984305182536, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/30/07

Report Problem", + "NAME": "H05110" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00459417437982, + 38.84897402224414, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H05111" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01890025915684, + 38.93272030496153, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/23/07

Report Problem", + "NAME": "H05112" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00122265650533, + 38.84582209829062, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/30/07

Report Problem", + "NAME": "H05113" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93426325574934, + 38.87934935379497, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H05114" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93578712039782, + 38.879616480677775, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H05115" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93547493419248, + 38.88055920802927, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H05116" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99112066636087, + 38.86343684875891, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/08/07

Report Problem", + "NAME": "H05117" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07072592528898, + 38.94117230757642, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 03/07/07

Report Problem", + "NAME": "H05118" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.10008038390623, + 38.934232242301135, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H05119" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00543642575657, + 38.944333587181326, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H05120" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97205519821854, + 38.90557859098065, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, KENNEDY-K81-A/D GUAR

In Service


Last Inspection Date: 09/13/07

Report Problem", + "NAME": "H05121" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97400418415732, + 38.90556770838965, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 05/10/07

Report Problem", + "NAME": "H05122" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97029875684811, + 38.89684560955335, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 04/07/06

Report Problem", + "NAME": "H05123" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99494100183634, + 38.855549825340795, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/05/07

Report Problem", + "NAME": "H05124" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96458497288435, + 38.857082157904834, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Kennedy

In Service


Last Inspection Date: 07/06/07

Report Problem", + "NAME": "H05125" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96537773988202, + 38.8551334674857, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/06/07

Report Problem", + "NAME": "H05126" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96275655477618, + 38.85631954815287, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/06/07

Report Problem", + "NAME": "H05127" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96404030432578, + 38.85573465505948, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/06/07

Report Problem", + "NAME": "H05129" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96238711494429, + 38.855013378809616, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/17/07

Report Problem", + "NAME": "H05130" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9319147355934, + 38.90305483527768, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, CLOW - EDDY

In Service


Last Inspection Date: 05/24/07

Report Problem", + "NAME": "H05555" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03253594381103, + 38.986995981806, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/05/07

Report Problem", + "NAME": "H05556" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03185964113344, + 38.98760103308529, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/05/07

Report Problem", + "NAME": "H05557" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04689553390442, + 38.93270750655063, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US PIPE-A P SMITH

In Service


Last Inspection Date: 01/01/06

Report Problem", + "NAME": "H05558" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05241885645074, + 38.93411307681662, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 12/27/06

Report Problem", + "NAME": "H05559" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00616467837328, + 38.824165925353434, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H05560" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94679255764767, + 38.869914120035084, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/27/07

Report Problem", + "NAME": "H05561" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01020743214772, + 38.823673355724, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/15/07

Report Problem", + "NAME": "H05562" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01161555115145, + 38.823558384037995, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, SUP CENT 250

In Service


Last Inspection Date: 07/10/07

Report Problem", + "NAME": "H05563" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94043824416006, + 38.87132346189441, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US PIPE-MET 250 M94

In Service


Last Inspection Date: 07/27/07

Report Problem", + "NAME": "H05564" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94936568570252, + 38.86739391851876, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H05565" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93756086953839, + 38.872467674792226, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 07/27/07

Report Problem", + "NAME": "H05566" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00770574768796, + 38.82378353218324, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/15/07

Report Problem", + "NAME": "H05567" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00873811461366, + 38.82361186604235, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/15/07

Report Problem", + "NAME": "H05568" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93807556038735, + 38.872089262565886, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US PIPE-A P SMITH

In Service


Last Inspection Date: 07/27/07

Report Problem", + "NAME": "H05569" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01054065974114, + 38.86739317842726, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 07/06/07

Report Problem", + "NAME": "H05570" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98650805910393, + 38.84524003724452, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/02/07

Report Problem", + "NAME": "H05571" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98289487281518, + 38.84636191650105, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H05574" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99653065523252, + 38.94998428548498, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H05575" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99798412214963, + 38.94998705809843, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H05576" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98489755271059, + 38.8775732527253, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 05/19/06

Report Problem", + "NAME": "H05577" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96657403496258, + 38.872071872173485, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H05578" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00285028184724, + 38.96115491960757, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/31/07

Report Problem", + "NAME": "H05579" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96759612651366, + 38.87466361599137, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/30/07

Report Problem", + "NAME": "H05580" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96623290382512, + 38.87469275930876, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, American Darling

In Service


Last Inspection Date: 07/30/07

Report Problem", + "NAME": "H05581" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00261994094924, + 38.8316679052314, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H05582" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95932028643148, + 38.89482390591427, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/01/07

Report Problem", + "NAME": "H05583" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02542357594496, + 38.98347566844439, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H05584" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0254029306618, + 38.982771383640156, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H05585" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02640616073933, + 38.98268025052983, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H05586" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08500227559601, + 38.94714712095462, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 12/10/07

Report Problem", + "NAME": "H05587" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08362220401071, + 38.94715135026438, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 12/13/07

Report Problem", + "NAME": "H05588" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02440190090958, + 38.98258836965726, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 08/06/07

Report Problem", + "NAME": "H05589" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02456104844556, + 38.98151992575786, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H05590" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06777648822873, + 38.905320327622675, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 10/31/07

Report Problem", + "NAME": "H04160" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04300366269197, + 38.98494873782209, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H04161" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0512314150634, + 38.939490719849296, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H04162" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01468092237296, + 38.95228681242221, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H04163" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05798077538691, + 38.93095781308936, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, U.S. Pipe

In Service


Last Inspection Date: 01/19/07

Report Problem", + "NAME": "H04164" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97928430455137, + 38.9397357051547, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 08/29/07

Report Problem", + "NAME": "H04165" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09876483038914, + 38.94134825244927, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H04166" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09692235319008, + 38.94119670771613, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 08/02/07

Report Problem", + "NAME": "H04167" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05863785500263, + 38.9588363347859, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/15/07

Report Problem", + "NAME": "H04168" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0575501814373, + 38.958462374780034, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/15/07

Report Problem", + "NAME": "H04169" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0751152219859, + 38.919940818204296, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H04170" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09012352660744, + 38.95590037430198, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/05/07

Report Problem", + "NAME": "H04171" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9372235000234, + 38.87853321850827, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H04172" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09449979552335, + 38.947953601576536, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 11/13/07

Report Problem", + "NAME": "H04173" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0289106558102, + 38.88744086085086, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H04174" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03163435944765, + 38.88744510954168, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H04175" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.030350692949, + 38.88745095426933, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H04176" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01898416963326, + 38.914889764368034, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/30/07

Report Problem", + "NAME": "H04177" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00537196189624, + 38.84079241280309, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H04178" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01501065894607, + 38.9673886361425, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, KENNEDY-K81-A/D GUAR

In Service


Last Inspection Date: 07/19/07

Report Problem", + "NAME": "H04179" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98316393234396, + 38.905425073642945, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 08/13/07

Report Problem", + "NAME": "H04180" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0649515439531, + 38.976978665773245, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, USP

In Service


Last Inspection Date: 06/13/07

Report Problem", + "NAME": "H04181" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97588851739661, + 38.86959941394611, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US PIPE-MET 250 M94

In Service


Last Inspection Date: 08/15/07

Report Problem", + "NAME": "H04182" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9828103479725, + 38.915086027457555, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/02/07

Report Problem", + "NAME": "H04183" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93618149557425, + 38.87850321432359, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H04184" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02990746133075, + 38.962781254029906, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H04185" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03216845575406, + 38.96244307860228, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H04186" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03110172300877, + 38.96295824288548, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H04187" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98208432681712, + 38.89344620013549, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 04/02/07

Report Problem", + "NAME": "H04188" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08503009544293, + 38.95708539854154, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/05/07

Report Problem", + "NAME": "H04189" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03113282203469, + 38.88768421857263, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H04190" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0297787030391, + 38.88769007576988, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H04191" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00798063343545, + 38.88315079834074, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 11/17/07

Report Problem", + "NAME": "H04192" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98069360191194, + 38.87069748600254, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 01/09/08

Report Problem", + "NAME": "H04193" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02989833110495, + 38.92679666687976, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, KENNEDY-K81-A/D GUAR

In Service


Last Inspection Date: 09/25/07

Report Problem", + "NAME": "H04675" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99812129879997, + 38.92420748637869, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/30/07

Report Problem", + "NAME": "H04676" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05527318635855, + 38.976562226456686, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Clow

In Service


Last Inspection Date: 06/13/07

Report Problem", + "NAME": "H04677" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98630702966962, + 38.92009875123552, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, KENNEDY-K81-A/D GUAR

In Service


Last Inspection Date: 07/31/07

Report Problem", + "NAME": "H04678" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98569287661115, + 38.92090340033059, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 09/18/07

Report Problem", + "NAME": "H04679" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06309926998024, + 38.97162257362873, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 07/06/07

Report Problem", + "NAME": "H04680" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97730234557034, + 38.865136399541704, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 08/02/07

Report Problem", + "NAME": "H04681" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08118012218975, + 38.94324616884795, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H04682" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02719994531716, + 38.968686136398794, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H04683" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03523902646883, + 38.949794716634905, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - JUMBO

In Service


Last Inspection Date: 02/29/08

Report Problem", + "NAME": "H04684" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99032450482852, + 38.94720062224963, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H04685" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98772160763963, + 38.92114451368463, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 07/31/07

Report Problem", + "NAME": "H04686" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96687002701309, + 38.875558297545695, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/30/07

Report Problem", + "NAME": "H04687" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9808680110604, + 38.87941724764165, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 05/17/06

Report Problem", + "NAME": "H04688" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96818994498747, + 38.87623023152657, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H04689" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08065713955396, + 38.907550882824715, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H04690" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09930180858414, + 38.931646945111886, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H04691" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07589448492523, + 38.928894856373844, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H04692" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07575830384523, + 38.916280434923756, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP SMITH - O'BRIEN

In Service


Last Inspection Date: 01/08/08

Report Problem", + "NAME": "H04693" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0331880811468, + 38.96315717507701, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H04694" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02987274199552, + 38.936270241141855, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, CLOW - EDDY

In Service


Last Inspection Date: 05/20/07

Report Problem", + "NAME": "H04695" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02988145523875, + 38.93452092612295, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 05/13/07

Report Problem", + "NAME": "H04696" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02989826064129, + 38.9323771798217, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, CLOW - EDDY

In Service


Last Inspection Date: 09/12/07

Report Problem", + "NAME": "H04697" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03333335447687, + 38.962205195674784, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H04698" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93299608995788, + 38.892710714341405, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H04699" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93301445960975, + 38.893280144078766, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H04700" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0199662573189, + 38.876432897439585, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H04701" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98064403346592, + 38.936998047201634, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H04702" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93299950532439, + 38.89390997378927, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H04703" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93283044578831, + 38.89465833712803, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H04704" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98075349844044, + 38.93821621211042, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H04705" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.10406574419125, + 38.93425941711597, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US Pipe, AP Smith

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H04706" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03452426481338, + 38.90103818916806, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/01/07

Report Problem", + "NAME": "H04707" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9333621478716, + 38.89609807080331, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, U.S. Pipe

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H04708" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96512410125285, + 38.85611041006233, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/06/07

Report Problem", + "NAME": "H05131" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96364460045582, + 38.85413268968141, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/06/07

Report Problem", + "NAME": "H05132" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96251722355318, + 38.85360396168428, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/06/07

Report Problem", + "NAME": "H05133" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9815354452883, + 38.90602699974392, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/01/07

Report Problem", + "NAME": "H05134" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00407436409346, + 38.943917171576096, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H05135" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0088687767568, + 38.827717439751744, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/15/07

Report Problem", + "NAME": "H05137" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01068152153015, + 38.82785752273561, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 10/03/07

Report Problem", + "NAME": "H05138" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01239308754744, + 38.82785739857395, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H05139" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05714803537302, + 38.935408262936825, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 03/05/07

Report Problem", + "NAME": "H05140" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03371761321357, + 38.901939287456976, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 05/29/07

Report Problem", + "NAME": "H05141" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97633159818267, + 38.904312637153666, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 08/31/07

Report Problem", + "NAME": "H05142" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95224654475162, + 38.90080203386351, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP SMITH - O'BRIEN

In Service


Last Inspection Date: 12/18/07

Report Problem", + "NAME": "H05143" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94819158266684, + 38.9000889428839, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/01/07

Report Problem", + "NAME": "H05144" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95210412245261, + 38.89944768581777, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/18/07

Report Problem", + "NAME": "H05145" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95150198813921, + 38.89897043567499, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H05146" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95071680042268, + 38.898356214229885, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 01/14/08

Report Problem", + "NAME": "H05147" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95291451015491, + 38.90008174437581, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 01/14/08

Report Problem", + "NAME": "H05148" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94990694953434, + 38.89890131708448, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/01/07

Report Problem", + "NAME": "H05149" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01371069294511, + 38.907136924276266, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/12/07

Report Problem", + "NAME": "H05150" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95963606137366, + 38.88434117550581, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H05151" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99825647893331, + 38.85814210538549, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/04/07

Report Problem", + "NAME": "H05152" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02512393129236, + 38.89058524570999, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H05153" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98104509333896, + 38.906783136022824, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 06/01/07

Report Problem", + "NAME": "H05154" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01775104137337, + 38.82811897913732, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H05155" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9680406117287, + 38.85616116054887, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/06/07

Report Problem", + "NAME": "H05156" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92752935991726, + 38.90188639872883, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 06/18/07

Report Problem", + "NAME": "H05157" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00199254427396, + 38.82632557292641, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 10/01/07

Report Problem", + "NAME": "H05158" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9986751048196, + 38.86153416877256, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/04/07

Report Problem", + "NAME": "H05159" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03418298666743, + 38.91924125815276, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H05160" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99833992814591, + 38.85965066603583, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/04/07

Report Problem", + "NAME": "H05161" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99921147541397, + 38.96275150242715, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H05162" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99994562487444, + 38.96364876290705, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H05163" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96883425006706, + 38.87079106080068, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H05164" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01589818458916, + 38.86614307831664, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H05166" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05708556800568, + 38.98054136982565, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/13/07

Report Problem", + "NAME": "H05591" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93971156487623, + 38.87087736207481, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 07/27/07

Report Problem", + "NAME": "H05592" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05618503406097, + 38.977034759957895, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/13/07

Report Problem", + "NAME": "H05593" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97628607751274, + 38.91497274077745, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/31/07

Report Problem", + "NAME": "H05594" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96048624294018, + 38.874721503771006, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H05595" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00219860309011, + 38.900310079572584, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/08/07

Report Problem", + "NAME": "H05596" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94911346950808, + 38.879081426798805, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 09/07/07

Report Problem", + "NAME": "H05597" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95107549047403, + 38.87600265517927, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H05598" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98845195982535, + 38.90029425132657, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 02/29/08

Report Problem", + "NAME": "H05599" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9996735259519, + 38.900303938088115, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 08/24/07

Report Problem", + "NAME": "H05600" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99635052167638, + 38.90030508866122, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 08/30/07

Report Problem", + "NAME": "H05601" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99720495639907, + 38.90011297295777, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 09/24/07

Report Problem", + "NAME": "H05602" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9927105245132, + 38.90031304378298, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 08/23/07

Report Problem", + "NAME": "H05603" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03474882473755, + 38.9890721963417, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 09/19/07

Report Problem", + "NAME": "H05604" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99255911239196, + 38.948058689247034, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H05605" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96298741200495, + 38.86919054202265, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/30/07

Report Problem", + "NAME": "H05606" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03471160689664, + 38.91265962322301, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/28/07

Report Problem", + "NAME": "H05607" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0346970408595, + 38.91625531367251, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 11/02/07

Report Problem", + "NAME": "H05608" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03471321035195, + 38.90875230859182, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Kennedy

In Service


Last Inspection Date: 05/30/07

Report Problem", + "NAME": "H05609" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03444403905178, + 38.913334138646334, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/13/07

Report Problem", + "NAME": "H05610" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99324805600712, + 38.91756487445713, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 07/31/07

Report Problem", + "NAME": "H05611" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00664287998222, + 38.96729266235581, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H05612" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0074549398061, + 38.966604005192, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H05613" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00488726270738, + 38.967399307423335, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H05614" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.10012517921214, + 38.93033792938389, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H05615" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04590469946832, + 38.91466072053511, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 02/04/08

Report Problem", + "NAME": "H05616" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98685992576867, + 38.951714087742744, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Clow Eddy

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H05617" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98686241843231, + 38.95039542104574, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H05618" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98686494046967, + 38.94954291426279, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H05619" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00936030198125, + 38.9710107447314, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H05620" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00729484274315, + 38.96936912233537, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H05621" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04611798105695, + 38.91394860864541, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/27/07

Report Problem", + "NAME": "H05622" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00841420127617, + 38.97025479127584, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H05623" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9447146996884, + 38.90459361734108, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 07/12/07

Report Problem", + "NAME": "H05624" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98193228117958, + 38.91352929969213, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/29/07

Report Problem", + "NAME": "H05625" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02321859114396, + 38.95928284122714, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 02/11/08

Report Problem", + "NAME": "H04228" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97225039976014, + 38.91265508812598, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H04229" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9630260630159, + 38.86818553118676, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H04230" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08849188887804, + 38.953357982336556, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 11/14/07

Report Problem", + "NAME": "H04231" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08062217065265, + 38.92248373061374, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, American Darling

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H04232" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09051348448547, + 38.95042123226649, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 11/06/07

Report Problem", + "NAME": "H04233" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93181748004211, + 38.89557642372513, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H04234" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0332685364397, + 38.95519343707847, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 11/28/07

Report Problem", + "NAME": "H04235" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99380791140494, + 38.93933695820181, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H04236" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99438984117685, + 38.938164143748, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H04237" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0843160409656, + 38.908053406809444, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H04238" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08879115252536, + 38.94483593138371, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 12/10/07

Report Problem", + "NAME": "H04239" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02822301624234, + 38.91404340270892, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/13/07

Report Problem", + "NAME": "H04240" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03361960626368, + 38.97076466773854, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H04241" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9848039514883, + 38.91474516712138, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 09/08/07

Report Problem", + "NAME": "H04242" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99257605546647, + 38.895473842403405, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/30/07

Report Problem", + "NAME": "H04243" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9821151010816, + 38.870698397005036, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/05/07

Report Problem", + "NAME": "H04244" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98710591197033, + 38.92784057352039, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/31/07

Report Problem", + "NAME": "H04245" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97733590183157, + 38.89484559105761, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Kennedy

In Service


Last Inspection Date: 05/29/07

Report Problem", + "NAME": "H04246" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97908384523127, + 38.894833116220404, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, U.S. Pipe

In Service


Last Inspection Date: 05/29/07

Report Problem", + "NAME": "H04247" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02639767901154, + 38.981095067400275, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H04248" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0288833903384, + 38.937763678146176, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP SMITH - O'BRIEN

In Service


Last Inspection Date: 09/25/07

Report Problem", + "NAME": "H04249" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98083288837465, + 38.921401936560116, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 08/02/07

Report Problem", + "NAME": "H04250" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98067174174777, + 38.92239272642099, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 08/06/07

Report Problem", + "NAME": "H04251" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98542161778325, + 38.906978389429945, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Am. Darling

In Service


Last Inspection Date: 07/27/07

Report Problem", + "NAME": "H04252" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03113644506006, + 38.93969699133028, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 10/10/07

Report Problem", + "NAME": "H04253" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98611566896587, + 38.939033663996085, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H04254" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03331433997035, + 38.96766163233815, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H04255" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99519716346217, + 38.93922768088011, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H04256" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.1008668349851, + 38.93514558504254, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US Pipe, AP Smith

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H04257" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07812042015287, + 38.929999574504286, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H04258" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99253501156616, + 38.93970739491439, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H04259" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09474792286065, + 38.925101147987306, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H04260" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08847356192025, + 38.94557294195461, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 12/05/07

Report Problem", + "NAME": "H04261" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02960783569715, + 38.96906362741682, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H04709" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98133325793626, + 38.935765202546136, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H04710" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02951095390996, + 38.941928766648175, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 07/06/07

Report Problem", + "NAME": "H04711" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03168001493522, + 38.96986307919653, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H04712" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08620570575218, + 38.94402908447132, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, American Darling, B84B

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H04713" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96334800127977, + 38.87703422596476, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H04714" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94666960303068, + 38.886399110692196, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/02/07

Report Problem", + "NAME": "H04715" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9479229391661, + 38.88625808248532, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/02/07

Report Problem", + "NAME": "H04716" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94908377507225, + 38.88723079678369, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/01/07

Report Problem", + "NAME": "H04717" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08894004824909, + 38.958221251441046, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Clow Eddy, Eddy

In Service


Last Inspection Date: 06/05/07

Report Problem", + "NAME": "H04718" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94781466845942, + 38.89458843909273, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Kennedy

In Service


Last Inspection Date: 06/05/07

Report Problem", + "NAME": "H04719" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96462987363175, + 38.87549153693379, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/30/07

Report Problem", + "NAME": "H04720" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04345474868755, + 38.93968831360353, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, American Darling

In Service


Last Inspection Date: 05/14/07

Report Problem", + "NAME": "H04721" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03660890013306, + 38.9896931680321, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H04722" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04905193541292, + 38.90517613320066, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 08/29/07

Report Problem", + "NAME": "H04723" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0145878530758, + 38.91117582605001, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 12/10/07

Report Problem", + "NAME": "H04724" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96222175423597, + 38.877784473568504, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP SMITH - O'BRIEN

In Service


Last Inspection Date: 08/02/07

Report Problem", + "NAME": "H04725" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0417586777392, + 38.93890300322702, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 09/17/07

Report Problem", + "NAME": "H04726" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0754331077656, + 38.923581184166196, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Kennedy

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H04728" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06248503815512, + 38.97893554241053, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US Pipe

In Service


Last Inspection Date: 06/13/07

Report Problem", + "NAME": "H04729" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.10591932400739, + 38.93483667092647, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US Pipe, AP Smith

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H04730" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98575793368119, + 38.908047388316206, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US PIPE-A P SMITH

In Service


Last Inspection Date: 08/02/07

Report Problem", + "NAME": "H04731" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9788424771193, + 38.9245564782839, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 08/03/07

Report Problem", + "NAME": "H04732" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96485052057069, + 38.87925030228958, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H04733" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95965525867965, + 38.88194380735753, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/27/07

Report Problem", + "NAME": "H04734" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0513405725282, + 38.90514078304257, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/12/07

Report Problem", + "NAME": "H04735" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9332467064806, + 38.88151653860521, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/12/07

Report Problem", + "NAME": "H04736" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0522189469308, + 38.90534688318145, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 09/11/07

Report Problem", + "NAME": "H04737" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02538520316195, + 38.94710572440684, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, CLOW - EDDY

In Service


Last Inspection Date: 07/11/07

Report Problem", + "NAME": "H04738" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08849601566848, + 38.947844778236124, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US Pipe, AP Smith

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H04739" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08753390764316, + 38.94797673524905, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 12/17/07

Report Problem", + "NAME": "H04740" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02799126448157, + 38.88436796558133, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H04741" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06343872983717, + 38.95972896131136, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 08/13/07

Report Problem", + "NAME": "H04742" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09418338977535, + 38.948854748169815, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 11/14/07

Report Problem", + "NAME": "H04743" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9822535555375, + 38.908835436045294, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/02/07

Report Problem", + "NAME": "H05167" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00712929976308, + 38.82611988897079, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/15/07

Report Problem", + "NAME": "H05168" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00573025749678, + 38.82611690317241, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/15/07

Report Problem", + "NAME": "H05169" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03306643291387, + 38.95634551635734, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 11/08/07

Report Problem", + "NAME": "H05170" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04223666641778, + 38.92745394324563, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 10/19/06

Report Problem", + "NAME": "H05171" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00916853256301, + 38.82891256091074, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Clow Eddy

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H05172" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98861263263892, + 38.93731801588514, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H05173" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00364475189643, + 38.826978376800824, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/15/07

Report Problem", + "NAME": "H05174" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00557020066834, + 38.825182696460594, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/15/07

Report Problem", + "NAME": "H05175" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00693997461075, + 38.82507662936434, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/15/07

Report Problem", + "NAME": "H05176" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00264292287537, + 38.83523089468394, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H05177" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00265926655396, + 38.836158963522614, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H05178" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9654493029774, + 38.85909494392035, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/06/07

Report Problem", + "NAME": "H05179" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99541947917167, + 38.93942175545744, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H05180" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00518394457792, + 38.856198399578375, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H05181" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00849092153655, + 38.846232382640956, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 12/07/07

Report Problem", + "NAME": "H05182" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0138335624993, + 38.83331050135897, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 08/25/07

Report Problem", + "NAME": "H05183" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95878071299619, + 38.8905559469081, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/01/07

Report Problem", + "NAME": "H05184" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00446434855682, + 38.83485467306831, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H05185" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98070064473738, + 38.87090317606907, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Kennedy

In Service


Last Inspection Date: 06/04/07

Report Problem", + "NAME": "H05186" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96434739419013, + 38.859063335397366, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/06/07

Report Problem", + "NAME": "H05187" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97911665830593, + 38.870830169684666, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 07/30/07

Report Problem", + "NAME": "H05188" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99268594143285, + 38.86359398299059, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/05/07

Report Problem", + "NAME": "H05189" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99297689691656, + 38.863420255542984, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/05/07

Report Problem", + "NAME": "H05190" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96458762409094, + 38.857683290936436, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/06/07

Report Problem", + "NAME": "H05191" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00303715935394, + 38.833781108862624, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H05192" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96578769586216, + 38.85377464869698, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/23/07

Report Problem", + "NAME": "H05193" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9681256048483, + 38.858788599077045, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 07/06/07

Report Problem", + "NAME": "H05194" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0645403305936, + 38.919376919038314, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 12/13/07

Report Problem", + "NAME": "H05195" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0020455299901, + 38.823886321128626, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 08/10/07

Report Problem", + "NAME": "H05196" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93195920995375, + 38.89071822830916, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H05197" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02916650532477, + 38.941922060850416, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 08/15/07

Report Problem", + "NAME": "H05198" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98254432863565, + 38.853448476908326, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/06/07

Report Problem", + "NAME": "H05199" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02011186226316, + 38.94416618602358, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 08/08/07

Report Problem", + "NAME": "H05200" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96456620820008, + 38.925934456168676, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/27/07

Report Problem", + "NAME": "H05626" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9345339221914, + 38.90458009550121, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H05627" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99327537698036, + 38.92547176950791, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/31/07

Report Problem", + "NAME": "H05628" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9403490305565, + 38.907592818087466, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H05629" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96988385465852, + 38.87231929660813, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H05630" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05849582904557, + 38.963620132377606, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H05631" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05683875629394, + 38.94889635481614, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H05632" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07470631454774, + 38.95631854170552, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H05633" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96571956533501, + 38.86770608765082, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H05634" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02823882639538, + 38.98571573443198, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H05635" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06990348187958, + 38.94781054026824, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 10/31/07

Report Problem", + "NAME": "H05636" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05965423415002, + 38.96302593930838, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H05637" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9500171134719, + 38.87048406531074, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 08/27/07

Report Problem", + "NAME": "H05638" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07297220918346, + 38.95523451003682, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Kennedy

In Service


Last Inspection Date: 06/18/07

Report Problem", + "NAME": "H05639" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02317546488578, + 38.98171452478699, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 08/07/07

Report Problem", + "NAME": "H05640" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05647123721442, + 38.98334825067811, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 02/14/08

Report Problem", + "NAME": "H05641" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05475400391595, + 38.984664239522836, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/13/07

Report Problem", + "NAME": "H05642" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02761001035984, + 38.985227639521696, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H05643" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05221476577873, + 38.979799782857256, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/13/07

Report Problem", + "NAME": "H05644" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99389121916485, + 38.947353193040755, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H05645" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9288845265452, + 38.879415206737704, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/08/07

Report Problem", + "NAME": "H05646" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99650758195034, + 38.95070557727821, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H05647" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03503116124297, + 38.977390636854935, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H05648" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95799787260297, + 38.882794506682636, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H05649" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00388711500801, + 38.96196109243133, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, KENNEDY-K81-A/D GUAR

In Service


Last Inspection Date: 08/02/07

Report Problem", + "NAME": "H05650" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05901852522831, + 38.978825181671596, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller, Centurion

In Service


Last Inspection Date: 06/13/07

Report Problem", + "NAME": "H05651" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98977080822395, + 38.860456420343795, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H05652" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95594061282378, + 38.88605500004995, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/02/07

Report Problem", + "NAME": "H05653" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98900499961782, + 38.8343547305701, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H05656" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94108255821662, + 38.89910314008226, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 05/08/07

Report Problem", + "NAME": "H05657" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95674945753103, + 38.884552451859854, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H05658" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93686261509959, + 38.89106278639865, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H05659" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97477228059029, + 38.91914614560129, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 07/30/07

Report Problem", + "NAME": "H05660" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00315371290615, + 38.96512307346234, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H05661" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98070467320836, + 38.86959953434901, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H04194" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06164374887241, + 38.920185593100506, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 09/27/07

Report Problem", + "NAME": "H04195" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09668519029186, + 38.95204514070214, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 11/27/07

Report Problem", + "NAME": "H04196" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06910828643798, + 38.97119206931057, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/15/07

Report Problem", + "NAME": "H04197" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95830060500094, + 38.86539034084077, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 12/20/07

Report Problem", + "NAME": "H04198" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95781712760093, + 38.86357808847158, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 01/07/08

Report Problem", + "NAME": "H04199" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95721164437941, + 38.86541863867322, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 12/27/07

Report Problem", + "NAME": "H04200" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96770634890431, + 38.87085628146997, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H04201" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07826486773908, + 38.946334963606006, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H04202" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09681384237601, + 38.94044746961238, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 01/07/08

Report Problem", + "NAME": "H04203" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06887535899614, + 38.94018639195672, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 04/19/07

Report Problem", + "NAME": "H04204" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0997265062579, + 38.92452685981922, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H04205" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08802840957976, + 38.92419351726891, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H04206" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04538189131213, + 38.98851935102793, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H04207" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04576058800095, + 38.98928933297763, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H04208" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04667269670925, + 38.98981420494747, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H04209" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9347988590341, + 38.891965363777366, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H04210" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0901687791002, + 38.95708871003681, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US Pipe, AP Smith

In Service


Last Inspection Date: 06/05/07

Report Problem", + "NAME": "H04211" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0945298178113, + 38.95336894868246, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, American Darling, B84B

In Service


Last Inspection Date: 06/04/07

Report Problem", + "NAME": "H04212" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07044800531021, + 38.93990072956905, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 02/19/08

Report Problem", + "NAME": "H04213" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97778103266928, + 38.90501793337816, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 08/31/07

Report Problem", + "NAME": "H04214" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07264211889718, + 38.948825617158754, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, American Darling

In Service


Last Inspection Date: 06/15/07

Report Problem", + "NAME": "H04215" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05602234223862, + 38.975944491008065, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/13/07

Report Problem", + "NAME": "H04216" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96767995175357, + 38.87397897382935, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/30/07

Report Problem", + "NAME": "H04217" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00866162303225, + 38.95726502079673, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US Pipe

In Service


Last Inspection Date: 06/05/07

Report Problem", + "NAME": "H04218" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09268059118425, + 38.94715814020929, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 12/10/07

Report Problem", + "NAME": "H04219" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09048643430907, + 38.94632451192847, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 12/11/07

Report Problem", + "NAME": "H04220" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05338198606725, + 38.972773837283206, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, American Darling

In Service


Last Inspection Date: 01/24/08

Report Problem", + "NAME": "H04221" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99366632364934, + 38.93792124314612, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 09/12/07

Report Problem", + "NAME": "H04222" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93367273725826, + 38.89841423521351, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP SMITH - O'BRIEN

In Service


Last Inspection Date: 05/28/07

Report Problem", + "NAME": "H04223" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0675251092381, + 38.97119434542624, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H04224" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.035255624967, + 38.94904393487972, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - JUMBO

In Service


Last Inspection Date: 07/12/07

Report Problem", + "NAME": "H04225" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0512314150634, + 38.939490719849296, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H04226" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01992436891082, + 38.97566503894667, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H04227" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97914701395872, + 38.92350717194224, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 08/02/07

Report Problem", + "NAME": "H04744" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9499122658942, + 38.88806240322035, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/01/07

Report Problem", + "NAME": "H04745" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02728413167864, + 38.960777901397876, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H04746" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09399904656539, + 38.92685496105866, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H04747" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07658090367256, + 38.966355320287825, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, American Darling

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H04748" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95357024028502, + 38.864578239839595, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 01/11/08

Report Problem", + "NAME": "H04749" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95230956964433, + 38.86478051116998, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 01/07/08

Report Problem", + "NAME": "H04750" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9559998876629, + 38.89538628390953, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/01/07

Report Problem", + "NAME": "H04751" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9658262175837, + 38.87584902205443, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/30/07

Report Problem", + "NAME": "H04752" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97037939894082, + 38.86731902813283, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 09/04/07

Report Problem", + "NAME": "H04753" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07824447684018, + 38.956008018560574, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller, Centurion

In Service


Last Inspection Date: 06/15/07

Report Problem", + "NAME": "H04754" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94992039160039, + 38.89399085378731, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 09/07/07

Report Problem", + "NAME": "H04755" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06081324158107, + 38.97879231907476, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, American Darling, B84B

In Service


Last Inspection Date: 06/13/07

Report Problem", + "NAME": "H04756" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97369548375778, + 38.868201223022595, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H04757" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.10843436087899, + 38.9336863909948, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US Pipe, AP Smith

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H04758" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.10699318206748, + 38.934437336503365, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US Pipe, AP Smith

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H04759" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01967668924941, + 38.88685829074186, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/09/07

Report Problem", + "NAME": "H04760" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96762577053877, + 38.86741520062983, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H04761" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99750901976692, + 38.88077037995249, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 11/05/06

Report Problem", + "NAME": "H04764" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95502384391406, + 38.88685246889917, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 05/30/07

Report Problem", + "NAME": "H04766" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95486526557892, + 38.88743972708472, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 05/30/07

Report Problem", + "NAME": "H04767" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00872859395193, + 38.94969523285129, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 02/06/08

Report Problem", + "NAME": "H04768" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96469104600503, + 38.87758416985688, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 11/28/07

Report Problem", + "NAME": "H04769" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02855205962594, + 38.97003064527849, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H04770" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99505654372098, + 38.92728226849169, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Kennedy

In Service


Last Inspection Date: 07/31/07

Report Problem", + "NAME": "H04771" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9772417886766, + 38.86941859853848, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Eddy

In Service


Last Inspection Date: 01/11/08

Report Problem", + "NAME": "H04772" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02962440022894, + 38.97088130575179, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H04773" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05903720133935, + 38.96599972284117, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 11/05/07

Report Problem", + "NAME": "H04774" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97998940789428, + 38.93713361993313, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 01/16/08

Report Problem", + "NAME": "H04775" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09919507306482, + 38.939543112010114, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 01/30/08

Report Problem", + "NAME": "H04776" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09449979472652, + 38.93943357875536, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 01/07/08

Report Problem", + "NAME": "H04777" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02732498134701, + 38.93460823862935, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 09/12/07

Report Problem", + "NAME": "H04778" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9535358853864, + 38.89080012318996, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/02/07

Report Problem", + "NAME": "H04779" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03780987553274, + 38.989459356416575, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H04780" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00579923830666, + 38.835739803389906, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 09/11/07

Report Problem", + "NAME": "H05201" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00371946252882, + 38.834567131188045, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H05202" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01283407284744, + 38.92336057324921, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 08/15/06

Report Problem", + "NAME": "H05203" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03653525833982, + 38.959240711942556, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H05204" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93828125126588, + 38.88836631040014, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/08/07

Report Problem", + "NAME": "H05205" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94560764270386, + 38.88071570756369, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H05206" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0348088871785, + 38.92990507593924, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US PIPE-MET 250 M94

In Service


Last Inspection Date: 09/21/07

Report Problem", + "NAME": "H05207" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96577227535872, + 38.852200943189345, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Eddy

In Service


Last Inspection Date: 07/23/07

Report Problem", + "NAME": "H05208" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01241513610991, + 38.82444685246901, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H05209" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96849001615604, + 38.9318196197282, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 08/09/07

Report Problem", + "NAME": "H05210" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00199450898634, + 38.837294330382896, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H05211" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93505722563116, + 38.89569791888897, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H05212" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9362105201997, + 38.895836679653705, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H05213" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96550478615704, + 38.85052243999966, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 07/06/07

Report Problem", + "NAME": "H05214" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96503674379574, + 38.85402611276057, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/06/07

Report Problem", + "NAME": "H05215" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96423542673692, + 38.85324732539318, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/06/07

Report Problem", + "NAME": "H05216" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01770081346389, + 38.90378448904728, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 11/01/07

Report Problem", + "NAME": "H05217" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98642395410391, + 38.93623448035742, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H05218" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96052825924822, + 38.864347129993874, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 08/28/07

Report Problem", + "NAME": "H05219" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92564951238235, + 38.90195138388131, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 05/28/07

Report Problem", + "NAME": "H05220" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92456229178582, + 38.90175630453846, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 05/28/07

Report Problem", + "NAME": "H05221" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9254613149737, + 38.90274042311545, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 12/07/07

Report Problem", + "NAME": "H05222" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92509054856161, + 38.903601817241025, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 05/28/07

Report Problem", + "NAME": "H05223" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04085137133464, + 38.90584208678454, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/11/07

Report Problem", + "NAME": "H05224" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93750850862496, + 38.882491865774114, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H05225" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93068863045525, + 38.89556242700819, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H05226" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00141409943355, + 38.83600082378851, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H05228" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94640778739509, + 38.90305166260014, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 01/15/08

Report Problem", + "NAME": "H05229" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94869554404856, + 38.905146149868784, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 05/21/07

Report Problem", + "NAME": "H05230" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94537330103947, + 38.90171921693423, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 06/01/07

Report Problem", + "NAME": "H05231" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94712564157969, + 38.90384841830326, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/02/07

Report Problem", + "NAME": "H05232" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.946607499322, + 38.90155703351813, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/01/07

Report Problem", + "NAME": "H05233" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00600288044966, + 38.84130445832689, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 03/12/08

Report Problem", + "NAME": "H05234" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98114646464356, + 38.91605190556484, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, KENNEDY-K81-A/D GUAR

In Service


Last Inspection Date: 07/31/07

Report Problem", + "NAME": "H05235" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94287490400488, + 38.90712267350573, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Kennedy

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H05662" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01034760222493, + 38.95877074056332, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H05663" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01230036121824, + 38.960061326685185, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H05664" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98814953415919, + 38.95022091519498, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H05665" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95244149542405, + 38.87016857649753, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H05666" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96218175081448, + 38.88028802801066, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, KENNEDY-K81-A/D GUAR

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H05667" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94305607932144, + 38.88356448428447, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H05669" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94272313419559, + 38.88259671260365, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H05670" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97617057208338, + 38.86880775897308, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, KENNEDY-K81-A/D GUAR

In Service


Last Inspection Date: 08/13/07

Report Problem", + "NAME": "H05671" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96980100108885, + 38.874002945408684, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H05672" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05361170579698, + 38.970433797478094, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H05673" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01063281968676, + 38.82694035699557, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/15/07

Report Problem", + "NAME": "H05674" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02836162436662, + 38.97217998495807, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H05675" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99566510427299, + 38.93473681092047, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H05676" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99500715481591, + 38.95026638750952, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H05677" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96376926850891, + 38.87507972443926, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/30/07

Report Problem", + "NAME": "H05678" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08275870237559, + 38.9280337317338, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H05679" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07132502981375, + 38.94719806432574, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/05/07

Report Problem", + "NAME": "H05680" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92356977747968, + 38.888590585229444, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 02/19/08

Report Problem", + "NAME": "H05681" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9239844800327, + 38.88958973194141, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H05682" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93152743481679, + 38.9072525643163, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 05/28/07

Report Problem", + "NAME": "H05683" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93156072379776, + 38.90477344051688, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 05/24/07

Report Problem", + "NAME": "H05684" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9316114662494, + 38.90617672826469, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 05/28/07

Report Problem", + "NAME": "H05685" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95504665549971, + 38.888734346080106, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/30/07

Report Problem", + "NAME": "H05686" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01583536907275, + 38.922206302223074, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 03/12/08

Report Problem", + "NAME": "H05687" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9484549342919, + 38.86537084314752, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H05688" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08386979272295, + 38.94883387487236, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Clow Eddy, Eddy

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H05689" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01979012898339, + 38.90165210156631, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/02/07

Report Problem", + "NAME": "H05690" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96492961009135, + 38.870679114009285, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H05692" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94558037241048, + 38.868583722155954, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 07/27/07

Report Problem", + "NAME": "H05693" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93695746773983, + 38.87642792110413, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 11/19/07

Report Problem", + "NAME": "H05694" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99488631513977, + 38.94812984447875, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H05695" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98212065187695, + 38.856913847015655, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 01/15/08

Report Problem", + "NAME": "H05696" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9806719167034, + 38.85716015875724, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 01/17/08

Report Problem", + "NAME": "H05697" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97629867199124, + 38.89483945770751, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 05/29/07

Report Problem", + "NAME": "H04262" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0904854345653, + 38.94557323067019, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 12/05/07

Report Problem", + "NAME": "H04263" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9788463345116, + 38.925509315744556, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 08/06/07

Report Problem", + "NAME": "H04264" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02233949754955, + 38.96327319189262, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H04265" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0110243299574, + 38.9544901684508, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H04266" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93653834821622, + 38.89527011476603, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H04267" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98374999306267, + 38.94417422749809, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 01/30/08

Report Problem", + "NAME": "H04268" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98428258754907, + 38.91389620669501, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US PIPE-A P SMITH

In Service


Last Inspection Date: 09/07/07

Report Problem", + "NAME": "H04269" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98375946413988, + 38.91297998731711, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 09/07/07

Report Problem", + "NAME": "H04270" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02003355633056, + 38.963280365897624, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H04271" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03356650983973, + 38.93516200159843, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP SMITH - O'BRIEN

In Service


Last Inspection Date: 05/24/07

Report Problem", + "NAME": "H04272" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08886788354216, + 38.95042290013256, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 11/27/07

Report Problem", + "NAME": "H04273" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97316242368191, + 38.92456130244601, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 08/03/07

Report Problem", + "NAME": "H04274" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01428853437034, + 38.87209712278843, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/05/07

Report Problem", + "NAME": "H04275" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9800113302975, + 38.90258971143001, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 01/13/08

Report Problem", + "NAME": "H04276" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09569559804243, + 38.95295278191371, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 11/30/07

Report Problem", + "NAME": "H04277" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97891824649129, + 38.872158206939616, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/12/07

Report Problem", + "NAME": "H04278" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03618701845232, + 38.96159082217777, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H04279" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08458923913511, + 38.95599695218664, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US Pipe, AP Smith

In Service


Last Inspection Date: 06/05/07

Report Problem", + "NAME": "H04280" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03955123466933, + 38.899050675625894, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 09/11/07

Report Problem", + "NAME": "H04281" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09806031173513, + 38.94030658579882, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 01/25/08

Report Problem", + "NAME": "H04282" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95884187487074, + 38.858464752401, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 09/04/07

Report Problem", + "NAME": "H04283" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08790548220217, + 38.92493654414663, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H04284" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0793235956426, + 38.94784298423143, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H04285" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95742892119048, + 38.89469289888812, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/01/07

Report Problem", + "NAME": "H04286" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02277592797219, + 38.90969439226076, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/11/07

Report Problem", + "NAME": "H04287" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99513038726887, + 38.92947343528527, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H04288" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03461038972091, + 38.96865291030881, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H04289" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98358587383679, + 38.8776666459264, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 11/16/06

Report Problem", + "NAME": "H04290" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9771435514052, + 38.8920544725174, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 04/07/06

Report Problem", + "NAME": "H04291" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06649009396924, + 38.9753302589748, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/15/07

Report Problem", + "NAME": "H04292" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0637492159216, + 38.97594659690241, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/13/07

Report Problem", + "NAME": "H04293" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05934972355695, + 38.95076222548684, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US Pipe, AP Smith

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H04294" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00659859114509, + 38.84027830074792, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 09/13/07

Report Problem", + "NAME": "H04295" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05686011552427, + 38.96608544323306, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H04781" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96585600154377, + 38.86863671429712, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H04782" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0125357042885, + 38.887465764552516, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H04783" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01538318188119, + 38.88632222485084, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H04784" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0161663973331, + 38.88744951777013, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 11/29/07

Report Problem", + "NAME": "H04785" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01494850837497, + 38.8874505988401, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/27/07

Report Problem", + "NAME": "H04786" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09845736050742, + 38.93294031600649, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H04787" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97502968442616, + 38.8674006683606, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H04788" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01608979094676, + 38.896276183107496, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H04789" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98177643958206, + 38.944293377338155, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 02/05/08

Report Problem", + "NAME": "H04790" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93498335865014, + 38.89421668576057, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H04791" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98288708280418, + 38.93498700615731, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H04792" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08607993527309, + 38.943273615885936, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H04793" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07873995641353, + 38.950003321020475, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/05/07

Report Problem", + "NAME": "H04794" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02149414163907, + 38.958590498905714, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/23/07

Report Problem", + "NAME": "H04795" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99236681735826, + 38.925453552930406, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/31/07

Report Problem", + "NAME": "H04796" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95490660185635, + 38.89080808329124, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 06/05/07

Report Problem", + "NAME": "H04797" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95397626395426, + 38.8919068681121, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/02/07

Report Problem", + "NAME": "H04798" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96483366750157, + 38.868664526134815, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H04799" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01356702678221, + 38.88513919904141, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H04800" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09432638422177, + 38.92619960331468, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H04801" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04477042354836, + 38.990204598322485, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H04802" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04402642731336, + 38.98881321227033, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H04803" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98188930205934, + 38.921950883086794, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 08/01/07

Report Problem", + "NAME": "H04804" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.1075264479778, + 38.93253440034168, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US Pipe, AP Smith

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H04805" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.10600435734776, + 38.93401833324635, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US Pipe, AP Smith

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H04806" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.10682858019072, + 38.933180269511496, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H04807" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01882920423077, + 38.88613034612367, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H04808" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04371450679095, + 38.93889600935824, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 05/14/07

Report Problem", + "NAME": "H04809" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97723976230432, + 38.86890736202704, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 02/22/08

Report Problem", + "NAME": "H04810" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09638027028329, + 38.93233851756908, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H04811" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97925664619731, + 38.91614165067249, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US PIPE-MET 250 M94

In Service


Last Inspection Date: 07/30/07

Report Problem", + "NAME": "H04812" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09118233938017, + 38.91522106278821, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 09/06/06

Report Problem", + "NAME": "H04813" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.10116194205156, + 38.93060223234202, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H04814" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9303940267273, + 38.90172544067324, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 05/28/07

Report Problem", + "NAME": "H05236" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92951698417788, + 38.90189109201884, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 05/28/07

Report Problem", + "NAME": "H05237" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06288884747777, + 38.904678035720075, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/02/07

Report Problem", + "NAME": "H05238" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9364149049863, + 38.88347047825336, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/08/07

Report Problem", + "NAME": "H05239" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93947277033521, + 38.88324683923172, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/08/07

Report Problem", + "NAME": "H05240" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93647852547285, + 38.88211158853302, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H05241" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93935861335437, + 38.8819007826926, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H05242" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93443518869493, + 38.883031377885494, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/08/07

Report Problem", + "NAME": "H05243" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92865174745543, + 38.9025822465212, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US PIPE-MET 250 M94

In Service


Last Inspection Date: 05/28/07

Report Problem", + "NAME": "H05244" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92747818794447, + 38.902586451492354, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 12/20/07

Report Problem", + "NAME": "H05245" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9309017060856, + 38.9021063812049, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, KENNEDY-K81-A/D GUAR

In Service


Last Inspection Date: 05/28/07

Report Problem", + "NAME": "H05246" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93003672678589, + 38.902546104828836, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 12/06/07

Report Problem", + "NAME": "H05247" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92170897094678, + 38.89140887595691, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/11/07

Report Problem", + "NAME": "H05248" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96802578021132, + 38.85061429603089, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/06/07

Report Problem", + "NAME": "H05249" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92387292178395, + 38.891581735669874, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 10/18/07

Report Problem", + "NAME": "H05250" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92635607441318, + 38.902663545716806, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, KENNEDY-K81-A/D GUAR

In Service


Last Inspection Date: 05/28/07

Report Problem", + "NAME": "H05251" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9578530667068, + 38.869293335316804, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H05252" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93359707132907, + 38.88880021537058, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 08/29/07

Report Problem", + "NAME": "H05253" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9324124946202, + 38.88867692289541, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/08/07

Report Problem", + "NAME": "H05254" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95725594448804, + 38.87023566789262, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H05255" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03838650996451, + 38.962697226149494, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/05/07

Report Problem", + "NAME": "H05256" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98644082862975, + 38.85799525046285, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/04/07

Report Problem", + "NAME": "H05258" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98582125384355, + 38.857586788961164, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/05/07

Report Problem", + "NAME": "H05259" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98430953085037, + 38.8448852982181, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H05260" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98337802145222, + 38.843656030133, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H05261" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99198662394896, + 38.8400376054999, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H05264" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98337984701934, + 38.84452283193394, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H05265" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9914789427159, + 38.839289597868145, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H05266" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93306402106003, + 38.88822386130041, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 08/29/07

Report Problem", + "NAME": "H05267" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93242678527895, + 38.88774198746146, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 08/10/07

Report Problem", + "NAME": "H05268" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92035748611644, + 38.89724381926335, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/08/07

Report Problem", + "NAME": "H05269" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0088456648001, + 38.83144995497134, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H05270" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9410254124569, + 38.870184043356524, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 07/27/07

Report Problem", + "NAME": "H05271" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98345012991754, + 38.91272970130136, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, U.S. Pipe

In Service


Last Inspection Date: 05/28/07

Report Problem", + "NAME": "H05273" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9611430508945, + 38.89188019478629, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Kennedy

In Service


Last Inspection Date: 06/01/07

Report Problem", + "NAME": "H05698" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03233738400814, + 38.98895822241572, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/05/07

Report Problem", + "NAME": "H05699" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03097565893982, + 38.98792329589722, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/05/07

Report Problem", + "NAME": "H05700" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03376492782296, + 38.99005990971443, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H05701" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98943312180798, + 38.95014586421363, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H05702" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08219976296907, + 38.948887858583475, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H05704" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0319358274213, + 38.98635414115788, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H05705" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0335241596069, + 38.97159383131471, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H05707" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03476667517141, + 38.971438229577046, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H05708" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99503072862606, + 38.94638695587887, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H05709" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99370432607566, + 38.94631697870379, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 08/17/07

Report Problem", + "NAME": "H05710" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08629893217942, + 38.93336432591368, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H05712" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00012675472678, + 38.83314198908348, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H05713" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9901220467203, + 38.946316343537376, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H05716" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00049214456863, + 38.828184351260866, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/15/07

Report Problem", + "NAME": "H05717" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0658859245943, + 38.946340541976284, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, American Darling, B84B

In Service


Last Inspection Date: 11/10/05

Report Problem", + "NAME": "H05718" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99851523626316, + 38.88595656932109, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H05719" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94043409618848, + 38.88181536008358, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H05720" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94192741713624, + 38.88169605734088, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H05721" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96077971341751, + 38.870469609705395, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H05722" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00884101931524, + 38.82611497934236, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H05723" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93932168730257, + 38.894205651412484, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 05/29/07

Report Problem", + "NAME": "H05724" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98572787577514, + 38.95051566560656, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H05725" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94550149027835, + 38.882776336084426, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H05726" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02000699786812, + 38.95852309279095, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 09/13/07

Report Problem", + "NAME": "H05727" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02948826363551, + 38.972212099908646, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H05728" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95110307371986, + 38.87083133069295, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H05729" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93396656142461, + 38.87653301777632, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H05730" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92220923662668, + 38.89278116759077, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/08/07

Report Problem", + "NAME": "H05731" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9328585698703, + 38.87560290845916, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/08/07

Report Problem", + "NAME": "H05732" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09061089296013, + 38.93438101911093, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP SMITH - O'BRIEN

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H05733" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09212141324365, + 38.93386459924006, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP. Smith

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H05734" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07126218221987, + 38.948917098772036, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/15/07

Report Problem", + "NAME": "H05735" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03289550087862, + 38.98840417027071, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/05/07

Report Problem", + "NAME": "H05736" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01027710768506, + 38.95229484042292, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H04296" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98122810421337, + 38.901151152765806, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AM DARLING - B-62-B

In Service


Last Inspection Date: 12/20/07

Report Problem", + "NAME": "H04297" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98171557244987, + 38.900737575326, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 09/07/07

Report Problem", + "NAME": "H04298" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9761287016126, + 38.92070956431243, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 09/20/07

Report Problem", + "NAME": "H04300" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05954573933394, + 38.918957593692156, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 01/16/07

Report Problem", + "NAME": "H04301" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02176840872563, + 38.89261007344565, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H04302" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03131990863113, + 38.96751528610002, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H04303" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08611182143484, + 38.957963615336816, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Kennedy

In Service


Last Inspection Date: 06/05/07

Report Problem", + "NAME": "H04304" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08608986765046, + 38.95888246537479, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/05/07

Report Problem", + "NAME": "H04305" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0465833849777, + 38.89193533793445, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, KENNEDY-K81-A/D GUAR

In Service


Last Inspection Date: 05/17/07

Report Problem", + "NAME": "H04306" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02815146221539, + 38.916273712339546, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/13/07

Report Problem", + "NAME": "H04307" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08747813340375, + 38.94473522676658, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 12/10/07

Report Problem", + "NAME": "H04308" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9672181997991, + 38.856638451212675, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/06/07

Report Problem", + "NAME": "H04309" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96587863380492, + 38.854824986176325, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/06/07

Report Problem", + "NAME": "H04310" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97228764298929, + 38.89912194388076, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 05/11/07

Report Problem", + "NAME": "H04311" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97319135223879, + 38.898962607690265, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 08/31/07

Report Problem", + "NAME": "H04312" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95705040163853, + 38.86812983209164, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/30/07

Report Problem", + "NAME": "H04313" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97633078373637, + 38.892139917208574, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 10/30/06

Report Problem", + "NAME": "H04314" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97229124573204, + 38.899581380099804, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 08/29/07

Report Problem", + "NAME": "H04315" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97391305318305, + 38.90025392122386, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US PIPE-A P SMITH

In Service


Last Inspection Date: 08/30/07

Report Problem", + "NAME": "H04316" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97305286307991, + 38.9002522486052, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 08/30/07

Report Problem", + "NAME": "H04317" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97387747425165, + 38.898970852636126, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, CLOW - EDDY

In Service


Last Inspection Date: 08/31/07

Report Problem", + "NAME": "H04318" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97249705180883, + 38.90025359644827, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 08/30/07

Report Problem", + "NAME": "H04319" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97425567826107, + 38.899598558041674, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 08/29/07

Report Problem", + "NAME": "H04320" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95579798736269, + 38.86762338936386, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 12/03/07

Report Problem", + "NAME": "H04321" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95468059783182, + 38.86816171800891, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H04322" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95332267355158, + 38.86753025207011, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H04323" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9568332769575, + 38.863627086006616, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 12/17/07

Report Problem", + "NAME": "H04324" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97523601674682, + 38.89209940481035, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 10/30/06

Report Problem", + "NAME": "H04325" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96382012456583, + 38.86814730499983, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H04326" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97766991656334, + 38.9043168192467, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 08/31/07

Report Problem", + "NAME": "H04327" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98289673383327, + 38.90413014745225, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/01/07

Report Problem", + "NAME": "H04328" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03352424401162, + 38.960930995563075, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 01/04/08

Report Problem", + "NAME": "H04329" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93504453813388, + 38.87850040747153, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H04330" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01048054324256, + 38.962561889119925, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H04815" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04230630246788, + 38.93797335741091, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 10/15/07

Report Problem", + "NAME": "H04816" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98235356028253, + 38.90507356534147, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/01/07

Report Problem", + "NAME": "H04817" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95399246174316, + 38.88882855960629, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H04818" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97982852386657, + 38.944285868830015, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 03/04/08

Report Problem", + "NAME": "H04819" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95591473597428, + 38.88883622838039, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/02/07

Report Problem", + "NAME": "H04820" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0629606529764, + 38.968891466935894, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H04821" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06162612771428, + 38.9688507128994, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, American Darling, B84B

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H04822" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06290777956663, + 38.96832918281929, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H04823" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96486785207344, + 38.87494706010085, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/30/07

Report Problem", + "NAME": "H04824" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95206526528843, + 38.86434070138106, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 12/20/07

Report Problem", + "NAME": "H04825" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95050417296946, + 38.86435488694021, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 12/20/07

Report Problem", + "NAME": "H04826" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06127772997033, + 38.97392092168366, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Clow Eddy, Eddy

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H04827" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96557648871925, + 38.87859105014223, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H04828" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09244340732056, + 38.94037395071902, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/05/07

Report Problem", + "NAME": "H04829" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09253964154384, + 38.939485296207536, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/23/07

Report Problem", + "NAME": "H04830" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00639208759462, + 38.945527586772194, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H04831" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9772997499416, + 38.850872496423754, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/06/07

Report Problem", + "NAME": "H04832" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00510200670918, + 38.94485390271116, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H04833" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97778767040835, + 38.85019668738738, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 12/20/07

Report Problem", + "NAME": "H04835" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98226160034953, + 38.943478012981686, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 09/24/07

Report Problem", + "NAME": "H04836" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9775940856554, + 38.851591876752565, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/06/07

Report Problem", + "NAME": "H04837" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97685288199948, + 38.85150299907287, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/06/07

Report Problem", + "NAME": "H04838" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04679212788085, + 38.89519037494254, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 05/24/07

Report Problem", + "NAME": "H04839" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9609489954562, + 38.87581313498984, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, KENNEDY-K81-A/D GUAR

In Service


Last Inspection Date: 07/30/07

Report Problem", + "NAME": "H04840" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0550539948318, + 38.920829924994095, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Kennedy

In Service


Last Inspection Date: 01/08/07

Report Problem", + "NAME": "H04841" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9484752575433, + 38.890959214420675, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/30/07

Report Problem", + "NAME": "H04842" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.11029411056718, + 38.934413936461496, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US Pipe, AP Smith

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H04843" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06095431839367, + 38.97993945193936, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/13/07

Report Problem", + "NAME": "H04844" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05909324581968, + 38.90391971215852, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/11/07

Report Problem", + "NAME": "H04845" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.10833393295695, + 38.93513332643349, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US Pipe, AP Smith

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H04846" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9481476171759, + 38.896103911862824, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Kennedy

In Service


Last Inspection Date: 06/01/07

Report Problem", + "NAME": "H04847" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98908278252829, + 38.94739041641569, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 10/19/07

Report Problem", + "NAME": "H04848" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05725204536952, + 38.91690411086289, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 11/15/06

Report Problem", + "NAME": "H04849" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0086347806207, + 38.94873698448273, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER

In Service


Last Inspection Date: 02/06/08

Report Problem", + "NAME": "H05274" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9151970773889, + 38.89576895849258, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 07/11/07

Report Problem", + "NAME": "H05275" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92836901623804, + 38.899910770701474, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H05276" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9266768909645, + 38.89965980193343, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 07/09/07

Report Problem", + "NAME": "H05277" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92655942098412, + 38.9018863965856, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H05278" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92706772927086, + 38.90074253628703, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H05279" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92758054670871, + 38.89967183325459, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H05280" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92534275675774, + 38.89979717225478, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H05281" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9285483519885, + 38.90188702639059, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Kennedy

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H05282" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92595020926296, + 38.90049781482274, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H05283" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93480902357527, + 38.890390921721355, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H05284" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.91351965296808, + 38.89191623514586, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H05285" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93598596323984, + 38.889517075465626, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H05287" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93392335669337, + 38.907273266806925, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H05288" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9367220178332, + 38.88830081395822, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/08/07

Report Problem", + "NAME": "H05289" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92867621961119, + 38.903623032888554, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP SMITH - O'BRIEN

In Service


Last Inspection Date: 05/24/07

Report Problem", + "NAME": "H05290" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09552477576537, + 38.94024813160729, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, American Darling, B84B

In Service


Last Inspection Date: 06/05/07

Report Problem", + "NAME": "H05291" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09426367753699, + 38.940075799739446, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER

In Service


Last Inspection Date: 01/25/08

Report Problem", + "NAME": "H05292" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97287133756159, + 38.89558910897122, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 05/29/07

Report Problem", + "NAME": "H05294" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96902163373117, + 38.854331272649816, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/06/07

Report Problem", + "NAME": "H05295" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.967088970468, + 38.934040960738464, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 09/15/07

Report Problem", + "NAME": "H05296" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92846888637392, + 38.88496376952767, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/08/07

Report Problem", + "NAME": "H05297" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97519429396318, + 38.90242945718334, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 08/28/07

Report Problem", + "NAME": "H05298" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05440870726223, + 38.96566845570264, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H05299" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97487775240677, + 38.88760413114976, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Kennedy

In Service


Last Inspection Date: 05/19/06

Report Problem", + "NAME": "H05300" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93415839450266, + 38.887576528550326, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/08/07

Report Problem", + "NAME": "H05301" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9336593931824, + 38.88658273883309, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/08/07

Report Problem", + "NAME": "H05302" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93436797381392, + 38.88854282226661, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 08/29/07

Report Problem", + "NAME": "H05303" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93613901588651, + 38.88890764338561, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H05304" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99592603498617, + 38.93572255352629, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H05305" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93462983507179, + 38.90155689094681, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, KENNEDY-K81-A/D GUAR

In Service


Last Inspection Date: 05/12/07

Report Problem", + "NAME": "H05306" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93299997139876, + 38.890308372267484, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H05307" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0088390651903, + 38.8728493324782, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 11/19/07

Report Problem", + "NAME": "H05309" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0295248923983, + 38.93628486892012, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, CLOW - EDDY

In Service


Last Inspection Date: 05/20/07

Report Problem", + "NAME": "H05310" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07035971154083, + 38.90509822197174, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/02/07

Report Problem", + "NAME": "H05737" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97436366308231, + 38.94280496191465, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H05738" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97864195455291, + 38.94531412479575, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H05739" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98166022114894, + 38.9462204200308, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H05740" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97989561748804, + 38.94611237281481, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 08/16/07

Report Problem", + "NAME": "H05741" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99381000078833, + 38.924438752237336, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, CLOW - EDDY

In Service


Last Inspection Date: 07/16/07

Report Problem", + "NAME": "H05742" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06449466562998, + 38.95418540939227, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Eddy

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H05743" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08564797152272, + 38.91071987267789, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H05744" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98796625713597, + 38.911334501654174, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H05745" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01724901856186, + 38.91439918725036, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/12/07

Report Problem", + "NAME": "H05746" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97702753567869, + 38.94531302595674, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 08/16/07

Report Problem", + "NAME": "H05747" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97313451138933, + 38.849455386990826, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H05748" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97260941626118, + 38.8501174841393, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 09/11/07

Report Problem", + "NAME": "H05749" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0179778651603, + 38.92131584384434, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 11/11/07

Report Problem", + "NAME": "H05750" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00198003624556, + 38.848705500282136, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/02/07

Report Problem", + "NAME": "H05751" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0780977113417, + 38.90609660195239, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H05752" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07951067926409, + 38.90606327289221, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/27/07

Report Problem", + "NAME": "H05753" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03508935807288, + 38.9898523943052, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H05754" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99791166927842, + 38.95173467076874, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US Pipe

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H05755" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9965218224642, + 38.95132050040647, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H05756" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97826170270852, + 38.946091928872214, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 08/16/07

Report Problem", + "NAME": "H05757" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94164428733507, + 38.88262713136998, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H05758" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97608265535031, + 38.88931999349269, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 04/14/06

Report Problem", + "NAME": "H05759" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97914778326177, + 38.94063437507967, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 08/29/07

Report Problem", + "NAME": "H05760" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00924258351668, + 38.91912185663241, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 07/05/07

Report Problem", + "NAME": "H05761" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05901463357367, + 38.967103298526446, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H05762" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98275298093917, + 38.86173944750236, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Kennedy

In Service


Last Inspection Date: 06/05/07

Report Problem", + "NAME": "H05763" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06130203909844, + 38.967488332270186, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H05764" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06262930649754, + 38.97774780274344, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US Pipe, Metropolitan M94

In Service


Last Inspection Date: 06/12/07

Report Problem", + "NAME": "H05765" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94176091398215, + 38.88391056942392, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/08/07

Report Problem", + "NAME": "H05767" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0025980426277, + 38.96196307396218, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H05768" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00614357416043, + 38.964232903626396, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, KENNEDY-K81-A/D GUAR

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H05769" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98190085126755, + 38.94700821364279, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 11/27/07

Report Problem", + "NAME": "H05770" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.040165588548, + 38.991800892890765, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H05771" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02386224128482, + 38.90101687322729, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/01/07

Report Problem", + "NAME": "H04365" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0238571062221, + 38.90158808516398, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/01/07

Report Problem", + "NAME": "H04366" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02123570865538, + 38.96439680742797, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H04367" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07221776230718, + 38.918431902807164, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H04368" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95351893723814, + 38.86244512545276, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H04369" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95463284581349, + 38.86292382948282, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H04370" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95372497712366, + 38.86162581952653, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/31/07

Report Problem", + "NAME": "H04371" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00735747981291, + 38.959767784758185, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 07/27/07

Report Problem", + "NAME": "H04372" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02441928182391, + 38.97511031579954, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H04373" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97613620327186, + 38.94167751755087, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H04374" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97322822777984, + 38.93825700669867, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H04375" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96285676230137, + 38.86735187524944, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H04376" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00217722399313, + 38.88765774589491, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 01/31/08

Report Problem", + "NAME": "H04377" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00339064057852, + 38.88781671484649, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/28/07

Report Problem", + "NAME": "H04378" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97149250447177, + 38.918687011754336, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/30/07

Report Problem", + "NAME": "H04379" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0825464276259, + 38.94542507355292, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, American Darling, B84B

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H04380" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09236264564747, + 38.9267015749324, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H04381" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09030910561266, + 38.92658108107922, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H04382" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98365764013333, + 38.90714281958733, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 05/28/07

Report Problem", + "NAME": "H04383" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02004747216087, + 38.95651376614207, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/18/07

Report Problem", + "NAME": "H04384" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98020881351526, + 38.904424836640914, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 08/31/07

Report Problem", + "NAME": "H04385" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08459157191788, + 38.9133799320576, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H04386" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09076131242598, + 38.94711726209218, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 12/10/07

Report Problem", + "NAME": "H04387" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05986733497306, + 38.97765295124391, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US Pipe, AP Smith

In Service


Last Inspection Date: 06/13/07

Report Problem", + "NAME": "H04388" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97231363763498, + 38.93836192945532, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H04389" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02691046330943, + 38.90476890201847, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 09/10/07

Report Problem", + "NAME": "H04390" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02714731890651, + 38.90787070991565, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H04391" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02691275462516, + 38.909161218613555, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 05/30/07

Report Problem", + "NAME": "H04392" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99464600354275, + 38.937453680503125, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H04393" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96296153660478, + 38.870422838808324, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H04394" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01524085879905, + 38.972382918269226, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H04395" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01440727061679, + 38.97225233246718, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H04396" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9624059419235, + 38.92319363081205, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 09/18/07

Report Problem", + "NAME": "H04397" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97229847213681, + 38.91413216952943, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/30/07

Report Problem", + "NAME": "H04398" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05931863197713, + 38.91826539202323, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 09/27/07

Report Problem", + "NAME": "H04850" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95448704807538, + 38.887707516551636, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/05/07

Report Problem", + "NAME": "H04851" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04861636578171, + 38.90728637703005, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/12/07

Report Problem", + "NAME": "H04852" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08363180478528, + 38.94785202562629, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US Pipe, AP Smith

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H04853" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9525854579913, + 38.88936693210724, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/02/07

Report Problem", + "NAME": "H04854" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98084271778794, + 38.87184791076097, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H04855" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0642135618758, + 38.9729661401513, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H04856" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98683426395263, + 38.919508298035446, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Clow Eddy

In Service


Last Inspection Date: 07/31/07

Report Problem", + "NAME": "H04857" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94251619274606, + 38.89763623886089, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 05/29/07

Report Problem", + "NAME": "H04858" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.10153543582629, + 38.922603258865564, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H04860" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97620680310852, + 38.84941120959343, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H04861" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97969958896098, + 38.84910341132716, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 10/15/07

Report Problem", + "NAME": "H04862" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97975239460152, + 38.84963817932627, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/06/07

Report Problem", + "NAME": "H04863" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97826355906706, + 38.85117125540655, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/06/07

Report Problem", + "NAME": "H04864" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97879500907135, + 38.84955865403297, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AM DARLING - B-62-B

In Service


Last Inspection Date: 07/06/07

Report Problem", + "NAME": "H04865" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97866550086144, + 38.84805480688819, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H04866" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0436009035287, + 38.9422341734002, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H04867" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97911079445437, + 38.85074704975445, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/06/07

Report Problem", + "NAME": "H04868" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94471477686481, + 38.8666374447389, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 07/27/07

Report Problem", + "NAME": "H04869" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02827668839237, + 38.932767075462706, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US PIPE-MET 250 M94

In Service


Last Inspection Date: 09/10/07

Report Problem", + "NAME": "H04870" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98043312064672, + 38.94518942137881, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 01/31/08

Report Problem", + "NAME": "H04871" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9816084484277, + 38.94514979558932, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Kennedy

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H04872" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97710609557588, + 38.90575544280286, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 08/24/07

Report Problem", + "NAME": "H04873" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0118262027984, + 38.83095155904082, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H04874" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97746325873652, + 38.92552507400033, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 08/06/07

Report Problem", + "NAME": "H04875" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99016027324167, + 38.94533323694629, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H04876" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98514814923617, + 38.87997940840418, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 03/05/07

Report Problem", + "NAME": "H04877" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93139114543416, + 38.876532632192315, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/11/07

Report Problem", + "NAME": "H04878" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0153283638076, + 38.90037609882181, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/02/07

Report Problem", + "NAME": "H04879" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01509757805228, + 38.901239850171095, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/02/07

Report Problem", + "NAME": "H04880" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95217036320625, + 38.89255269150732, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 05/30/07

Report Problem", + "NAME": "H04881" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01106464885362, + 38.97238290152446, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H04882" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95298829788665, + 38.89291631315321, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 05/30/07

Report Problem", + "NAME": "H04883" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.10579397560643, + 38.93571591403128, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US Pipe, AP Smith

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H04884" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97423145903142, + 38.90135000271714, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US PIPE-MET 250 M94

In Service


Last Inspection Date: 05/11/07

Report Problem", + "NAME": "H05311" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96991943770166, + 38.85821775178569, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 08/20/07

Report Problem", + "NAME": "H05312" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0063048064685, + 38.908188490305065, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/12/07

Report Problem", + "NAME": "H05313" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97432974842071, + 38.93316629444106, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 07/12/07

Report Problem", + "NAME": "H05314" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94177214756726, + 38.90970416449285, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 05/29/07

Report Problem", + "NAME": "H05315" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9490782045424, + 38.89497117674824, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H05316" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93009665441133, + 38.893556261630565, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H05317" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92839610634294, + 38.89589219188854, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H05318" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92755893154089, + 38.89602770208981, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H05319" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9288997421302, + 38.893731427693766, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H05320" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93010694342054, + 38.89291397086683, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Eddy

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H05321" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92900280425049, + 38.89294622159397, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H05322" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9279548618616, + 38.89685607711352, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H05323" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00476611472676, + 38.83369324561206, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H05324" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99191676134575, + 38.832941027768875, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/18/07

Report Problem", + "NAME": "H05325" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97747003444422, + 38.88969819771228, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/01/06

Report Problem", + "NAME": "H05326" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0205995511198, + 38.87397770175878, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/05/07

Report Problem", + "NAME": "H05327" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0161056881362, + 38.89883203353696, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 09/18/07

Report Problem", + "NAME": "H05328" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94696630937725, + 38.883633419712204, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/08/07

Report Problem", + "NAME": "H05329" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94679439594358, + 38.88483676268073, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 09/29/07

Report Problem", + "NAME": "H05330" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9452629422241, + 38.88370139485717, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Eddy

In Service


Last Inspection Date: 06/08/07

Report Problem", + "NAME": "H05331" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9803102195726, + 38.847088184039535, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/08/07

Report Problem", + "NAME": "H05332" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99851284750505, + 38.889966153157346, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H05333" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05816191390761, + 38.90294589892776, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 06/28/07

Report Problem", + "NAME": "H05334" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0874610737096, + 38.948873311928736, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US Pipe, AP Smith

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H05335" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05614455808113, + 38.90168653569009, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/30/07

Report Problem", + "NAME": "H05336" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97601597100676, + 38.903046214579554, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 05/28/07

Report Problem", + "NAME": "H05337" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97305968877532, + 38.90318007400636, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 05/28/07

Report Problem", + "NAME": "H05338" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97407695757303, + 38.90296151826522, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 09/05/07

Report Problem", + "NAME": "H05339" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06405084205406, + 38.9028839671798, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/12/07

Report Problem", + "NAME": "H05340" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9800871536211, + 38.940791427270284, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 02/15/08

Report Problem", + "NAME": "H05341" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00670052175994, + 38.94352657740833, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, CLOW - EDDY

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H05342" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9962431356938, + 38.87667208617181, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, KENNEDY-K81-A/D GUAR

In Service


Last Inspection Date: 11/16/06

Report Problem", + "NAME": "H05343" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09535810201993, + 38.91645696159477, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H05344" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98322197200405, + 38.9470769637264, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H05772" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9444277021068, + 38.86966536842158, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/27/07

Report Problem", + "NAME": "H05773" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98308202550764, + 38.94627435983034, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H05774" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05273431036878, + 38.94075003242173, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 11/18/05

Report Problem", + "NAME": "H05775" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08209134976842, + 38.949611813063065, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP SMITH - O'BRIEN

In Service


Last Inspection Date: 06/05/07

Report Problem", + "NAME": "H05776" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03501679279307, + 38.99094057082654, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H05777" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00452760675826, + 38.94333874189808, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H05778" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97408502324092, + 38.85023320107571, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/06/07

Report Problem", + "NAME": "H05779" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99698976744763, + 38.94636125004855, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H05780" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99713676371535, + 38.947298340058076, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H05781" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94630245638086, + 38.90553917184205, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US PIPE-A P SMITH

In Service


Last Inspection Date: 09/07/07

Report Problem", + "NAME": "H05782" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09898332968342, + 38.93083426915807, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H05783" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97106736384829, + 38.92112225421891, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/30/07

Report Problem", + "NAME": "H05784" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99619621948037, + 38.95191316246679, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 01/17/08

Report Problem", + "NAME": "H05785" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0699158929287, + 38.95838294662499, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Eddy

In Service


Last Inspection Date: 07/30/07

Report Problem", + "NAME": "H05786" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97123180688277, + 38.852939441074504, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/06/07

Report Problem", + "NAME": "H05787" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97021993443934, + 38.852956762797184, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, ASECOND

In Service


Last Inspection Date: 07/06/07

Report Problem", + "NAME": "H05788" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97221823730892, + 38.85308055383485, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/06/07

Report Problem", + "NAME": "H05789" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93751544091515, + 38.90156901873582, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 06/15/07

Report Problem", + "NAME": "H05790" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02643630313452, + 38.940985794020946, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 08/13/07

Report Problem", + "NAME": "H05791" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9486886236881, + 38.893194213513155, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/30/07

Report Problem", + "NAME": "H05792" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01196468484497, + 38.81611175080019, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H05793" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01229113167126, + 38.81695207326778, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/15/07

Report Problem", + "NAME": "H05794" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01609466839653, + 38.81595966846284, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/15/07

Report Problem", + "NAME": "H05796" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01258370061352, + 38.81774323007814, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/15/07

Report Problem", + "NAME": "H05797" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97737109913541, + 38.90024694909009, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 08/28/07

Report Problem", + "NAME": "H05798" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0182686576767, + 38.922573045286946, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/09/07

Report Problem", + "NAME": "H05799" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9630785749578, + 38.873773470346734, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H05800" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94177209820324, + 38.9071659817418, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H05801" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9396499317961, + 38.86937125964632, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, CLOW - EDDY

In Service


Last Inspection Date: 07/27/07

Report Problem", + "NAME": "H05802" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.91998507261452, + 38.901034419180235, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/08/07

Report Problem", + "NAME": "H05803" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93676555665591, + 38.87566850844981, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H05804" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99699130726087, + 38.9383029133492, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H05805" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98947972607715, + 38.86706854419742, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/05/07

Report Problem", + "NAME": "H05806" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0309611201911, + 38.885037349718445, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H04331" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03047903121914, + 38.88503654865234, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H04332" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9574374066653, + 38.893647282596596, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, USP

In Service


Last Inspection Date: 06/01/07

Report Problem", + "NAME": "H04333" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98357835851769, + 38.878723887905146, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H04334" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98434653911396, + 38.942615794350445, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H04335" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98831041513479, + 38.92302299842862, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AM DARLING - B-84-B

In Service


Last Inspection Date: 09/21/07

Report Problem", + "NAME": "H04336" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98498477435501, + 38.921753751284506, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 09/18/07

Report Problem", + "NAME": "H04337" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98661194285748, + 38.922992106824246, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 08/06/07

Report Problem", + "NAME": "H04338" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9846218213071, + 38.92359055484959, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 07/31/07

Report Problem", + "NAME": "H04339" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98576120888207, + 38.922308671042686, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 07/31/07

Report Problem", + "NAME": "H04340" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9860849098168, + 38.922291621248704, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/31/07

Report Problem", + "NAME": "H04341" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0051566762043, + 38.96530814879601, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H04342" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94080412483069, + 38.89683436005604, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 11/19/07

Report Problem", + "NAME": "H04343" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98592404782501, + 38.940661475493464, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H04344" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05624142405397, + 38.95292641422097, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H04345" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09416858043568, + 38.947031880036064, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 12/31/07

Report Problem", + "NAME": "H04346" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07376141114568, + 38.94223943650632, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H04347" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07891053737639, + 38.92465313021852, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H04348" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08037814241008, + 38.92355520464714, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, American Darling

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H04349" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07890915879342, + 38.92356363764547, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, American Darling

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H04350" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08749212856794, + 38.95041450615786, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 12/05/07

Report Problem", + "NAME": "H04351" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97990377268994, + 38.86414929282362, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/05/07

Report Problem", + "NAME": "H04352" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97408323423807, + 38.91414852377485, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/02/07

Report Problem", + "NAME": "H04353" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97426356969697, + 38.89817544599551, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 05/29/07

Report Problem", + "NAME": "H04354" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03405383232327, + 38.941957330896415, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 05/17/07

Report Problem", + "NAME": "H04355" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97616749101634, + 38.926721625727005, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 08/07/07

Report Problem", + "NAME": "H04356" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04497583457153, + 38.93137702251578, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US PIPE-MET 250 M94

In Service


Last Inspection Date: 12/21/07

Report Problem", + "NAME": "H04357" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05915305751323, + 38.976822630001095, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H04358" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9740456833249, + 38.92456220459464, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 08/03/07

Report Problem", + "NAME": "H04359" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9587956842141, + 38.86054217742242, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H04360" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95884183504249, + 38.85933304729061, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 11/19/07

Report Problem", + "NAME": "H04361" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00058788315079, + 38.846502889142755, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H04362" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.91214730248898, + 38.89293112152528, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H04363" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92862122237243, + 38.89961864877854, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H04364" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03840727415464, + 38.91671801912763, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/28/07

Report Problem", + "NAME": "H04885" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9473117957653, + 38.89095836211015, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 05/30/07

Report Problem", + "NAME": "H04886" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97885248960094, + 38.87072844428013, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/27/07

Report Problem", + "NAME": "H04887" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93613071799646, + 38.893786277214275, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/11/07

Report Problem", + "NAME": "H04888" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98448314505494, + 38.921488444689565, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US PIPE-MET 250 M94

In Service


Last Inspection Date: 08/01/07

Report Problem", + "NAME": "H04889" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98801214318598, + 38.92013571958857, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 07/31/07

Report Problem", + "NAME": "H04890" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07056514361017, + 38.94227044340879, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H04891" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00299066434559, + 38.837933116584274, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H04892" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03559190455715, + 38.939989849360686, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/17/07

Report Problem", + "NAME": "H04893" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00075038632602, + 38.91634001521385, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 09/21/07

Report Problem", + "NAME": "H04894" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03145707447457, + 38.96903239044914, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 11/13/07

Report Problem", + "NAME": "H04895" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97639695820709, + 38.90179577036829, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, KENNEDY-K81-A/D GUAR

In Service


Last Inspection Date: 09/20/07

Report Problem", + "NAME": "H04896" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.976398620421, + 38.900918293715435, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 08/30/07

Report Problem", + "NAME": "H04897" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99254332655114, + 38.946338512270465, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 01/16/08

Report Problem", + "NAME": "H04898" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03811370522907, + 38.93988385545386, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 09/13/07

Report Problem", + "NAME": "H04899" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03297633060127, + 38.943087450299835, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 07/19/07

Report Problem", + "NAME": "H04900" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92434839294593, + 38.890841907425056, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H04901" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93156657096162, + 38.89988049165386, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP SMITH - O'BRIEN

In Service


Last Inspection Date: 05/28/07

Report Problem", + "NAME": "H04902" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96949114713723, + 38.86121884139694, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H04903" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01234482122938, + 38.82518999581628, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 07/09/07

Report Problem", + "NAME": "H04904" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97698528805732, + 38.89691055514364, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 05/28/07

Report Problem", + "NAME": "H04905" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06114871389445, + 38.926249688224246, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 10/20/06

Report Problem", + "NAME": "H04906" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98150025790616, + 38.938211873579334, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/18/07

Report Problem", + "NAME": "H04907" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01237917558967, + 38.8304484060221, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H04908" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06231079797175, + 38.95512007551095, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H04909" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98696883526245, + 38.90145697512101, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/12/07

Report Problem", + "NAME": "H04910" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97441014735803, + 38.897081610737494, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 05/29/07

Report Problem", + "NAME": "H04911" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97453502596304, + 38.89621305154919, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 09/26/07

Report Problem", + "NAME": "H04912" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09454369663428, + 38.93818203834453, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 01/09/08

Report Problem", + "NAME": "H04913" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94796489846615, + 38.866243694209345, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H04914" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94738967034276, + 38.8668550986476, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H04915" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95598577737442, + 38.88770828910662, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 05/30/07

Report Problem", + "NAME": "H04916" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01016811902291, + 38.83153291428178, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 11/19/07

Report Problem", + "NAME": "H04917" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98278215240266, + 38.92551126808792, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Eddy

In Service


Last Inspection Date: 08/06/07

Report Problem", + "NAME": "H04918" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0577719928952, + 38.924541798572356, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 01/09/07

Report Problem", + "NAME": "H05345" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96954064114924, + 38.86103968586152, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 07/06/07

Report Problem", + "NAME": "H05346" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05740648369145, + 38.92609225625718, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 11/14/06

Report Problem", + "NAME": "H05347" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97914189542227, + 38.92669498932551, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 08/07/07

Report Problem", + "NAME": "H05348" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08634685875595, + 38.955396662533744, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US Pipe, AP Smith

In Service


Last Inspection Date: 06/05/07

Report Problem", + "NAME": "H05349" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08757434872217, + 38.955391848961035, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US Pipe, AP Smith

In Service


Last Inspection Date: 06/05/07

Report Problem", + "NAME": "H05350" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96712309472149, + 38.93502505523588, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 01/09/08

Report Problem", + "NAME": "H05351" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92186662069173, + 38.88554860682302, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 01/22/08

Report Problem", + "NAME": "H05352" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92386005341119, + 38.88513788880113, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/08/07

Report Problem", + "NAME": "H05353" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9225453130617, + 38.884281912300864, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 01/23/08

Report Problem", + "NAME": "H05354" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92066654003027, + 38.88545204773908, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 01/23/08

Report Problem", + "NAME": "H05355" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.91974921498726, + 38.885938972864516, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 06/08/07

Report Problem", + "NAME": "H05356" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92357400635332, + 38.886407469780586, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, KENNEDY-K81-A/D GUAR

In Service


Last Inspection Date: 09/06/07

Report Problem", + "NAME": "H05357" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9210566474298, + 38.88621966425954, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H05358" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00098222088296, + 38.96206913484772, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AM DARLING - B-62-B

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H05359" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9919239798893, + 38.91870514578134, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, CLOW - EDDY

In Service


Last Inspection Date: 07/31/07

Report Problem", + "NAME": "H05360" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99993764162818, + 38.96206290524546, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AM DARLING - B-84-B

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H05361" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98739055205115, + 38.85863509008467, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H05362" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98323137150355, + 38.84517784164617, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, KENNEDY-K81-A/D GUAR

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H05363" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02552618625118, + 38.949887314626295, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/05/07

Report Problem", + "NAME": "H05364" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93675533019515, + 38.896725146781314, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/05/07

Report Problem", + "NAME": "H05365" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0850027940398, + 38.94784311851121, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H05366" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94564186751613, + 38.88541170555154, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/02/07

Report Problem", + "NAME": "H05367" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92092086297211, + 38.88406431617301, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/08/07

Report Problem", + "NAME": "H05368" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98960940359626, + 38.84317286248802, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/02/07

Report Problem", + "NAME": "H05369" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98864008467258, + 38.84392943653786, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/02/07

Report Problem", + "NAME": "H05370" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98861860163672, + 38.84313363739907, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Kennedy

In Service


Last Inspection Date: 03/11/08

Report Problem", + "NAME": "H05371" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97068665118475, + 38.846013015585534, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H05372" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97167229974202, + 38.84561624787174, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H05373" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96913184562084, + 38.84758237166778, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H05374" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97075567496486, + 38.84798369233439, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 09/06/07

Report Problem", + "NAME": "H05375" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9767221824855, + 38.940356182585624, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H05376" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9691593493674, + 38.848208087115324, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US Pipe

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H05377" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96973286725274, + 38.8466519121057, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H05378" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99659571186065, + 38.93734830243366, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H05807" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05351941905525, + 38.96411241174244, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 09/21/07

Report Problem", + "NAME": "H05808" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9959949192952, + 38.92395748803602, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/30/07

Report Problem", + "NAME": "H05809" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0871016481261, + 38.91057372766045, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H05810" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08675180379811, + 38.90985009527403, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H05811" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00847076962663, + 38.95133610883429, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H05812" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97228215091027, + 38.85225696410726, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/06/07

Report Problem", + "NAME": "H05813" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03425324628465, + 38.940871260223894, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 05/17/07

Report Problem", + "NAME": "H05814" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98318373089532, + 38.88140054879152, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 05/17/06

Report Problem", + "NAME": "H05815" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03334164924286, + 38.961437951302145, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H05816" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0004982191329, + 38.89001893261946, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 01/31/08

Report Problem", + "NAME": "H05817" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99273663493335, + 38.88277421355622, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 11/07/06

Report Problem", + "NAME": "H05818" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00894081891772, + 38.96573501067958, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H05819" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05596680396104, + 38.98036025073512, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/13/07

Report Problem", + "NAME": "H05820" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07892673383769, + 38.94968483351879, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/05/07

Report Problem", + "NAME": "H05821" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06711790133738, + 38.90598078578831, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Kennedy

In Service


Last Inspection Date: 07/02/07

Report Problem", + "NAME": "H05822" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98517476886573, + 38.91033622779275, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/02/07

Report Problem", + "NAME": "H05823" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98129246261607, + 38.908597474827275, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, KENNEDY-K81-A/D GUAR

In Service


Last Inspection Date: 06/02/07

Report Problem", + "NAME": "H05824" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9875644529908, + 38.909119560540795, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 08/23/07

Report Problem", + "NAME": "H05825" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93712208021883, + 38.873932007474636, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/08/07

Report Problem", + "NAME": "H05826" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97906720321647, + 38.91658547541989, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 07/30/07

Report Problem", + "NAME": "H05827" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98026894614443, + 38.91547739838723, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US PIPE-MET 250 M94

In Service


Last Inspection Date: 09/24/07

Report Problem", + "NAME": "H05828" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0186679307301, + 38.892596908355785, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H05829" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.10064765578079, + 38.92938469821102, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H05830" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0236986182379, + 38.96205190077656, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H05831" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.1007062161376, + 38.92835298836681, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H05832" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95786983807483, + 38.89670973468568, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/01/07

Report Problem", + "NAME": "H05833" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0335914887838, + 38.98666253285324, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H05834" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03471781215059, + 38.9869926971265, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H05835" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0217395748448, + 38.90969228354792, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US PIPE-A P SMITH

In Service


Last Inspection Date: 06/12/07

Report Problem", + "NAME": "H05836" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97135059646807, + 38.923492755895694, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/27/07

Report Problem", + "NAME": "H05837" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03067991802416, + 38.94712500264623, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 08/15/07

Report Problem", + "NAME": "H05838" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0120939886857, + 38.900055447565144, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H05839" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0055739769854, + 38.82266215248173, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H05840" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02407027214022, + 38.91185201786605, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 07/18/07

Report Problem", + "NAME": "H04399" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08374470896311, + 38.94331697552041, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/27/07

Report Problem", + "NAME": "H04400" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09453904984362, + 38.946333763235046, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 12/11/07

Report Problem", + "NAME": "H04401" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03533219868035, + 38.967611017276596, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H04402" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06620260835496, + 38.92438530238908, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 08/03/07

Report Problem", + "NAME": "H04403" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.91859154435178, + 38.89277355859029, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H04404" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06095871131957, + 38.95453232319597, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H04405" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07389642351586, + 38.91948788178545, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, American Darling

In Service


Last Inspection Date: 11/08/07

Report Problem", + "NAME": "H04406" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08859736665035, + 38.91367495927595, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H04407" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0871231148422, + 38.91333775057115, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H04408" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01905079226289, + 38.89196386434339, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 12/28/07

Report Problem", + "NAME": "H04409" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03168970613166, + 38.90267357666231, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 09/19/07

Report Problem", + "NAME": "H04410" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03479404406004, + 38.902677332668766, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 12/21/07

Report Problem", + "NAME": "H04411" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99564140493116, + 38.90563778451744, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H04412" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9949250983879, + 38.9055222595509, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H04413" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08884018472197, + 38.95108008402275, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US Pipe, AP Smith

In Service


Last Inspection Date: 06/05/07

Report Problem", + "NAME": "H04414" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95502807202708, + 38.87048948077753, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 11/26/07

Report Problem", + "NAME": "H04415" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02377866844559, + 38.91117320907044, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/11/07

Report Problem", + "NAME": "H04416" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9903194852121, + 38.86574497494948, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/23/07

Report Problem", + "NAME": "H04417" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99363369104861, + 38.936910222274584, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 09/24/07

Report Problem", + "NAME": "H04418" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06290405827463, + 38.97689870189981, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US Pipe, AP Smith

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H04419" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03484495968459, + 38.98042754470442, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H04420" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98079828008791, + 38.8608934140115, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 07/30/07

Report Problem", + "NAME": "H04421" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07185859100335, + 38.91741512859899, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H04422" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02224439440603, + 38.956275109245084, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 12/11/07

Report Problem", + "NAME": "H04423" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98350147003177, + 38.904373540988374, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/01/07

Report Problem", + "NAME": "H04424" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0647939005297, + 38.94649504084284, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Eddy

In Service


Last Inspection Date: 07/19/07

Report Problem", + "NAME": "H04425" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09009388374997, + 38.933534511848876, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/08/07

Report Problem", + "NAME": "H04426" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09275545468826, + 38.94632167961499, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 12/10/07

Report Problem", + "NAME": "H04427" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06467210033686, + 38.957932434728, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Kennedy

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H04428" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06340072761463, + 38.955270954553875, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H04429" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0924177019822, + 38.94483625543618, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 12/27/07

Report Problem", + "NAME": "H04430" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95852894111589, + 38.876824916550774, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/27/07

Report Problem", + "NAME": "H04431" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95747343705025, + 38.89287971951555, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Clow

In Service


Last Inspection Date: 06/01/07

Report Problem", + "NAME": "H04432" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95701109105642, + 38.8888371955463, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/02/07

Report Problem", + "NAME": "H04919" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04675340907951, + 38.89287132091371, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 05/17/07

Report Problem", + "NAME": "H04920" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01997645054664, + 38.88616846818783, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H04921" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96487808535504, + 38.92734886480327, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/27/07

Report Problem", + "NAME": "H04922" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95054040186743, + 38.86322085076671, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H04923" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9691513800051, + 38.87542052644, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/30/07

Report Problem", + "NAME": "H04924" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95208064969906, + 38.86311931957265, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 12/26/07

Report Problem", + "NAME": "H04925" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08016157894583, + 38.94403834902647, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H04926" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05771436921889, + 38.96656424545901, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H04927" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06487812403492, + 38.90327332026708, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 01/01/07

Report Problem", + "NAME": "H04928" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06342198075382, + 38.90275895898322, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/11/07

Report Problem", + "NAME": "H04929" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0198025472746, + 38.895596724314856, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 02/06/08

Report Problem", + "NAME": "H04930" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0061156075087, + 38.94692006560282, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H04931" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0200057987405, + 38.90130658536127, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H04932" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0199969625686, + 38.90272661898074, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 02/07/08

Report Problem", + "NAME": "H04933" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02001930809196, + 38.89850635272143, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, KENNEDY-K81-A/D GUAR

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H04934" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0200059632849, + 38.90098895967974, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H04935" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02001053326973, + 38.89997850940823, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H04936" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02002984357406, + 38.896737117527046, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H04938" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0197983043954, + 38.900329168894444, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H04939" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01979705027189, + 38.904907358966696, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 02/29/08

Report Problem", + "NAME": "H04940" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97699565626603, + 38.91587780576576, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 07/31/07

Report Problem", + "NAME": "H04941" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95001122417332, + 38.8651386792982, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H04942" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08868236238992, + 38.912835209308696, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H04943" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06699749599495, + 38.94776848859413, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/05/07

Report Problem", + "NAME": "H04944" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.072321281086, + 38.94723763818863, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/04/07

Report Problem", + "NAME": "H04945" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03674744010685, + 38.90875873103022, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, KENNEDY-K81-A/D GUAR

In Service


Last Inspection Date: 08/10/07

Report Problem", + "NAME": "H04946" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03619945891404, + 38.90696027763341, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H04947" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03633731965108, + 38.908757318872496, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H04948" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03620206502912, + 38.90752913594826, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 11/05/07

Report Problem", + "NAME": "H04949" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08773012893722, + 38.908452908738305, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 11/29/07

Report Problem", + "NAME": "H04950" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97632078092181, + 38.89345193026794, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/02/07

Report Problem", + "NAME": "H04951" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05300149389484, + 38.97462508524917, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Eddy

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H04952" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98262115476261, + 38.90310847850502, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 08/09/07

Report Problem", + "NAME": "H04953" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97156925417775, + 38.84643727924792, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 09/12/07

Report Problem", + "NAME": "H05379" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97292328554563, + 38.938976212740535, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H05380" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96978849698085, + 38.84594020557552, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US PIPE-MET 250 M94

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H05381" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94888721729193, + 38.892720910674086, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 05/30/07

Report Problem", + "NAME": "H05382" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99047698797429, + 38.95227606798671, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H05383" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99048863527987, + 38.950149855436, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H05384" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98947129501609, + 38.95225754181235, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H05385" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9894406355584, + 38.95128962731958, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H05386" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9906397665663, + 38.95133632026012, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H05387" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94708987675162, + 38.892723218281056, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 05/30/07

Report Problem", + "NAME": "H05388" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97080226062072, + 38.852096793767714, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/06/07

Report Problem", + "NAME": "H05389" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97006697045208, + 38.85513917804312, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/06/07

Report Problem", + "NAME": "H05390" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99559621592604, + 38.83926269236657, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H05392" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97312552141948, + 38.90549578509796, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "KENNEDY

In Service


Last Inspection Date: 08/27/07

Report Problem", + "NAME": "H05393" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97407912173732, + 38.904747037286725, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US PIPE-MET 250 M94

In Service


Last Inspection Date: 08/28/07

Report Problem", + "NAME": "H05394" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94944326633335, + 38.884900862851964, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/02/07

Report Problem", + "NAME": "H05395" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95032242214741, + 38.88406482960428, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H05396" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95167151454748, + 38.88345882499014, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US PIPE-MET 250 M94

In Service


Last Inspection Date: 07/27/07

Report Problem", + "NAME": "H05397" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95098258789362, + 38.88454948036674, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/02/07

Report Problem", + "NAME": "H05398" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94806133795164, + 38.88292427614895, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H05399" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95116367549177, + 38.88541437006546, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/05/07

Report Problem", + "NAME": "H05400" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94952149876084, + 38.88303357551387, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 08/29/07

Report Problem", + "NAME": "H05401" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01903284951779, + 38.89859195289846, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/02/07

Report Problem", + "NAME": "H05402" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.044987779945, + 38.901448472355526, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, CLOW - EDDY

In Service


Last Inspection Date: 05/22/07

Report Problem", + "NAME": "H05403" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04478620615964, + 38.90712354169392, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/11/07

Report Problem", + "NAME": "H05404" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04479326656674, + 38.904835751434106, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 03/06/08

Report Problem", + "NAME": "H05405" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04480854421615, + 38.90581124188021, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/11/07

Report Problem", + "NAME": "H05406" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04499584077479, + 38.90094063209819, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 05/24/07

Report Problem", + "NAME": "H05407" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9721139091053, + 38.87395319068186, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/30/07

Report Problem", + "NAME": "H05408" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97187262494673, + 38.87335563264001, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H05409" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97011235209557, + 38.87310510416403, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H05410" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94640947391078, + 38.88277614366396, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 01/24/07

Report Problem", + "NAME": "H05411" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05896514412423, + 38.93661831916949, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H05413" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05896200911285, + 38.9369278999598, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP SMITH - O'BRIEN

In Service


Last Inspection Date: 06/17/07

Report Problem", + "NAME": "H05414" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9593402986791, + 38.87233184822074, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H05841" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0715093733097, + 38.906558120097145, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "null

In Service


Last Inspection Date: 10/30/07

Report Problem", + "NAME": "H05842" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94046086131658, + 38.88036091505042, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H05843" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96636314112835, + 38.8583540967899, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/06/07

Report Problem", + "NAME": "H05844" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03993575949565, + 38.98880269949869, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H05845" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02789790037157, + 38.90065316761824, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Clow Eddy

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H05846" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02878617012215, + 38.90034583016884, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US Pipe

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H05847" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05735394944952, + 38.964456195335785, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H05848" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96701714797383, + 38.84825124649828, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 08/04/07

Report Problem", + "NAME": "H05849" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00502834788763, + 38.87920177538388, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H05850" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93070057931699, + 38.885421614853634, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/11/07

Report Problem", + "NAME": "H05851" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94101338676967, + 38.884928457104344, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/08/07

Report Problem", + "NAME": "H05852" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00235142256035, + 38.82724917757216, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/15/07

Report Problem", + "NAME": "H05853" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00196949291082, + 38.8298207235464, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H05854" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00212175253381, + 38.828108247496445, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/15/07

Report Problem", + "NAME": "H05855" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00196756870618, + 38.828952550728346, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/15/07

Report Problem", + "NAME": "H05856" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00309651012144, + 38.82238616177905, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H05857" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00415673828145, + 38.823049143578494, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/15/07

Report Problem", + "NAME": "H05858" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95460465958541, + 38.86702253898066, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP SMITH - O'BRIEN

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H05859" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95343992910297, + 38.86654419313684, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 09/08/07

Report Problem", + "NAME": "H05860" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95748144390447, + 38.87447430291672, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H05861" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0539154226598, + 38.98323917815843, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/13/07

Report Problem", + "NAME": "H05862" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02841592057085, + 38.971140952802195, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H05863" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07868874133604, + 38.92623339312654, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Kennedy

In Service


Last Inspection Date: 06/09/07

Report Problem", + "NAME": "H05864" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08208331363964, + 38.92706412044146, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Eddy

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H05865" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05791124199031, + 38.934153201906014, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 01/19/07

Report Problem", + "NAME": "H05866" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06393519471922, + 38.944682848661124, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 01/26/07

Report Problem", + "NAME": "H05867" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0662173522871, + 38.94896883593362, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/05/07

Report Problem", + "NAME": "H05868" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09226496121309, + 38.93857944972431, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H05869" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08217763775764, + 38.93527920992108, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/08/07

Report Problem", + "NAME": "H05870" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00951568229651, + 38.83929344870545, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H05871" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04524595509936, + 38.93966471688504, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 05/14/07

Report Problem", + "NAME": "H05872" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00101695228176, + 38.961352942351006, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H05873" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99735478276324, + 38.961513344850474, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H05874" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99895309516779, + 38.961325710133806, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H05875" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9622451010904, + 38.86297672492007, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H04433" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.10522851420588, + 38.927012286670944, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller, Super Centurion

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H04434" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93472844454767, + 38.87373084274489, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/08/07

Report Problem", + "NAME": "H04435" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0774261063245, + 38.92367876508404, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, American Darling

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H04436" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05477358203676, + 38.94103864816232, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 09/27/07

Report Problem", + "NAME": "H04437" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97733272743392, + 38.89351700929176, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/02/07

Report Problem", + "NAME": "H04438" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08875912058254, + 38.95199010758078, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 11/19/07

Report Problem", + "NAME": "H04439" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0620741852276, + 38.935210603716584, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 03/02/07

Report Problem", + "NAME": "H04440" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95899519231484, + 38.85735990502317, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 08/22/07

Report Problem", + "NAME": "H04441" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05836513551615, + 38.97760067913016, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US Pipe, AP Smith

In Service


Last Inspection Date: 06/13/07

Report Problem", + "NAME": "H04442" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97744795798937, + 38.86830315444358, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - JUMBO

In Service


Last Inspection Date: 08/13/07

Report Problem", + "NAME": "H04443" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98089608157682, + 38.86892898901475, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 06/18/07

Report Problem", + "NAME": "H04444" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05627995660726, + 38.96563840133289, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H04445" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09050464417739, + 38.94874662697343, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US Pipe, AP Smith

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H04446" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00188149899884, + 38.9170436161969, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP SMITH - O'BRIEN

In Service


Last Inspection Date: 09/21/07

Report Problem", + "NAME": "H04447" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95357294660701, + 38.87019551653525, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H04448" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93458187159659, + 38.8774767504435, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H04449" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95821390067368, + 38.868494257030754, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H04450" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95612736666627, + 38.86954284516876, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H04452" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97513531630638, + 38.94191150643074, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H04453" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03945203741759, + 38.939658474334315, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 05/14/07

Report Problem", + "NAME": "H04454" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04079710909922, + 38.939655211034236, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP SMITH - O'BRIEN

In Service


Last Inspection Date: 10/04/07

Report Problem", + "NAME": "H04455" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98531342176409, + 38.85123187388481, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 08/01/07

Report Problem", + "NAME": "H04456" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02961562668881, + 38.98608963101715, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 09/12/07

Report Problem", + "NAME": "H04457" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06703735187567, + 38.94700715787207, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US Pipe, AP Smith

In Service


Last Inspection Date: 06/05/07

Report Problem", + "NAME": "H04458" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06832477460605, + 38.94713234829342, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/15/07

Report Problem", + "NAME": "H04459" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00130771202248, + 38.96382498400293, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H04460" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08114619500478, + 38.96301606225877, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/13/07

Report Problem", + "NAME": "H04461" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0416333193583, + 38.93959158788519, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP SMITH - O'BRIEN

In Service


Last Inspection Date: 09/17/07

Report Problem", + "NAME": "H04462" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00188651893774, + 38.91632212085611, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 09/21/07

Report Problem", + "NAME": "H04463" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97611415105615, + 38.86754483160119, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H04464" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97645379624538, + 38.866548065917556, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H04465" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05970039225984, + 38.96107537631399, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/15/07

Report Problem", + "NAME": "H04466" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96693509495171, + 38.87722023900156, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H04467" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00357748301012, + 38.884185358911424, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/07/07

Report Problem", + "NAME": "H09004" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98996182489935, + 38.84163770984148, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H09005" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9190838851327, + 38.89825298901213, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/08/07

Report Problem", + "NAME": "H09006" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00562726118709, + 38.883615344703756, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/23/07

Report Problem", + "NAME": "H09007" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00480563902512, + 38.883948781701825, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 10/24/06

Report Problem", + "NAME": "H09008" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08849333449118, + 38.94622392877475, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller, Centurion

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H09009" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03360299392004, + 38.88732290161533, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H09010" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00924643451117, + 38.92232010879566, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 10/25/07

Report Problem", + "NAME": "H09011" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92989443682231, + 38.87703660095473, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/08/07

Report Problem", + "NAME": "H09012" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07867231526322, + 38.95771398704769, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/15/07

Report Problem", + "NAME": "H09013" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08011657973411, + 38.95772090656625, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller, Centurion

In Service


Last Inspection Date: 06/15/07

Report Problem", + "NAME": "H09014" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07440646518339, + 38.95772714812114, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H09015" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07724774939429, + 38.9577211616338, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H09016" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07325571214197, + 38.9577276675949, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H09017" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04620715619693, + 38.99074082937913, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H09019" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08022957173232, + 38.959047539045855, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, American Darling

In Service


Last Inspection Date: 06/15/07

Report Problem", + "NAME": "H09020" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08041293006447, + 38.95694125399052, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, U.S. Pipe

In Service


Last Inspection Date: 06/15/07

Report Problem", + "NAME": "H09021" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08018625770872, + 38.9583797592369, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, American Darling, B84B

In Service


Last Inspection Date: 06/15/07

Report Problem", + "NAME": "H09022" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02716711359766, + 38.90314485287352, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 05/30/07

Report Problem", + "NAME": "H09023" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.11008689052852, + 38.936017141943914, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H09024" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07161428737155, + 38.95773617937794, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller, Centurion

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H09025" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.11185197135288, + 38.9366973137694, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H09026" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.11090362040375, + 38.9373850915702, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H09027" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02425178916825, + 38.898385721520825, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H09028" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02474664235955, + 38.898234457436175, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H09029" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08383015424543, + 38.93018513542305, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H09030" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0827398142461, + 38.930212522959145, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H09031" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07472136855726, + 38.928978569847466, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H09032" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07823662247331, + 38.92925954495621, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H09033" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07698472173966, + 38.92890569196667, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H09034" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98649847197449, + 38.834048756474225, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H09035" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95743914350457, + 38.887702413760245, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 05/30/07

Report Problem", + "NAME": "H09036" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07902849186996, + 38.929609300438386, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H09037" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9368312059512, + 38.887520350988865, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H09038" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05605405669904, + 38.923102195678936, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, American Darling

In Service


Last Inspection Date: 01/08/07

Report Problem", + "NAME": "H08970" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05158834990114, + 38.923354926939524, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, American Darling

In Service


Last Inspection Date: 01/08/07

Report Problem", + "NAME": "H08971" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05248187934549, + 38.92357129631647, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, American Darling

In Service


Last Inspection Date: 01/08/07

Report Problem", + "NAME": "H08972" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06838706302851, + 38.97276431368139, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, American Darling

In Service


Last Inspection Date: 06/15/07

Report Problem", + "NAME": "H08973" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05172957515671, + 38.895318715983656, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/30/07

Report Problem", + "NAME": "H08974" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05112613962501, + 38.8946953143176, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/30/07

Report Problem", + "NAME": "H08975" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01659394493691, + 38.88886964654522, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/27/07

Report Problem", + "NAME": "H08976" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01039286728023, + 38.89604137722768, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/27/07

Report Problem", + "NAME": "H08977" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00916793081885, + 38.89625498703594, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H08978" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00976508856019, + 38.896211995770386, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H08979" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00890521939598, + 38.92333068874144, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Kennedy

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H08980" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00887923597604, + 38.92526032659052, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Kennedy

In Service


Last Inspection Date: 07/09/07

Report Problem", + "NAME": "H08981" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00883074380967, + 38.92126451866896, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Kennedy

In Service


Last Inspection Date: 06/18/07

Report Problem", + "NAME": "H08982" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00889758063224, + 38.92144530164201, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, KENNEDY-K81-A/D GUAR

In Service


Last Inspection Date: 09/10/07

Report Problem", + "NAME": "H08983" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93054727831746, + 38.8764421124646, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/11/07

Report Problem", + "NAME": "H08984" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93249502606915, + 38.874956895698226, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, UNKNOWN

In Service


Last Inspection Date: 06/08/07

Report Problem", + "NAME": "H08985" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04685069061479, + 38.90151463618884, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AM DARLING - B-62-B

In Service


Last Inspection Date: 05/24/07

Report Problem", + "NAME": "H08986" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98360661757303, + 38.94077524544294, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H08987" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03094247456977, + 38.930996105813065, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - JUMBO

In Service


Last Inspection Date: 09/18/07

Report Problem", + "NAME": "H08988" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02578610924981, + 38.934131616701535, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Kennedy

In Service


Last Inspection Date: 05/29/07

Report Problem", + "NAME": "H08989" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02733403213745, + 38.932283229446604, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 05/13/07

Report Problem", + "NAME": "H08990" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02863194469406, + 38.9316224567308, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, CLOW - EDDY

In Service


Last Inspection Date: 05/13/07

Report Problem", + "NAME": "H08991" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02962749395054, + 38.931442132553876, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, CLOW - EDDY

In Service


Last Inspection Date: 09/12/07

Report Problem", + "NAME": "H08992" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02525756382916, + 38.93484355909263, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 05/18/07

Report Problem", + "NAME": "H08993" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02617054106372, + 38.93347626731597, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US PIPE-MET 250 M94

In Service


Last Inspection Date: 05/29/07

Report Problem", + "NAME": "H08994" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03122477460342, + 38.930736798657925, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 05/17/07

Report Problem", + "NAME": "H08995" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02010410346386, + 38.957557904088844, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/05/07

Report Problem", + "NAME": "H08996" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97721721870975, + 38.84011618368776, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/06/07

Report Problem", + "NAME": "H08997" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97614963212195, + 38.840954891331414, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/06/07

Report Problem", + "NAME": "H08998" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99388153161837, + 38.949339346515366, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H08999" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97295582131991, + 38.92937535205477, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/27/07

Report Problem", + "NAME": "H09000" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0335954158444, + 38.886626042554695, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H09001" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99033427481527, + 38.84255851269548, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H09002" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9190791514341, + 38.89723296849213, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/08/07

Report Problem", + "NAME": "H09003" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93958261646672, + 38.88752469827424, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/08/07

Report Problem", + "NAME": "H09039" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.938523327564, + 38.88750947990186, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/08/07

Report Problem", + "NAME": "H09040" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03127870290466, + 38.90659966212444, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H09041" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.10971776704318, + 38.93652675550647, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H09042" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92861676514879, + 38.87799075308454, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/08/07

Report Problem", + "NAME": "H09043" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02301952543257, + 38.89907398439239, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H09044" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03251424432464, + 38.930417724084485, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US PIPE-MET 250 M94

In Service


Last Inspection Date: 05/13/07

Report Problem", + "NAME": "H09045" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98868584439664, + 38.84454760042522, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/02/07

Report Problem", + "NAME": "H09046" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98725939623742, + 38.845051791157864, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/02/07

Report Problem", + "NAME": "H09047" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98732571223994, + 38.84362839214157, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US PIPE-A P SMITH

In Service


Last Inspection Date: 07/02/07

Report Problem", + "NAME": "H09048" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98580910873986, + 38.84293345025701, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 03/11/08

Report Problem", + "NAME": "H09049" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02940215543835, + 38.89916231165648, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AM DARLING - B-84-B

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H09050" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99160683377616, + 38.940776481011675, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H09051" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08871662276252, + 38.91792731727288, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, SUP CENT 250

In Service


Last Inspection Date: 02/19/08

Report Problem", + "NAME": "H09052" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06746405218475, + 38.959528589351265, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H09053" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06796380033117, + 38.95895866257383, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 12/07/07

Report Problem", + "NAME": "H09054" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06931031679339, + 38.95733877204453, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/15/07

Report Problem", + "NAME": "H09055" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02513373945062, + 38.88770298662333, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H09056" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06881553284747, + 38.953933470949494, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H09057" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02817215483672, + 38.898833818600494, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H09058" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00891120123002, + 38.95228154820823, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H09059" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0092064164634, + 38.95338395734715, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H09060" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.009980735443, + 38.96353114862895, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 03/06/08

Report Problem", + "NAME": "H09061" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05276349967937, + 38.915618842913894, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/11/07

Report Problem", + "NAME": "H09062" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0143577754417, + 38.88387244475433, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H09063" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00457511249418, + 38.88264351200035, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 12/05/07

Report Problem", + "NAME": "H09064" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00050737183291, + 38.90469006917829, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 10/06/07

Report Problem", + "NAME": "H09065" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05458488194304, + 38.89968110427733, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US PIPE-MET 250 M94

In Service


Last Inspection Date: 05/11/07

Report Problem", + "NAME": "H09066" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04265684650899, + 38.917043862824684, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 12/17/07

Report Problem", + "NAME": "H09067" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0773012092924, + 38.94401442173012, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/04/07

Report Problem", + "NAME": "H09068" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00336697371237, + 38.91265474042744, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H09069" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99957394083697, + 38.899070441190595, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP SMITH - O'BRIEN

In Service


Last Inspection Date: 06/02/07

Report Problem", + "NAME": "H09070" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0718922072102, + 38.96773723434008, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H09071" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08747186075786, + 38.95216442402454, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, American Darling

In Service


Last Inspection Date: 07/29/05

Report Problem", + "NAME": "H09073" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98847895501503, + 38.85906155318294, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/04/07

Report Problem", + "NAME": "H08539" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92810667045268, + 38.88571439599207, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Clow Eddy

In Service


Last Inspection Date: 06/08/07

Report Problem", + "NAME": "H08540" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02720715557734, + 38.92071337546067, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 08/28/07

Report Problem", + "NAME": "H08541" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93789165580496, + 38.90010448716796, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/01/07

Report Problem", + "NAME": "H08542" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93789396160324, + 38.90010430822659, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Clow Eddy

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H08543" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98208247464486, + 38.88278337063967, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 09/21/07

Report Problem", + "NAME": "H08544" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06387838038624, + 38.903921815110316, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/13/07

Report Problem", + "NAME": "H08545" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02549690318271, + 38.97877464139044, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 11/19/07

Report Problem", + "NAME": "H08546" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93395193642357, + 38.875662023478846, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Clow Eddy

In Service


Last Inspection Date: 06/08/07

Report Problem", + "NAME": "H08547" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9565272301833, + 38.91951101565036, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 07/30/07

Report Problem", + "NAME": "H08548" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95524269388355, + 38.91835629358651, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/30/07

Report Problem", + "NAME": "H08549" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95734343310873, + 38.92004651015837, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AM DARLING - B-62-B

In Service


Last Inspection Date: 07/30/07

Report Problem", + "NAME": "H08550" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99247925413083, + 38.91105061211053, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H08551" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99133037406304, + 38.912175448917964, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, CLOW - EDDY

In Service


Last Inspection Date: 07/13/07

Report Problem", + "NAME": "H08552" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92845323810772, + 38.884431328320815, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Eddy

In Service


Last Inspection Date: 06/08/07

Report Problem", + "NAME": "H08553" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98233697261593, + 38.8553387565206, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 10/16/07

Report Problem", + "NAME": "H08554" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04863070654336, + 38.905355998875166, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 08/29/07

Report Problem", + "NAME": "H08555" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98106392750358, + 38.89985231024399, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Clow Eddy

In Service


Last Inspection Date: 05/28/07

Report Problem", + "NAME": "H08556" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98862596823128, + 38.864714629169406, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Clow Eddy

In Service


Last Inspection Date: 12/03/07

Report Problem", + "NAME": "H08557" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06905955237025, + 38.90512515798623, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Clow Eddy

In Service


Last Inspection Date: 07/02/07

Report Problem", + "NAME": "H08558" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04874893378806, + 38.900796514971326, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 05/29/07

Report Problem", + "NAME": "H08559" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05023201934696, + 38.90081481325534, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 03/11/08

Report Problem", + "NAME": "H08560" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.051486002836, + 38.90057705923955, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H08561" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05003038640514, + 38.900531794088835, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 05/23/07

Report Problem", + "NAME": "H08562" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00066339192198, + 38.87852852246565, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 11/16/07

Report Problem", + "NAME": "H08563" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99520649659708, + 38.94263358063965, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 08/28/07

Report Problem", + "NAME": "H08564" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0124059474504, + 38.89345901346585, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H08565" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98558821633338, + 38.881415436809974, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/17/06

Report Problem", + "NAME": "H08566" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06514298878535, + 38.943168915701406, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 05/19/07

Report Problem", + "NAME": "H08567" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00973556235982, + 38.898969701189074, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H08568" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99960440153339, + 38.931680148096184, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 01/18/08

Report Problem", + "NAME": "H08569" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02882084751378, + 38.89538203379702, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Clow Eddy

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H08570" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95577398551826, + 38.921453657739285, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AM DARLING - B-62-B

In Service


Last Inspection Date: 09/27/07

Report Problem", + "NAME": "H08571" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99433799153933, + 38.93442153569604, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H08572" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07024814783125, + 38.96035520520068, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 12/06/06

Report Problem", + "NAME": "H09075" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02157434211952, + 38.93081015312525, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 06/13/07

Report Problem", + "NAME": "H09076" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06044338306467, + 38.95086729619458, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller, Centurion

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H09077" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04138955855865, + 38.92204724629831, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 09/13/07

Report Problem", + "NAME": "H09078" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96813349799348, + 38.84830912049457, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US Pipe

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H09079" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05149556832315, + 38.90622612199416, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 09/11/07

Report Problem", + "NAME": "H09080" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01886129175715, + 38.90487578637114, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 01/24/07

Report Problem", + "NAME": "H09081" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0575355775474, + 38.93343887577325, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Kennedy

In Service


Last Inspection Date: 01/19/07

Report Problem", + "NAME": "H09082" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02412985795266, + 38.915629660431776, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H09083" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04786743972032, + 38.903814381451866, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/10/07

Report Problem", + "NAME": "H09084" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9726642394464, + 38.94079268360396, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H09085" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99687070831642, + 38.84043856150093, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H09086" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99670148941775, + 38.8414251711826, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 05/04/07

Report Problem", + "NAME": "H09087" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99616376450973, + 38.841347438865114, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H09088" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99626546942768, + 38.84012938271303, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H09089" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99558086774195, + 38.84047124749271, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H09090" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96462619801888, + 38.867748767698956, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H09091" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05147823614823, + 38.90459143820292, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/13/06

Report Problem", + "NAME": "H09092" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02645801336642, + 38.91481973063547, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 12/04/07

Report Problem", + "NAME": "H09093" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.10470015106651, + 38.92956594364366, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/12/07

Report Problem", + "NAME": "H09094" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07824829363948, + 38.94508677770197, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 10/26/07

Report Problem", + "NAME": "H09095" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97340828201314, + 38.933240226765925, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 01/02/07

Report Problem", + "NAME": "H09096" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94317102933596, + 38.86839174932191, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H09097" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08272133244417, + 38.90687530869195, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 03/15/07

Report Problem", + "NAME": "H09098" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99685468394523, + 38.87996472586356, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 01/22/07

Report Problem", + "NAME": "H09099" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99811487378193, + 38.88064576924839, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 01/22/07

Report Problem", + "NAME": "H09100" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02726999628489, + 38.90368911361274, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 03/06/08

Report Problem", + "NAME": "H09101" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0019692494539, + 38.92414068820509, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 03/19/07

Report Problem", + "NAME": "H09102" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01801354766188, + 38.91786057760934, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, U.S. Pipe

In Service


Last Inspection Date: 04/25/07

Report Problem", + "NAME": "H09103" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99122699292546, + 38.86560177687061, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H09104" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00582934571723, + 38.836443164116645, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H09105" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00705729089124, + 38.94511711313671, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H09106" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.017932382195, + 38.95840675440536, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/12/07

Report Problem", + "NAME": "H09107" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99387661280471, + 38.82838777400342, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H09108" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00277619794527, + 38.840649169966404, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Clow Eddy

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H08573" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97893477015928, + 38.922249347046964, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, CLOW - EDDY

In Service


Last Inspection Date: 08/02/07

Report Problem", + "NAME": "H08574" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98281480852543, + 38.900163450372936, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 05/28/07

Report Problem", + "NAME": "H08575" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92387367558487, + 38.88513912282087, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Clow Eddy

In Service


Last Inspection Date: 06/08/07

Report Problem", + "NAME": "H08576" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92372227500937, + 38.885729956071486, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Clow Eddy

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H08577" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94976052046304, + 38.897346563918575, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP SMITH - O'BRIEN

In Service


Last Inspection Date: 11/01/07

Report Problem", + "NAME": "H08578" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9780028653113, + 38.92134510906843, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 08/02/07

Report Problem", + "NAME": "H08579" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97710272923885, + 38.92134207151667, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, CLOW - EDDY

In Service


Last Inspection Date: 08/02/07

Report Problem", + "NAME": "H08580" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95547082433256, + 38.916845215248195, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/30/07

Report Problem", + "NAME": "H08581" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0163829945223, + 38.885129586393255, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 02/04/08

Report Problem", + "NAME": "H08582" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.066732816111, + 38.943233905541746, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 05/19/07

Report Problem", + "NAME": "H08583" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0188403268678, + 38.89752307892184, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 10/23/07

Report Problem", + "NAME": "H08584" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01078834197283, + 38.82034062677432, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H08585" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95616480637626, + 38.9173618352077, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/30/07

Report Problem", + "NAME": "H08586" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08778468943332, + 38.912005453128366, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H08588" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0190235699886, + 38.89491934354903, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/23/07

Report Problem", + "NAME": "H08589" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04871429874123, + 38.9027658192885, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 09/21/07

Report Problem", + "NAME": "H08590" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01785694742098, + 38.8949398055434, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 09/19/07

Report Problem", + "NAME": "H08591" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08531548338183, + 38.96025498219793, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Eddy

In Service


Last Inspection Date: 06/15/07

Report Problem", + "NAME": "H08592" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93091026436544, + 38.88471216661913, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 01/18/08

Report Problem", + "NAME": "H08593" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0292329918798, + 38.895165640505745, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Clow Eddy

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H08594" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02817718438348, + 38.89528165745904, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H08595" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02636842694048, + 38.894377792826916, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H08596" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02763771690492, + 38.89472860054361, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Clow Eddy

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H08597" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03624882205068, + 38.91255320036532, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/13/07

Report Problem", + "NAME": "H08598" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95315223039381, + 38.89604881395341, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Eddy

In Service


Last Inspection Date: 06/01/07

Report Problem", + "NAME": "H08599" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9542234507704, + 38.89574466577712, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/01/07

Report Problem", + "NAME": "H08600" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05146632364985, + 38.90712772648776, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/11/07

Report Problem", + "NAME": "H08601" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01505682147155, + 38.89810909931428, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/10/07

Report Problem", + "NAME": "H08602" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0328013762658, + 38.89542667433872, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H08603" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03339296921185, + 38.89543517277314, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Clow Eddy

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H08604" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03228069099289, + 38.895422963803064, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Clow Eddy

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H08606" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03021130752691, + 38.89540046491191, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Clow Eddy

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H08607" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03350770572573, + 38.89625304547842, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Clow Eddy

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H08608" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02960799630996, + 38.961090066635336, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H09109" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05019193509814, + 38.90756477139692, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H09110" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96648470400932, + 38.92013823949831, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H09111" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9297498272209, + 38.87967084813571, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H09112" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94619741559671, + 38.87003159623627, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H09113" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.10102767277525, + 38.947858528055356, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H09114" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05554828483594, + 38.94853023909844, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H09115" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94185638025759, + 38.910048226097835, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H09116" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94165583304925, + 38.91062310166634, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, KENNEDY-K81-A/D GUAR

In Service


Last Inspection Date: 07/23/07

Report Problem", + "NAME": "H09117" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92841214462342, + 38.88896179884377, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H09119" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0080803275818, + 38.922323032865336, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H09120" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08707243694516, + 38.9197300581798, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H09121" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09876766725233, + 38.924753710956594, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H09122" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06290905606541, + 38.95142208519586, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H09123" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04212265248194, + 38.927215723489915, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H09124" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07375563903265, + 38.917683295757456, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H09125" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05579576042543, + 38.966428494542434, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H09127" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08904881612418, + 38.91084858186611, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H09128" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09570717923661, + 38.94523554935284, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H09129" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06305312075824, + 38.921629911800125, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H09130" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06395864164293, + 38.92326983546393, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H09131" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06339716970705, + 38.92246111292508, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H09132" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05880662632796, + 38.91826584899397, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H09133" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.10355354396799, + 38.93630939668897, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H09134" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98861879462714, + 38.86280517775928, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H09135" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03408750048177, + 38.937826883828016, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H09136" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06367368575731, + 38.91837362332335, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H09137" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0741708440765, + 38.93495234787948, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H09138" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92506018847027, + 38.88393071247643, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H09139" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92493181329877, + 38.884481339738386, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H09140" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92204363869698, + 38.89948032821506, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H09141" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.91640749423819, + 38.89241017670246, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H09142" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.91496586742983, + 38.89214454216605, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H09143" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00089124142046, + 38.947265932911634, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H09144" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02974063992806, + 38.895949150130065, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Eddy

In Service


Last Inspection Date: 03/06/08

Report Problem", + "NAME": "H08609" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03350426658844, + 38.895802898442945, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H08610" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04157587307783, + 38.903605552933925, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/04/07

Report Problem", + "NAME": "H08611" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01158647754188, + 38.89739787047814, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Clow Eddy

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H08612" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03210752067322, + 38.88534626194587, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, CLOW - EDDY

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H08613" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97312984969142, + 38.866308436257476, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 08/17/07

Report Problem", + "NAME": "H08614" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03906963220658, + 38.93623050470729, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, CLOW - EDDY

In Service


Last Inspection Date: 09/21/07

Report Problem", + "NAME": "H08615" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03918911488095, + 38.935645546810676, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US PIPE-MET 250 M94

In Service


Last Inspection Date: 09/11/07

Report Problem", + "NAME": "H08616" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04289804909273, + 38.917865163142665, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 08/13/07

Report Problem", + "NAME": "H08617" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03763703123715, + 38.903822692349024, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 07/02/07

Report Problem", + "NAME": "H08618" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03642533723821, + 38.9520148834351, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP SMITH - O'BRIEN

In Service


Last Inspection Date: 07/13/07

Report Problem", + "NAME": "H08620" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03830565562527, + 38.90558203132135, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, KENNEDY-K81-A/D GUAR

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H08621" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99725103922168, + 38.8332830923234, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 06/18/07

Report Problem", + "NAME": "H08622" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99630317677882, + 38.83843283127437, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, CLOW - EDDY

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H08623" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.066625503076, + 38.941529310018225, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 02/09/07

Report Problem", + "NAME": "H08624" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99993013762492, + 38.83681705245397, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Clow Eddy

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H08625" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07331721140595, + 38.924396693909536, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H08626" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07331252436354, + 38.92413384303951, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H08627" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96411210838446, + 38.87183401332887, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Clow Eddy

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H08628" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99312976410624, + 38.93558784763175, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Clow Eddy

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H08629" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97231364336412, + 38.90457533844903, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 05/10/07

Report Problem", + "NAME": "H08630" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04356876428044, + 38.89942150787223, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H08631" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04480016525211, + 38.90660488068256, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/11/07

Report Problem", + "NAME": "H08632" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99136845088773, + 38.856691028575334, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/04/07

Report Problem", + "NAME": "H08633" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98984033585377, + 38.856454659628795, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/04/07

Report Problem", + "NAME": "H08634" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00610322556301, + 38.96182890973894, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, CLOW - EDDY

In Service


Last Inspection Date: 08/01/07

Report Problem", + "NAME": "H08635" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04327724804261, + 38.907184871679476, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/11/07

Report Problem", + "NAME": "H08636" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04277072775197, + 38.908086676633566, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/11/07

Report Problem", + "NAME": "H08637" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93632382533126, + 38.886498083628815, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Clow Eddy

In Service


Last Inspection Date: 08/02/07

Report Problem", + "NAME": "H08638" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.937772868302, + 38.88658598467158, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Clow Eddy

In Service


Last Inspection Date: 06/08/07

Report Problem", + "NAME": "H08639" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92000330174575, + 38.887215707149984, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Clow Eddy

In Service


Last Inspection Date: 06/08/07

Report Problem", + "NAME": "H08640" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01129797638228, + 38.86416133074623, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/05/07

Report Problem", + "NAME": "H08641" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03631511351088, + 38.95069560213885, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP SMITH - O'BRIEN

In Service


Last Inspection Date: 07/13/07

Report Problem", + "NAME": "H08642" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03640989294186, + 38.96209450356922, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H08643" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09378367864437, + 38.91851770325485, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H09145" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0844194101977, + 38.927045394571586, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H09146" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06441627664769, + 38.9243047933927, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H09147" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97771945972165, + 38.85521600151856, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H09148" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03831307100914, + 38.95946090830021, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H09149" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94115878588856, + 38.899671056590996, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H09150" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9407366966845, + 38.899668419982824, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H09151" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0991376094575, + 38.93646688920711, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H09152" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07280482125975, + 38.95335239949877, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H09153" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.10110220180124, + 38.9212167303206, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H09154" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07190949779098, + 38.92613818312947, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H09155" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02128453702582, + 38.931120965843505, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/13/07

Report Problem", + "NAME": "H09156" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.10296233056515, + 38.94532665579319, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/13/07

Report Problem", + "NAME": "H09157" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.10192090967148, + 38.9448149877885, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/13/07

Report Problem", + "NAME": "H09158" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.10206518499017, + 38.94401836694838, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/13/07

Report Problem", + "NAME": "H09159" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.10292406615106, + 38.94463878952908, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/13/07

Report Problem", + "NAME": "H09160" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.11001111691373, + 38.935728803382325, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/13/07

Report Problem", + "NAME": "H09161" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08012954794336, + 38.96494590779582, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/13/07

Report Problem", + "NAME": "H09162" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06212037615211, + 38.97220825480305, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/27/07

Report Problem", + "NAME": "H09163" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00911958466912, + 38.82529102514977, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 07/13/07

Report Problem", + "NAME": "H09164" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00603900133896, + 38.87314829248499, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 02/05/08

Report Problem", + "NAME": "H09165" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0184886036488, + 38.947477979507475, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Kennedy

In Service


Last Inspection Date: 08/07/07

Report Problem", + "NAME": "H09166" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0225139425842, + 38.907191005939524, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 08/31/07

Report Problem", + "NAME": "H09167" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02408928454868, + 38.90676327269332, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, American Darling

In Service


Last Inspection Date: 10/10/07

Report Problem", + "NAME": "H09168" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02440045866837, + 38.90311953742286, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, U.S. Pipe

In Service


Last Inspection Date: 10/10/07

Report Problem", + "NAME": "H09169" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02407891719905, + 38.90433096633858, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 08/31/07

Report Problem", + "NAME": "H09170" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02408624206616, + 38.90499157424918, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 10/10/07

Report Problem", + "NAME": "H09171" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03463471331794, + 38.91679430967951, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 10/10/07

Report Problem", + "NAME": "H09172" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02488832410485, + 38.92748731052724, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US PIPE-MET 250 M94

In Service


Last Inspection Date: 09/04/07

Report Problem", + "NAME": "H09173" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09506403013819, + 38.931655693652665, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 07/20/07

Report Problem", + "NAME": "H09200" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01419335897909, + 38.90569583721601, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 08/23/35

Report Problem", + "NAME": "H09209" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97435898380105, + 38.921337844320796, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 09/13/07

Report Problem", + "NAME": "H09210" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00600777493914, + 38.875924529424545, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 09/13/07

Report Problem", + "NAME": "H09211" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96048194541679, + 38.922145111982026, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, KENNEDY-K81-A/D GUAR

In Service


Last Inspection Date: 09/19/07

Report Problem", + "NAME": "H09212" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0365171720218, + 38.95722354284319, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H08644" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03629389177893, + 38.95627977159117, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H08645" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03630917532455, + 38.95471040089543, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US PIPE-A P SMITH

In Service


Last Inspection Date: 07/09/07

Report Problem", + "NAME": "H08646" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0364698500718, + 38.960254197407686, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H08647" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09957558862641, + 38.94633227510696, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US Pipe, AP Smith

In Service


Last Inspection Date: 06/04/07

Report Problem", + "NAME": "H08648" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05324307807622, + 38.90539970535039, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/11/07

Report Problem", + "NAME": "H08649" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00894028788855, + 38.90318464877102, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Clow Eddy

In Service


Last Inspection Date: 12/04/07

Report Problem", + "NAME": "H08650" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99534466044936, + 38.92166486427478, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H08651" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05645273887436, + 38.90530147588465, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/11/07

Report Problem", + "NAME": "H08653" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03620649184059, + 38.96337918858392, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H08654" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93865236050358, + 38.90497913058511, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H08655" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00815716269088, + 38.876340424827504, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US PIPE-MET 250 M94

In Service


Last Inspection Date: 11/13/07

Report Problem", + "NAME": "H08656" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98657553738025, + 38.89817850053494, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Eddy

In Service


Last Inspection Date: 06/02/07

Report Problem", + "NAME": "H08657" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.931773242978, + 38.8841441907157, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Eddy

In Service


Last Inspection Date: 06/08/07

Report Problem", + "NAME": "H08658" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9930423485349, + 38.9573333541786, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H08659" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92994989815949, + 38.890836788946245, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant,

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H08661" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92997594811217, + 38.883802573958064, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 08/08/07

Report Problem", + "NAME": "H08662" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02697048070101, + 38.917172418815746, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 05/21/06

Report Problem", + "NAME": "H08663" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08223133785353, + 38.95203849934632, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP SMITH - O'BRIEN

In Service


Last Inspection Date: 06/05/07

Report Problem", + "NAME": "H08664" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02606367036198, + 38.91716313882413, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 05/21/06

Report Problem", + "NAME": "H08665" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0703015182813, + 38.92283706239084, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H08666" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07106839101364, + 38.92249210221713, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Eddy

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H08667" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98817930239974, + 38.88904215198616, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US PIPE-MET 250 M94

In Service


Last Inspection Date: 04/12/06

Report Problem", + "NAME": "H08668" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05670833521232, + 38.95181880180764, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H08669" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02801847312037, + 38.91717313612248, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/13/07

Report Problem", + "NAME": "H08670" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0985296394079, + 38.944991079714455, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 01/07/08

Report Problem", + "NAME": "H08671" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0258221077461, + 38.91690732883077, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/21/06

Report Problem", + "NAME": "H08672" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05787320457475, + 38.946203884831085, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Eddy

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H08673" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03250940463836, + 38.897188053460745, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Clow Eddy

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H08674" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92615708432245, + 38.88056312919905, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H08675" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92634950900363, + 38.87977925928223, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/08/07

Report Problem", + "NAME": "H08676" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9228931109311, + 38.882415838617035, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/09/07

Report Problem", + "NAME": "H08677" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92802269818132, + 38.878476877868756, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/08/07

Report Problem", + "NAME": "H08678" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92470871810644, + 38.881252049100986, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H08679" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9878245599078, + 38.9237225709901, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 02/08/08

Report Problem", + "NAME": "H09213" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03731597080925, + 38.90863732553582, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant,

In Service


Last Inspection Date: 10/10/07

Report Problem", + "NAME": "H09214" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08577616013496, + 38.91399775225103, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Kennedy

In Service


Last Inspection Date: 10/19/07

Report Problem", + "NAME": "H09215" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08117232595204, + 38.906624008174255, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 10/19/07

Report Problem", + "NAME": "H09216" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03475152340339, + 38.96119169648588, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 10/19/07

Report Problem", + "NAME": "H09217" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0059644714094, + 38.90576332599382, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 10/19/07

Report Problem", + "NAME": "H09219" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00568250168304, + 38.907186244644734, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, American Darling

In Service


Last Inspection Date: 10/19/07

Report Problem", + "NAME": "H09220" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00432703588632, + 38.90728189928287, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, American Darling

In Service


Last Inspection Date: 10/19/07

Report Problem", + "NAME": "H09221" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00343405921083, + 38.9081582067841, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, American Darling

In Service


Last Inspection Date: 09/28/07

Report Problem", + "NAME": "H09222" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00034088857399, + 38.83846501346144, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant,

In Service


Last Inspection Date: 10/02/07

Report Problem", + "NAME": "H09223" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99960080784255, + 38.83813712361215, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant,

In Service


Last Inspection Date: 10/02/07

Report Problem", + "NAME": "H09224" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99985962331871, + 38.83740941232444, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant,

In Service


Last Inspection Date: 10/02/07

Report Problem", + "NAME": "H09225" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95688877125403, + 38.92222182671161, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 10/01/07

Report Problem", + "NAME": "H09226" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01760034198207, + 38.90729710297956, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 10/02/07

Report Problem", + "NAME": "H09227" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06624073525964, + 38.953201423673065, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Eddy

In Service


Last Inspection Date: 10/02/07

Report Problem", + "NAME": "H09228" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92913156939407, + 38.882355344568744, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 11/06/07

Report Problem", + "NAME": "H09229" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93027475983557, + 38.882423091085336, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 11/06/07

Report Problem", + "NAME": "H09230" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93130519026096, + 38.882261289449474, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 11/06/07

Report Problem", + "NAME": "H09231" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93109090951636, + 38.88194094199932, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 11/06/07

Report Problem", + "NAME": "H09232" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92995346739029, + 38.88168354426477, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 11/06/07

Report Problem", + "NAME": "H09233" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92926175286132, + 38.88168796486839, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 11/06/07

Report Problem", + "NAME": "H09234" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00313297767796, + 38.84516448239475, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 10/09/07

Report Problem", + "NAME": "H09235" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99692024402691, + 38.841638380100676, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 10/10/07

Report Problem", + "NAME": "H09236" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95021359767463, + 38.92198895680593, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 11/21/07

Report Problem", + "NAME": "H09237" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9579299449329, + 38.9229395208611, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 10/22/07

Report Problem", + "NAME": "H09238" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95938626070784, + 38.92353032431596, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 10/24/07

Report Problem", + "NAME": "H09239" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95847938418572, + 38.92279785431506, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 10/24/07

Report Problem", + "NAME": "H09240" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95760369554229, + 38.92229999224416, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 10/24/07

Report Problem", + "NAME": "H09241" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95615038327321, + 38.92200928886095, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Eddy

In Service


Last Inspection Date: 10/24/07

Report Problem", + "NAME": "H09242" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9543213685154, + 38.92251046894431, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, KENNEDY-K81-A/D GUAR

In Service


Last Inspection Date: 10/24/07

Report Problem", + "NAME": "H09243" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95254171269899, + 38.922466952213284, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, CLOW - EDDY

In Service


Last Inspection Date: 10/24/07

Report Problem", + "NAME": "H09244" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02475624239386, + 38.81511391306391, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Blue Plains # C6FH1

In Service


Last Inspection Date: 10/18/07

Report Problem", + "NAME": "H09246" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06198194751812, + 38.93573992641686, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 10/18/07

Report Problem", + "NAME": "H09252" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05678210789156, + 38.95360997067364, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 10/18/07

Report Problem", + "NAME": "H09253" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0123858362094, + 38.828744102767445, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 12/04/07

Report Problem", + "NAME": "H08716" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98754090090777, + 38.833196410884035, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H08717" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9742776640474, + 38.92162172376561, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP SMITH - O'BRIEN

In Service


Last Inspection Date: 08/02/07

Report Problem", + "NAME": "H08718" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93916313099159, + 38.88659397782849, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Clow Eddy

In Service


Last Inspection Date: 02/06/08

Report Problem", + "NAME": "H08719" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02411427793977, + 38.89621935576537, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H08720" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00894501157781, + 38.89966655200319, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Clow Eddy

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H08721" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95543539481729, + 38.91702175603697, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/30/07

Report Problem", + "NAME": "H08722" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93673635039156, + 38.902866577574734, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Clow Eddy

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H08723" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09740785062755, + 38.94627545753691, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/04/07

Report Problem", + "NAME": "H08724" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05951181249839, + 38.92439979219147, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Eddy

In Service


Last Inspection Date: 01/16/07

Report Problem", + "NAME": "H08725" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00719253295067, + 38.89904011461296, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H08726" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00703195557956, + 38.89959103062003, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H08727" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05022256405657, + 38.90669025481118, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 09/11/07

Report Problem", + "NAME": "H08728" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99921924360699, + 38.920356747571944, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP SMITH - O'BRIEN

In Service


Last Inspection Date: 06/01/07

Report Problem", + "NAME": "H08729" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99480636483248, + 38.9406118332587, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H08730" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04527402585663, + 38.98588461797464, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H08731" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01814302217667, + 38.95880404920544, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/09/07

Report Problem", + "NAME": "H08732" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01701177841085, + 38.95882519049787, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/09/07

Report Problem", + "NAME": "H08733" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95850855229487, + 38.88765021662725, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/30/07

Report Problem", + "NAME": "H08734" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94987427777586, + 38.90156101218892, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, CLOW - EDDY

In Service


Last Inspection Date: 06/11/07

Report Problem", + "NAME": "H08735" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95099383531999, + 38.90076210352137, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, CLOW - EDDY

In Service


Last Inspection Date: 05/21/07

Report Problem", + "NAME": "H08736" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95160739815256, + 38.90006137382878, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Eddy

In Service


Last Inspection Date: 05/21/07

Report Problem", + "NAME": "H08737" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9506869221206, + 38.89935376957078, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/01/07

Report Problem", + "NAME": "H08738" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94943419635878, + 38.89937397130198, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Eddy

In Service


Last Inspection Date: 06/01/07

Report Problem", + "NAME": "H08739" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94990358588407, + 38.89991547689804, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Eddy

In Service


Last Inspection Date: 06/01/07

Report Problem", + "NAME": "H08740" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94888915521787, + 38.90071557434845, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/01/07

Report Problem", + "NAME": "H08741" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94976507820202, + 38.90063092438199, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Eddy

In Service


Last Inspection Date: 06/01/07

Report Problem", + "NAME": "H08742" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94880481857784, + 38.899890110458124, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 10/02/07

Report Problem", + "NAME": "H08743" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08502300070731, + 38.96120636834058, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/05/07

Report Problem", + "NAME": "H08744" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08245619336594, + 38.96305487221091, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/13/07

Report Problem", + "NAME": "H08745" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98921235707812, + 38.920913047791174, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/31/07

Report Problem", + "NAME": "H08747" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99271458108961, + 38.91827389700935, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, CLOW - EDDY

In Service


Last Inspection Date: 07/31/07

Report Problem", + "NAME": "H08748" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.000642778057, + 38.89686912089262, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H08750" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99426785972668, + 38.957170380157024, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Eddy

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H08751" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9977977081463, + 38.956312525984444, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Clow Eddy

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H08752" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9910333859845, + 38.85783473998021, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 10/18/07

Report Problem", + "NAME": "H09254" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03484254061438, + 38.924854356532954, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 10/18/07

Report Problem", + "NAME": "H09255" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92492428778557, + 38.90493126258286, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 10/18/07

Report Problem", + "NAME": "H09256" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05359944418875, + 38.93963261059847, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 10/18/07

Report Problem", + "NAME": "H09257" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05497419264395, + 38.93358499815553, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 10/18/07

Report Problem", + "NAME": "H09258" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01963994825064, + 38.91685340945908, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 11/13/07

Report Problem", + "NAME": "H09259" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9393199621042, + 38.9095423789871, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 10/18/07

Report Problem", + "NAME": "H09260" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0569848218339, + 38.915468141927384, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 10/18/07

Report Problem", + "NAME": "H09261" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05026678134584, + 38.8969760471546, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 10/18/07

Report Problem", + "NAME": "H09262" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99579511363885, + 38.910090264103694, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 10/19/07

Report Problem", + "NAME": "H09263" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02964645346998, + 38.923367300566554, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Kennedy

In Service


Last Inspection Date: 10/19/07

Report Problem", + "NAME": "H09264" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99652434753408, + 38.923666977676156, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Kennedy

In Service


Last Inspection Date: 10/19/07

Report Problem", + "NAME": "H09265" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04244517980435, + 38.921569777825226, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 10/19/07

Report Problem", + "NAME": "H09266" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02863271827209, + 38.90959566054185, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Kennedy

In Service


Last Inspection Date: 10/29/07

Report Problem", + "NAME": "H09267" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97879161578743, + 38.906967690069855, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 10/29/07

Report Problem", + "NAME": "H09268" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08660677716558, + 38.953353367458945, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, CLOW - EDDY

In Service


Last Inspection Date: 10/29/07

Report Problem", + "NAME": "H09269" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97998503074454, + 38.86167664955933, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Kennedy

In Service


Last Inspection Date: 10/29/07

Report Problem", + "NAME": "H09270" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01582900249406, + 38.81408747120256, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 10/29/07

Report Problem", + "NAME": "H09271" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04353400002903, + 38.90876056131167, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 10/29/07

Report Problem", + "NAME": "H09272" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9834197310972, + 38.881702759897244, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Am. Darling

In Service


Last Inspection Date: 10/29/07

Report Problem", + "NAME": "H09273" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00472157906025, + 38.873093230776824, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Eddy

In Service


Last Inspection Date: 07/11/07

Report Problem", + "NAME": "H09274" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98465617367789, + 38.95082372991569, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 11/20/07

Report Problem", + "NAME": "H09275" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98358834951473, + 38.95033262497695, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Eddy

In Service


Last Inspection Date: 10/29/07

Report Problem", + "NAME": "H09276" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98419270966416, + 38.95004420025911, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Eddy

In Service


Last Inspection Date: 10/29/07

Report Problem", + "NAME": "H09277" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.91906978186881, + 38.89471075395269, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 11/07/07

Report Problem", + "NAME": "H09278" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99739549998577, + 38.87881243983216, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Am Darling

In Service


Last Inspection Date: 01/18/08

Report Problem", + "NAME": "H09279" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97697794278825, + 38.918670907205694, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Eddy

In Service


Last Inspection Date: 10/29/07

Report Problem", + "NAME": "H09280" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00765329097595, + 38.87469895781118, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 10/29/07

Report Problem", + "NAME": "H09281" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00814307381587, + 38.874570203679475, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 10/29/07

Report Problem", + "NAME": "H09282" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02698543669445, + 38.88109182517637, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, CLOW - EDDY

In Service


Last Inspection Date: 10/29/07

Report Problem", + "NAME": "H09283" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95334734690051, + 38.922382256060715, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 11/20/07

Report Problem", + "NAME": "H09284" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01735475465979, + 38.904358562165754, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 10/29/07

Report Problem", + "NAME": "H09285" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94875785077852, + 38.919135021316265, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 01/02/08

Report Problem", + "NAME": "H09287" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01647577934592, + 38.887834483621496, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Am Darling

In Service


Last Inspection Date: 01/23/08

Report Problem", + "NAME": "H09289" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92176550434398, + 38.88329910897763, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/08/07

Report Problem", + "NAME": "H08680" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92708947381672, + 38.87919746603908, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/08/07

Report Problem", + "NAME": "H08681" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92408481032187, + 38.88149445740319, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/08/07

Report Problem", + "NAME": "H08682" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92724450655383, + 38.88085838608868, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 01/22/08

Report Problem", + "NAME": "H08683" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07249169154235, + 38.94104680332024, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Eddy

In Service


Last Inspection Date: 09/26/07

Report Problem", + "NAME": "H08684" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06213333298192, + 38.910528947731486, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Clow Eddy

In Service


Last Inspection Date: 08/14/07

Report Problem", + "NAME": "H08685" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99943835888241, + 38.83179842987002, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Clow Eddy

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H08686" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.91907201002455, + 38.893640804205596, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H08687" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02385434134246, + 38.901869704953135, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP SMITH - O'BRIEN

In Service


Last Inspection Date: 09/13/07

Report Problem", + "NAME": "H08688" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01076323869623, + 38.82859341691804, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Clow Eddy

In Service


Last Inspection Date: 06/15/07

Report Problem", + "NAME": "H08689" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0447586788924, + 38.923942625522734, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 10/19/06

Report Problem", + "NAME": "H08690" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92417114762259, + 38.883791733801765, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Clow Eddy

In Service


Last Inspection Date: 06/08/07

Report Problem", + "NAME": "H08691" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98462632190741, + 38.89806074620181, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/02/07

Report Problem", + "NAME": "H08692" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98464381741263, + 38.89738229270767, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/02/07

Report Problem", + "NAME": "H08693" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07718089395061, + 38.93598943465808, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Clow Eddy, Eddy

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H08694" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07757129766513, + 38.9367000302747, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Clow Eddy, Eddy

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H08695" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07584002977998, + 38.937236214401075, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H08696" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07706932574608, + 38.93905212281427, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Clow Eddy, Eddy

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H08697" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07544023444585, + 38.93934356801358, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Clow Eddy, Eddy

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H08698" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07768494898157, + 38.93774250334308, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Clow Eddy, Eddy

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H08699" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07474534176015, + 38.93553232380206, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H08700" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02982851136642, + 38.908624000642575, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Clow Eddy

In Service


Last Inspection Date: 05/30/07

Report Problem", + "NAME": "H08701" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02096405326786, + 38.90174500717568, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/02/07

Report Problem", + "NAME": "H08703" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99859094633403, + 38.89606670313516, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H08704" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92814733406689, + 38.886446604404135, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/08/07

Report Problem", + "NAME": "H08705" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93251427921629, + 38.8869028262654, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, CLOW - EDDY

In Service


Last Inspection Date: 08/10/07

Report Problem", + "NAME": "H08706" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0034341312402, + 38.89624412593952, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H08707" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00041705038856, + 38.89617952263983, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H08708" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93046233533161, + 38.886739300636116, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/08/07

Report Problem", + "NAME": "H08709" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.002188089492, + 38.89618109737246, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H08710" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01868116301925, + 38.89351866065366, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H08711" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02970206975802, + 38.91248058503723, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, CLOW - EDDY

In Service


Last Inspection Date: 05/18/07

Report Problem", + "NAME": "H08712" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02981000497276, + 38.911903447315964, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H08713" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93246260635284, + 38.88485872213008, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/08/07

Report Problem", + "NAME": "H08714" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99889835956795, + 38.94631824204952, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H08715" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00704136408936, + 38.885008072195916, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 01/23/08

Report Problem", + "NAME": "H09290" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95490844331678, + 38.92177986069538, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, CLOW - EDDY

In Service


Last Inspection Date: 01/23/08

Report Problem", + "NAME": "H09291" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9513086707524, + 38.922063673823594, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, CLOW - EDDY

In Service


Last Inspection Date: 01/23/08

Report Problem", + "NAME": "H09292" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00297870587309, + 38.8204773226711, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 01/23/08

Report Problem", + "NAME": "H09293" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05157131009331, + 38.93632515399027, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP SMITH - O'BRIEN

In Service


Last Inspection Date: 11/16/07

Report Problem", + "NAME": "H09294" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9495104797852, + 38.92002390334836, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, CLOW - EDDY

In Service


Last Inspection Date: 11/16/07

Report Problem", + "NAME": "H09295" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00887852285749, + 38.87368417400741, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 11/16/07

Report Problem", + "NAME": "H09296" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94949797892636, + 38.921783647311045, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AM DARLING - B-84-B

In Service


Last Inspection Date: 11/16/07

Report Problem", + "NAME": "H09297" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02415624676367, + 38.93621100856753, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Eddy

In Service


Last Inspection Date: 08/29/40

Report Problem", + "NAME": "H09298" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02442615867146, + 38.93595231520718, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 08/29/40

Report Problem", + "NAME": "H09299" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02609666353408, + 38.937559737122406, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 12/17/07

Report Problem", + "NAME": "H09300" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94939449191173, + 38.9211680997582, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, CLOW - EDDY

In Service


Last Inspection Date: 01/23/08

Report Problem", + "NAME": "H09301" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05972008660773, + 38.937843839182165, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 03/07/08

Report Problem", + "NAME": "H09303" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9884488395658, + 38.87414238669879, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, American Darling

In Service


Last Inspection Date: 11/19/07

Report Problem", + "NAME": "H09304" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01075912714681, + 38.88484834953486, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 11/20/07

Report Problem", + "NAME": "H09307" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98616535584016, + 38.93174177554106, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 01/23/08

Report Problem", + "NAME": "H09308" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0229307459235, + 38.97470163447889, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 01/07/08

Report Problem", + "NAME": "H09309" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00602604304966, + 38.87431165593684, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 01/23/08

Report Problem", + "NAME": "H09310" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00270167910509, + 38.836865495703044, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 01/23/08

Report Problem", + "NAME": "H09311" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09789717388706, + 38.92599935744832, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 01/23/08

Report Problem", + "NAME": "H09312" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96160666683869, + 38.92290792427751, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 01/23/08

Report Problem", + "NAME": "H09313" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95758538479275, + 38.93051777670375, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 01/23/08

Report Problem", + "NAME": "H09314" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01623186735475, + 38.913344618983736, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Eddy

In Service


Last Inspection Date: 01/24/08

Report Problem", + "NAME": "H09315" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06442779964327, + 38.938998788117466, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 04/02/30

Report Problem", + "NAME": "H09316" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04492253938406, + 38.91340050265108, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 01/17/08

Report Problem", + "NAME": "H09317" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9631310490341, + 38.924952655145624, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 01/24/08

Report Problem", + "NAME": "H09318" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96655507916714, + 38.91706741053211, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 01/25/08

Report Problem", + "NAME": "H09319" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99833925795618, + 38.87756015531194, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Am Darling

In Service


Last Inspection Date: 01/22/08

Report Problem", + "NAME": "H09320" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.91878616593085, + 38.88958460278862, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 01/24/08

Report Problem", + "NAME": "H09321" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00933868020185, + 38.87197153292126, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 02/05/08

Report Problem", + "NAME": "H09322" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00890359683652, + 38.871819937468985, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 02/05/08

Report Problem", + "NAME": "H09323" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00756097818527, + 38.87117409356284, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 02/05/08

Report Problem", + "NAME": "H09324" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0066963196627, + 38.87152652806933, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 02/05/08

Report Problem", + "NAME": "H09325" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00849222136488, + 38.87081333305187, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 02/05/08

Report Problem", + "NAME": "H09326" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99431464556976, + 38.95642802955262, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Clow Eddy

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H08753" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9914366175631, + 38.954583078672904, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Clow Eddy

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H08754" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96700810746621, + 38.86464720208796, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H08755" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9659872441215, + 38.864224378497006, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H08756" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96460894537778, + 38.863711128787294, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H08757" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96763373361483, + 38.86553339070093, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 08/17/07

Report Problem", + "NAME": "H08758" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96613072149334, + 38.862597031785256, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, CLOW - EDDY

In Service


Last Inspection Date: 08/20/07

Report Problem", + "NAME": "H08759" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96730990863365, + 38.86332970713221, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, CLOW - EDDY

In Service


Last Inspection Date: 08/20/07

Report Problem", + "NAME": "H08760" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01778644994052, + 38.91354216170856, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/11/07

Report Problem", + "NAME": "H08761" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07548153425437, + 38.91275512895882, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/02/07

Report Problem", + "NAME": "H08762" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07523671171474, + 38.91252506068831, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H08763" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07398417995368, + 38.91262140294875, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/02/07

Report Problem", + "NAME": "H08764" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07620466046885, + 38.91256654740798, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H08765" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08259014522528, + 38.912883571964244, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H08766" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.08164952241454, + 38.91259664174641, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H08767" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00500905428665, + 38.90988776990425, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/12/07

Report Problem", + "NAME": "H08768" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00476109283106, + 38.897079614148794, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H08769" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02387038061198, + 38.894678795089796, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H08770" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03086190785439, + 38.91709656058297, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/13/07

Report Problem", + "NAME": "H08771" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0297118888888, + 38.916759568717914, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/13/07

Report Problem", + "NAME": "H08772" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02816493910211, + 38.896791975907256, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/02/07

Report Problem", + "NAME": "H08773" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01653222067856, + 38.9004082026011, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 07/02/07

Report Problem", + "NAME": "H08774" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01316311014868, + 38.900283765943584, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H08775" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0092874073791, + 38.90027519304724, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Clow Eddy

In Service


Last Inspection Date: 06/27/07

Report Problem", + "NAME": "H08776" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00928195840858, + 38.90030505618723, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H08777" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00668024480795, + 38.96545990568684, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/24/07

Report Problem", + "NAME": "H08778" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94550679698732, + 38.87166270732186, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 08/07/07

Report Problem", + "NAME": "H08779" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94864753687541, + 38.87267007211219, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H08780" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0098480825433, + 38.90027040873241, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H08781" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01057145694017, + 38.90027449836676, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H08782" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01372806366703, + 38.90034702967891, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/02/07

Report Problem", + "NAME": "H08783" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92622347641245, + 38.90457663859126, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, CLOW - EDDY

In Service


Last Inspection Date: 05/28/07

Report Problem", + "NAME": "H08784" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01270689411403, + 38.89880922911742, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/27/07

Report Problem", + "NAME": "H08785" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02816231811993, + 38.89695654133128, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H08786" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03184846819468, + 38.900326910649255, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Clow Eddy

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H08787" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00603296870757, + 38.87526238391792, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 02/05/08

Report Problem", + "NAME": "H09327" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00579855860819, + 38.87530645586449, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 02/05/08

Report Problem", + "NAME": "H09328" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03228881386602, + 38.90980407028345, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Kennedy

In Service


Last Inspection Date: 02/05/08

Report Problem", + "NAME": "H09329" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0424313981925, + 38.90970658186085, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 03/05/08

Report Problem", + "NAME": "H09331" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01980048400594, + 38.89896138429871, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 03/04/08

Report Problem", + "NAME": "H09332" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0197897148647, + 38.89966073211877, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 02/05/08

Report Problem", + "NAME": "H09333" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07260007877383, + 38.922600638857574, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 02/11/08

Report Problem", + "NAME": "H09334" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.91955468659461, + 38.888397145538676, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 02/11/08

Report Problem", + "NAME": "H09335" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.91882591439352, + 38.88866839715733, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 02/11/08

Report Problem", + "NAME": "H09336" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.91817019879976, + 38.888008309955815, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 02/11/08

Report Problem", + "NAME": "H09337" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9192318088207, + 38.887564386148846, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 02/11/08

Report Problem", + "NAME": "H09338" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00441930506632, + 38.878433014833476, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 02/20/08

Report Problem", + "NAME": "H09339" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00222548091834, + 38.823995059116136, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 02/14/08

Report Problem", + "NAME": "H09340" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00339713525518, + 38.8259588777402, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 02/15/08

Report Problem", + "NAME": "H09341" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00366669730415, + 38.83047224678334, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 02/15/08

Report Problem", + "NAME": "H09342" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95001355327334, + 38.91932828938052, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Eddy

In Service


Last Inspection Date: 03/03/08

Report Problem", + "NAME": "H09344" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95436733392737, + 38.91894300981501, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Eddy

In Service


Last Inspection Date: 03/03/08

Report Problem", + "NAME": "H09345" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01120709117866, + 38.82221083722736, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Eddy

In Service


Last Inspection Date: 03/03/08

Report Problem", + "NAME": "H09346" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98648607661214, + 38.85718614604409, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Kennedy

In Service


Last Inspection Date: 03/12/08

Report Problem", + "NAME": "H09347" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.041676246334, + 38.94714072415591, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 03/03/08

Report Problem", + "NAME": "H09348" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04102689629917, + 38.94680192721034, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 03/03/08

Report Problem", + "NAME": "H09349" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99351976995797, + 38.82914942057292, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Clow Eddy

In Service


Last Inspection Date: 06/15/07

Report Problem", + "NAME": "H08788" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02306623927376, + 38.90200428589626, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Clow Eddy

In Service


Last Inspection Date: 06/01/07

Report Problem", + "NAME": "H08789" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02273902097328, + 38.90094169730195, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/01/07

Report Problem", + "NAME": "H08790" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01354351443048, + 38.905663898680736, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/12/07

Report Problem", + "NAME": "H08791" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01611015837176, + 38.90520113832982, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 10/13/07

Report Problem", + "NAME": "H08792" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99126877216338, + 38.82926070859868, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Clow Eddy

In Service


Last Inspection Date: 10/09/07

Report Problem", + "NAME": "H08793" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9962210632459, + 38.82929124246931, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Clow Eddy

In Service


Last Inspection Date: 06/15/07

Report Problem", + "NAME": "H08794" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98596243998557, + 38.95270681195157, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 10/26/07

Report Problem", + "NAME": "H08795" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05914725121823, + 38.901338907915296, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/30/07

Report Problem", + "NAME": "H08796" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02816488572094, + 38.90205840720238, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Clow Eddy

In Service


Last Inspection Date: 06/02/07

Report Problem", + "NAME": "H08797" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00438123513435, + 38.8768691951298, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 01/08/08

Report Problem", + "NAME": "H08798" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00729788668431, + 38.87638065012211, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 07/30/07

Report Problem", + "NAME": "H08799" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02953115953406, + 38.88513969491125, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H08800" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02174856904672, + 38.90848554213636, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H08801" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94764937578191, + 38.90081239671709, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, KENNEDY-K81-A/D GUAR

In Service


Last Inspection Date: 01/15/08

Report Problem", + "NAME": "H08804" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03456215344579, + 38.895293410353915, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H08805" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0187164660632, + 38.91731535508084, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 09/22/06

Report Problem", + "NAME": "H08806" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00064074063144, + 38.89720034941164, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H08807" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01764854205611, + 38.91739140742575, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/11/07

Report Problem", + "NAME": "H08808" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00186229085949, + 38.897264989345544, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H08809" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99579591702195, + 38.86301105765919, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 06/05/07

Report Problem", + "NAME": "H08810" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04134678878712, + 38.94826382225088, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, CLOW - EDDY

In Service


Last Inspection Date: 07/18/07

Report Problem", + "NAME": "H08812" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9947575163789, + 38.860123304058206, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/04/07

Report Problem", + "NAME": "H08813" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93580729222725, + 38.88550585180411, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/08/07

Report Problem", + "NAME": "H08814" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.93350421003265, + 38.88206520635128, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 09/17/07

Report Problem", + "NAME": "H08815" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07033226944189, + 38.95585197812847, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, OTHER, SEE FLD NOTES

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H08816" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00053821190153, + 38.86497991214398, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, CLOW - EDDY

In Service


Last Inspection Date: 07/09/07

Report Problem", + "NAME": "H08817" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99867121250075, + 38.86451523383149, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, CLOW - EDDY

In Service


Last Inspection Date: 07/09/07

Report Problem", + "NAME": "H08818" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0532404472594, + 38.90606095552444, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/11/07

Report Problem", + "NAME": "H08819" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02167392330027, + 38.91226876229872, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/12/07

Report Problem", + "NAME": "H08820" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0220094395951, + 38.91607889222257, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 10/04/06

Report Problem", + "NAME": "H08821" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02174173458414, + 38.91265460385914, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/11/07

Report Problem", + "NAME": "H08822" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02200785880494, + 38.91166616810135, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H08823" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02174802471912, + 38.915624200529365, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 10/31/07

Report Problem", + "NAME": "H08825" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05409560402761, + 38.910519496075764, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/12/07

Report Problem", + "NAME": "H08861" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05216748407929, + 38.91064744453669, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/12/07

Report Problem", + "NAME": "H08862" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05607816992051, + 38.9106080051977, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/02/07

Report Problem", + "NAME": "H08863" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05721275393297, + 38.91064462356736, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 02/07/08

Report Problem", + "NAME": "H08864" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02699217347983, + 38.88744503140304, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H08865" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02567433151633, + 38.88745080560488, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H08866" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0639111800448, + 38.910509981111844, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/25/07

Report Problem", + "NAME": "H08867" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0019330980894, + 38.84337726915251, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H08868" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00914338527055, + 38.83390007124215, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 10/02/07

Report Problem", + "NAME": "H08869" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.10089936078661, + 38.93233392892799, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Clow Eddy, Eddy

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H08870" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09919728642942, + 38.932396137964176, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US Pipe, AP Smith

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H08871" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.10328700024372, + 38.93218317915868, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Clow Eddy, Eddy

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H08872" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.10229653912195, + 38.93413978118592, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Clow Eddy, Eddy

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H08873" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.10061113416536, + 38.933735347816096, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H08874" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.10308342998931, + 38.932346778645694, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Clow Eddy, Eddy

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H08875" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05507834449074, + 38.91062579482191, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/02/07

Report Problem", + "NAME": "H08876" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07589667021534, + 38.96494866877805, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Eddy

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H08877" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97197844433609, + 38.891855965227826, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 03/09/07

Report Problem", + "NAME": "H08878" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07909584259765, + 38.95073413849933, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H08879" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03735816088506, + 38.90245803421959, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Clow Eddy

In Service


Last Inspection Date: 08/03/07

Report Problem", + "NAME": "H08880" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03980873715406, + 38.90268759556199, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Eddy

In Service


Last Inspection Date: 10/01/07

Report Problem", + "NAME": "H08881" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09359919803424, + 38.92759885559243, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H08882" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04175348077844, + 38.902731030627535, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 08/15/07

Report Problem", + "NAME": "H08883" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.09197855260298, + 38.92766514632522, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/25/07

Report Problem", + "NAME": "H08884" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03811752505584, + 38.902671782404745, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Clow Eddy

In Service


Last Inspection Date: 06/28/07

Report Problem", + "NAME": "H08885" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04366221031981, + 38.902358485978134, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 06/18/07

Report Problem", + "NAME": "H08886" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03869502663345, + 38.90243456471562, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Clow Eddy

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H08888" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04272069933567, + 38.90236633801674, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/14/07

Report Problem", + "NAME": "H08889" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04479492523886, + 38.90272215686607, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 03/06/08

Report Problem", + "NAME": "H08890" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03926909323233, + 38.90274976468699, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Eddy

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H08891" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01589502215094, + 38.97502547718258, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H08892" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00731297615674, + 38.83143909777326, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H08893" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00830265070712, + 38.83358891883111, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H08894" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00782139634741, + 38.83130444234121, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H08895" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0230045609527, + 38.91690870121258, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 10/04/06

Report Problem", + "NAME": "H08826" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02181590769047, + 38.91340550702836, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 11/20/07

Report Problem", + "NAME": "H08827" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02492865820847, + 38.91691082890837, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 05/21/06

Report Problem", + "NAME": "H08828" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02406675489375, + 38.91718084514725, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 05/21/06

Report Problem", + "NAME": "H08829" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98709616556368, + 38.8936885107829, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/02/07

Report Problem", + "NAME": "H08830" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03810995635037, + 38.939883631468845, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, LORTON - O'BRIEN

In Service


Last Inspection Date: 09/10/07

Report Problem", + "NAME": "H08831" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07159875383506, + 38.954780396611895, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Clow

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H08832" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03668217965783, + 38.942963644253346, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP SMITH - O'BRIEN

In Service


Last Inspection Date: 09/12/07

Report Problem", + "NAME": "H08833" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03656952824868, + 38.94620334692981, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, US PIPE-A P SMITH

In Service


Last Inspection Date: 07/18/07

Report Problem", + "NAME": "H08834" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03663183523125, + 38.94510889314444, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP SMITH - O'BRIEN

In Service


Last Inspection Date: 07/19/07

Report Problem", + "NAME": "H08835" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03096571153398, + 38.90026399937653, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, CLOW - EDDY

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H08836" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03222516801468, + 38.900282161921794, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Clow Eddy

In Service


Last Inspection Date: 06/01/07

Report Problem", + "NAME": "H08837" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03210463724255, + 38.90068526508826, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Clow Eddy

In Service


Last Inspection Date: 01/22/08

Report Problem", + "NAME": "H08838" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94937575343454, + 38.90599532150236, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP SMITH - O'BRIEN

In Service


Last Inspection Date: 05/21/07

Report Problem", + "NAME": "H08839" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95131294599805, + 38.90749146767299, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 01/16/08

Report Problem", + "NAME": "H08840" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94842237740023, + 38.90146015322745, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, CLOW - EDDY

In Service


Last Inspection Date: 05/21/07

Report Problem", + "NAME": "H08841" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95238859240804, + 38.907112947779304, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 01/17/08

Report Problem", + "NAME": "H08842" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95154392848963, + 38.9043143366131, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/02/07

Report Problem", + "NAME": "H08843" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.94898009499613, + 38.90193432779135, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, CLOW - EDDY

In Service


Last Inspection Date: 05/21/07

Report Problem", + "NAME": "H08844" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95062673621489, + 38.90351450627775, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 10/17/07

Report Problem", + "NAME": "H08845" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95286968234223, + 38.905953777320335, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/02/07

Report Problem", + "NAME": "H08846" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9497264341279, + 38.90257922625323, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, CLOW - EDDY

In Service


Last Inspection Date: 05/21/07

Report Problem", + "NAME": "H08847" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.95007755170082, + 38.907171996772334, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 11/30/07

Report Problem", + "NAME": "H08848" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00336463139561, + 38.842961199618784, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 09/24/07

Report Problem", + "NAME": "H08849" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02286540829637, + 38.89670426590485, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/02/07

Report Problem", + "NAME": "H08850" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07275352764715, + 38.91269357580465, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 11/02/07

Report Problem", + "NAME": "H08852" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96716302397698, + 38.85190698308656, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/06/07

Report Problem", + "NAME": "H08853" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03214122554058, + 38.88655624045092, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H08854" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96692717290887, + 38.85139537259351, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/06/07

Report Problem", + "NAME": "H08855" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07264693992603, + 38.91544224830243, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/11/07

Report Problem", + "NAME": "H08856" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03212633583716, + 38.884691860814364, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H08857" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.96803996442917, + 38.85199745492108, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/06/07

Report Problem", + "NAME": "H08858" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07280393808152, + 38.91366517493101, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H08859" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07260695412066, + 38.91453874598076, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/09/07

Report Problem", + "NAME": "H08860" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00826482290368, + 38.83245611662837, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H08896" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01525667252106, + 38.908744515140945, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/12/07

Report Problem", + "NAME": "H08897" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99827272276606, + 38.908666333146115, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/09/07

Report Problem", + "NAME": "H08898" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00019506106203, + 38.90780101313025, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP SMITH - O'BRIEN

In Service


Last Inspection Date: 07/10/07

Report Problem", + "NAME": "H08899" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99805374292248, + 38.906912918249304, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H08900" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99899097407206, + 38.90758652922681, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/01/07

Report Problem", + "NAME": "H08901" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.06054096499086, + 38.910546133805695, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/02/07

Report Problem", + "NAME": "H08902" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00196182580596, + 38.901195632331486, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H08903" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02256671912761, + 38.925323381009946, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 09/22/06

Report Problem", + "NAME": "H08904" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0224827886553, + 38.924742946249395, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 09/22/06

Report Problem", + "NAME": "H08905" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02325215783448, + 38.92817018034462, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 08/05/06

Report Problem", + "NAME": "H08906" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0230417930079, + 38.92704055251279, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/11/07

Report Problem", + "NAME": "H08907" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02292954828596, + 38.92783495469365, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/10/07

Report Problem", + "NAME": "H08908" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02275504535227, + 38.9250467260951, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H08909" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02294983457368, + 38.92618751922533, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/29/07

Report Problem", + "NAME": "H08910" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0227418074932, + 38.92653292969026, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/10/07

Report Problem", + "NAME": "H08911" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99387490699182, + 38.90009920716982, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, CLOW - EDDY

In Service


Last Inspection Date: 06/02/07

Report Problem", + "NAME": "H08912" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00771007729371, + 38.95123949370792, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Eddy

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H08913" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00676463176144, + 38.949939937648274, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 07/26/07

Report Problem", + "NAME": "H08914" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03357163121086, + 38.900060519441354, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Clow Eddy

In Service


Last Inspection Date: 06/01/07

Report Problem", + "NAME": "H08915" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.031794129773, + 38.90013284937174, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, CLOW - EDDY

In Service


Last Inspection Date: 05/31/07

Report Problem", + "NAME": "H08916" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03275012726523, + 38.90010165057746, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, CLOW - EDDY

In Service


Last Inspection Date: 06/01/07

Report Problem", + "NAME": "H08917" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03347979444293, + 38.900274980769176, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Clow Eddy

In Service


Last Inspection Date: 06/01/07

Report Problem", + "NAME": "H08918" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04018872076269, + 38.98957042717275, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: Unavailable

Report Problem", + "NAME": "H08919" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04189650696442, + 38.98827397062993, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 02/05/08

Report Problem", + "NAME": "H08920" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00527344245755, + 38.89614490231935, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H08921" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07473909704427, + 38.943185775947015, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Eddy

In Service


Last Inspection Date: 06/04/07

Report Problem", + "NAME": "H08922" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01699162514261, + 38.920507341162114, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Eddy

In Service


Last Inspection Date: 09/22/06

Report Problem", + "NAME": "H08923" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07070706888001, + 38.94318747360675, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Eddy

In Service


Last Inspection Date: 06/04/07

Report Problem", + "NAME": "H08924" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0591929189357, + 38.91040148390385, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/06/07

Report Problem", + "NAME": "H08925" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.01695629125419, + 38.92273260929036, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 03/12/08

Report Problem", + "NAME": "H08926" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0312164383039, + 38.98469328431794, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H08927" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0333204642323, + 38.98500518072252, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H08928" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.03514235142791, + 38.97593048694613, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/22/07

Report Problem", + "NAME": "H08929" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07252171845182, + 38.94319165876171, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Eddy

In Service


Last Inspection Date: 06/06/07

Report Problem", + "NAME": "H08930" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92587240636306, + 38.88540878623634, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/08/07

Report Problem", + "NAME": "H08931" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.92915987721392, + 38.88576672061623, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/08/07

Report Problem", + "NAME": "H08932" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0035278298557, + 38.82962376179835, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H08933" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.04500846616315, + 38.94183439252916, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 09/21/07

Report Problem", + "NAME": "H08934" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98596193046112, + 38.95271650478861, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H08935" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98720381084333, + 38.95368736935155, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H08936" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.91083700707229, + 38.89289697790556, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 09/18/07

Report Problem", + "NAME": "H08937" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.90997247965049, + 38.893215598609096, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/07/07

Report Problem", + "NAME": "H08938" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97121428165056, + 38.928365897136516, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 07/27/07

Report Problem", + "NAME": "H08941" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97825039142175, + 38.91839795539441, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 08/30/07

Report Problem", + "NAME": "H08943" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02951468714578, + 38.88424317575938, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H08944" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02877188262288, + 38.88421561528062, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H08945" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97900183502773, + 38.93824158419969, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H08946" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97965106878492, + 38.93913660999967, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H08947" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98032172098291, + 38.939761567047796, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H08948" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97540266795704, + 38.93514176655271, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/20/07

Report Problem", + "NAME": "H08949" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.97786740676564, + 38.9371988177896, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Lorton

In Service


Last Inspection Date: 04/02/07

Report Problem", + "NAME": "H08950" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02992539231113, + 38.882869724926245, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H08951" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.02862535635137, + 38.882834728904605, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 06/26/07

Report Problem", + "NAME": "H08952" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98373163938666, + 38.943167431929645, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 07/09/07

Report Problem", + "NAME": "H08953" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98470344318412, + 38.94375860578053, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, CLOW - EDDY

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H08954" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98584257252891, + 38.944289166113776, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant

In Service


Last Inspection Date: 06/21/07

Report Problem", + "NAME": "H08955" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98955808483929, + 38.85972219720714, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, Mueller

In Service


Last Inspection Date: 10/18/06

Report Problem", + "NAME": "H08956" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98234257804742, + 38.941520236084486, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 07/10/07

Report Problem", + "NAME": "H08957" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98324549005675, + 38.94237975070426, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 07/18/07

Report Problem", + "NAME": "H08958" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99647808241964, + 38.862930274733635, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, CLOW - EDDY

In Service


Last Inspection Date: 01/31/08

Report Problem", + "NAME": "H08960" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.9950528034839, + 38.86234025281626, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, CLOW - EDDY

In Service


Last Inspection Date: 06/04/07

Report Problem", + "NAME": "H08961" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.99695304153806, + 38.90794910679896, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, KENNEDY-K81-A/D GUAR

In Service


Last Inspection Date: 07/10/07

Report Problem", + "NAME": "H08963" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.07707916040054, + 38.96499498141065, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AM DARLING - B-84-B

In Service


Last Inspection Date: 09/14/07

Report Problem", + "NAME": "H08964" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0093148713099, + 38.87540698725855, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, CLOW - EDDY

In Service


Last Inspection Date: 07/03/07

Report Problem", + "NAME": "H08965" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.00690648325929, + 38.8324328369647, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, AP Smith

In Service


Last Inspection Date: 06/19/07

Report Problem", + "NAME": "H08966" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.98819752280579, + 38.9257094658146, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, MUELLER-SUP CENT 250

In Service


Last Inspection Date: 07/17/07

Report Problem", + "NAME": "H08967" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.05389484528261, + 38.9234737236897, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, American Darling

In Service


Last Inspection Date: 09/11/07

Report Problem", + "NAME": "H08968" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -77.0533673443786, + 38.92334425495122, + 0.0 + ], + "type": "Point" + }, + "properties": { + "DESCRIPTIO": "Hydrant, American Darling

In Service


Last Inspection Date: 01/08/07

Report Problem", + "NAME": "H08969" + }, + "type": "Feature" + } + ], + "type": "FeatureCollection" +}